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
1 change: 1 addition & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,3 +271,4 @@ Code reviews are required for all submissions via GitHub pull requests.
- when creating a commit or PR message, NEVER add co-authored by or generated by Claude code
- any call to authorization Enforce done from the biz or svc layer must be done using biz.AuthzUseCase
- if you modify a schema, remember to run `make migration_sync`
- after changing Helm chart source code (`deployment/chainloop/`), bump the **patch** version (not minor, not major) in the chart's `Chart.yaml`
2 changes: 1 addition & 1 deletion deployment/chainloop/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: Chainloop is an open source software supply chain control plane, a

type: application
# Bump the patch (not minor, not major) version on each change in the Chart Source code
version: 1.342.0
version: 1.342.1
# Do not update appVersion, this is handled automatically by the release process
appVersion: v1.81.2

Expand Down
2 changes: 1 addition & 1 deletion deployment/chainloop/charts/dex/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Figure out the external URL for Dex service
{{- else if (and (eq $service.type "NodePort") $service.nodePorts (not (empty $service.nodePorts.http))) }}
{{- printf "http://localhost:%s" $service.nodePorts.http }}
{{- else -}}
{{- printf "http://%s-dex:%d/dex" ( include "chainloop.dex.fullname" . ) ( int $service.ports.http ) }}
{{- printf "http://%s:%d/dex" ( include "chainloop.dex.fullname" . ) ( int $service.ports.http ) }}
{{- end -}}
{{- end -}}

Expand Down
3 changes: 2 additions & 1 deletion deployment/chainloop/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ OIDC settings, will fallback to development settings if needed
{{- define "controlplane.oidc_settings" -}}
{{- if .Values.development }}
{{- with .Values.controlplane.auth }}
{{- $dexContext := dict "Values" $.Values.dex "Chart" $.Chart "Release" $.Release "Capabilities" $.Capabilities "Template" $.Template }}
{{- $dexChart := dict "Name" "dex" }}
{{- $dexContext := dict "Values" $.Values.dex "Chart" $dexChart "Release" $.Release "Capabilities" $.Capabilities "Template" $.Template }}
domain: "{{ coalesce .oidc.url (include "chainloop.dex.external_url" $dexContext ) }}"
client_id: "{{ coalesce .oidc.clientID "chainloop-dev" }}"
client_secret: "{{ coalesce .oidc.clientSecret "ZXhhbXBsZS1hcHAtc2VjcmV0" }}"
Expand Down
Loading