Skip to content

Commit 83559e3

Browse files
authored
fix(deployment): wrong configuration keys (#79)
Signed-off-by: Miguel Martinez Trivino <[email protected]>
1 parent c9c9a38 commit 83559e3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

deployment/chainloop/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: chainloop
33
description: Chainloop is an open source software supply chain control plane, a single source of truth for artifacts plus a declarative attestation crafting process.
44

55
type: application
6-
version: 1.0.3
6+
version: 1.0.4
77
appVersion: v0.8.98
88

99
dependencies:

deployment/chainloop/templates/controlplane/config.secret.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ stringData:
2828
auth:
2929
oidc:
3030
{{- with .Values.controlplane.auth }}
31-
redirectURLScheme: {{ .redirectURLScheme | default "http" }}
31+
redirect_url_scheme: {{ .redirectURLScheme }}
3232
domain: "{{ required "oidc URL endpoint required" .oidc.url }}"
33-
clientID: "{{ required "oidc clientID required" .oidc.clientID }}"
34-
clientSecret: "{{ required "oidc clientSecret required" .oidc.clientSecret }}"
33+
client_id: "{{ required "oidc clientID required" .oidc.clientID }}"
34+
client_secret: "{{ required "oidc clientSecret required" .oidc.clientSecret }}"
3535
{{- end }}
3636
3737
# HMAC key used to sign the JWTs generated by the controlplane

0 commit comments

Comments
 (0)