Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions controlplane/provisioner/lakekeeper_k8s.go
Original file line number Diff line number Diff line change
Expand Up @@ -326,10 +326,18 @@ func (c *LakekeeperK8sClient) EnsureCR(ctx context.Context, spec LakekeeperCRSpe
// credentials for S3 — needed so it can assume the
// warehouse's sts-role-arn to vend. Lakekeeper defaults this
// OFF; the operator only emits the enabling env when the
// object is present, so we set it explicitly (a nil parent
// wouldn't pick up the CRD's default=true).
// object is present, so we set it explicitly. The flags live
// under .aws (gated by enableAWS) — a nil parent wouldn't
// pick up the CRD defaults. assumeRoleRequireExternalID is
// false: same-account self-assume needs no external id (and
// requiring one would force an external-id in the
// storage-credential we don't send).
"storageSystemCredentials": map[string]interface{}{
"allowDirectSystemCredentials": true,
"enableAWS": true,
"aws": map[string]interface{}{
"allowDirectSystemCredentials": true,
"assumeRoleRequireExternalID": false,
},
},
},
},
Expand Down
Loading