Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion internal/helm/airbyte_values.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ func buildAirbyteValuesV2(ctx context.Context, opts ValuesOpts) (string, error)

if opts.InsecureCookies {
// Boolean is a string value in the v1 Helm chart.
vals = append(vals, `global.auth.cookieSecureSetting="false"`)
vals = append(vals, `global.auth.security.cookieSecureSetting="false"`)
}

fileVals, err := maps.FromYAMLFile(opts.ValuesFile)
Expand Down
3 changes: 2 additions & 1 deletion internal/helm/airbyte_values_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,8 @@ connectorBuilderServer:
enabled: false
global:
auth:
cookieSecureSetting: '"false"'
security:
cookieSecureSetting: '"false"'
enabled: true
env_vars:
AIRBYTE_INSTALLATION_ID: test-user
Expand Down