Skip to content

Commit cdaeadf

Browse files
authored
feat: configurable initContainer image (#92)
1 parent ee513dc commit cdaeadf

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

charts/shinyproxy/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 2.4.1
18+
version: 2.4.2
1919

2020
dependencies:
2121
- name: library-chart

charts/shinyproxy/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ spec:
7878
{{ if eq .Values.proxyConfig.authentication.type "openid" }}
7979
initContainers:
8080
- name: init
81-
image: "inseefrlab/onyxia-base:latest"
82-
imagePullPolicy: IfNotPresent
81+
image: "{{ .Values.initContainer.image }}:{{ .Values.initContainer.tag }}"
82+
imagePullPolicy: {{ .Values.initContainer.pullPolicy }}
8383
resources:
8484
limits:
8585
cpu: 500m

charts/shinyproxy/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ logging:
6767

6868
existingAppsSecretName:
6969

70+
initContainer:
71+
image: inseefrlab/onyxia-base
72+
tag: latest
73+
pullPolicy: IfNotPresent
7074

7175
ingress:
7276
ingressClassName: ""

0 commit comments

Comments
 (0)