Skip to content

Commit 9dd8af2

Browse files
authored
[heartex/label-studio] Add args to sidecarContainers (#65)
1 parent b5cf2f5 commit 9dd8af2

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

heartex/label-studio/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 1.9.11
4+
- Added `args` to `sidecarContainers`.
5+
36
## 1.9.9
47
- Upgraded Label Studio application version to 1.17.0
58

heartex/label-studio/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ home: https://labelstud.io/
55
type: application
66
icon: https://raw.githubusercontent.com/heartexlabs/label-studio/master/images/logo.png
77
# Chart version
8-
version: 1.9.10
8+
version: 1.9.11
99
# Label Studio release version
1010
appVersion: "1.18.0"
1111
kubeVersion: ">= 1.14.0-0"

heartex/label-studio/templates/app-deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,9 @@ spec:
323323
- name: {{ .name }}
324324
image: {{ .image }}
325325
imagePullPolicy: {{ .imagePullPolicy | default "IfNotPresent" }}
326+
{{- if .args }}
327+
args: {{ .args }}
328+
{{- end }}
326329
{{- if .securityContext }}
327330
securityContext: {{ toYaml .securityContext | nindent 12 }}
328331
{{- end }}

heartex/label-studio/values.schema.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,10 @@
769769
"imagePullPolicy": {
770770
"type": "string"
771771
},
772+
"args": {
773+
"type": "object",
774+
"additionalProperties": true
775+
},
772776
"securityContext": {
773777
"type": "object",
774778
"additionalProperties": true

0 commit comments

Comments
 (0)