Skip to content

Commit

Permalink
fix: #128 make sure the customised Dex issuer URL is used (#129)
Browse files Browse the repository at this point in the history
Problem:

The /dex was hard-coded in the affect file which stop Terrakube Registry
to be working with customized Dex path

This change address this by using the value of `issuer` from Dex
configuration section.
  • Loading branch information
stanleyz committed Jul 10, 2024
1 parent 57db6ad commit fb1b3c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/terrakube/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 3.17.5
version: 3.17.6

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/terrakube/templates/secrets-registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ stringData:
TerrakubeEnableSecurity: 'true'
TerrakubeUiURL: '{{- if .Values.ingress.useTls }}https{{else}}http{{ end }}://{{ .Values.ingress.ui.domain }}'
AppClientId: '{{ .Values.security.dexClientId }}'
AppIssuerUri: '{{- if .Values.ingress.useTls }}https{{else}}http{{ end }}://{{ .Values.ingress.api.domain }}/dex'
AppIssuerUri: '{{ .Values.dex.config.issuer }}'


{{- if .Values.storage.defaultStorage -}}
Expand Down

0 comments on commit fb1b3c1

Please sign in to comment.