diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 178a0c7..9391419 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -39,8 +39,6 @@ jobs: run: | git config user.name "$GITHUB_ACTOR" git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - - name: Build Helm Chart - run: helm dependency update charts/identity - name: Release Helm Chart uses: unikorn-cloud/chart-release-action@v1 env: diff --git a/charts/identity/Chart.yaml b/charts/identity/Chart.yaml index 8a4c69e..85831f2 100644 --- a/charts/identity/Chart.yaml +++ b/charts/identity/Chart.yaml @@ -11,5 +11,5 @@ icon: https://raw.githubusercontent.com/unikorn-cloud/assets/main/images/logos/d dependencies: - name: unikorn-common - version: v0.1.3 + version: v0.1.5 repository: https://unikorn-cloud.github.io/helm-common diff --git a/charts/identity/templates/identity/deployment.yaml b/charts/identity/templates/identity/deployment.yaml index 120b9b1..bc29f8b 100644 --- a/charts/identity/templates/identity/deployment.yaml +++ b/charts/identity/templates/identity/deployment.yaml @@ -22,12 +22,8 @@ spec: - --host=https://{{ include "unikorn.identity.host" . }} - --jose-tls-secret=unikorn-identity-jose-tls - --refresh-token-duration={{ printf "%dh" (mul .Values.issuer.maxTokenDurationDays 24) }} - {{- with $cors := ( include "unikorn.cors.flags" . ) -}} - {{ $cors | nindent 8 }} - {{- end }} - {{- with $otlp := ( include "unikorn.otlp.flags" .) -}} - {{ $otlp | nindent 8 }} - {{- end }} + {{- include "unikorn.cors.flags" . | nindent 8 }} + {{- include "unikorn.otlp.flags" . | nindent 8 }} ports: - name: http containerPort: 6080