File tree 3 files changed +6
-1
lines changed
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ ## 1.9.3
3
+ ### Improvements
4
+ * Support to omit secrets in downstream values.
2
5
3
6
## 1.9.2
4
7
### Improvements
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ home: https://labelstud.io/
5
5
type : application
6
6
icon : https://raw.githubusercontent.com/heartexlabs/label-studio/master/images/logo.png
7
7
# Chart version
8
- version : 1.9.2
8
+ version : 1.9.3
9
9
# Label Studio release version
10
10
appVersion : " 1.15.0"
11
11
kubeVersion : " >= 1.14.0-0"
Original file line number Diff line number Diff line change @@ -341,13 +341,15 @@ Set's common environment variables
341
341
{{- end }}
342
342
{{- if .Values.global.extraEnvironmentSecrets -}}
343
343
{{- range $key, $value := .Values.global.extraEnvironmentSecrets }}
344
+ {{- if and $value.secretName $value.secretKey }}
344
345
- name: {{ printf "%s" $key | replace "." "_" | upper | quote }}
345
346
valueFrom:
346
347
secretKeyRef:
347
348
name: {{ $value.secretName }}
348
349
key: {{ $value.secretKey }}
349
350
{{- end }}
350
351
{{- end }}
352
+ {{- end }}
351
353
- name: STORAGE_PERSISTENCE
352
354
value: "{{ .Values.global.persistence.enabled | default "false" }}"
353
355
{{- if .Values.global.persistence.enabled }}
You can’t perform that action at this time.
0 commit comments