Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix in the sda-svc helm chart #1419

Merged
merged 3 commits into from
Feb 25, 2025
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 charts/sda-svc/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: sda-svc
version: 0.30.5
version: 0.30.6
appVersion: v0.3.196
kubeVersion: '>= 1.26.0'
description: Components for Sensitive Data Archive (SDA) installation
Expand Down
2 changes: 2 additions & 0 deletions charts/sda-svc/templates/api-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,8 @@ spec:
- name: LOG_LEVEL
value: {{ .Values.global.log.level | quote }}
{{- end }}
- name: SCHEMA_TYPE
value: {{ default "federated" .Values.global.schemaType }}
{{- if .Values.global.api.jwtPubKeyName }}
- name: SERVER_JWTPUBKEYPATH
value: {{ include "jwtPath" . }}
Expand Down
2 changes: 1 addition & 1 deletion charts/sda-svc/templates/download-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ spec:
value: "{{ .Values.global.archive.volumePath }}"
{{- end }}
- name: OIDC_CONFIGURATION_URL
value: "{{ .Values.global.oidc.provider }}/.well-known/openid-configuration"
value: "{{ .Values.global.oidc.provider | trimSuffix "/" }}/.well-known/openid-configuration"
{{- if .Values.global.download.trusted.iss }}
- name: OIDC_TRUSTED_ISS
value: {{ include "trustedIssPath" . }}/{{ default "iss.json" .Values.global.download.trusted.configFile }}
Expand Down
Loading