Skip to content

Commit 5c144e1

Browse files
committed
Change ref to image and tag
1 parent 640e3b7 commit 5c144e1

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

osf-cas/values.yaml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
### ---------- Global or Reusable parts across values.yaml ----------
2+
image:
3+
repository: quay.io/centerforopenscience/cas
4+
tag: develop
5+
pullPolicy: Always
26

37
maintenance:
48
enabled: false
59
service:
6-
name: <release-name>-maintenance # default service name would be Release.name-Chart.name-maintenance
10+
name: <release-name>-maintenance # default service name for ingress will be Release.name-Chart.name-maintenance but maintaince chart creates service with Release.name-maintenance
711
externalPort: 8080 # default port 80
812

913
postgresql:
@@ -132,9 +136,9 @@ main:
132136

133137
# ------- Configuration follows for containerName: jetty -------
134138
image:
135-
repository: quay.io/centerforopenscience/cas
136-
tag: develop
137-
pullPolicy: Always
139+
repository: "{{ .Values.image.repository }}"
140+
tag: "{{ .Values.image.tag }}"
141+
pullPolicy: "{{ .Values.image.pullPolicy }}"
138142

139143
containerName: jetty
140144

@@ -204,6 +208,12 @@ main:
204208
cpu: 10m
205209
memory: 256Mi
206210
# ephemeral-storage: 10Gi
211+
probes:
212+
readiness:
213+
path: /Shibboleth.sso/Status
214+
liveness:
215+
path: /healthz
216+
207217

208218
additionalContainers:
209219
- name: apache
@@ -217,7 +227,7 @@ main:
217227
containerPort: "{{ .Values.main.http.containers.apache.internalPort }}"
218228
readinessProbe:
219229
httpGet:
220-
path: /Shibboleth.sso/Status
230+
path: "{{ .Values.main.apache.probes.readiness.path }}"
221231
port: "{{ .Values.main.http.containers.apache.internalPort }}"
222232
httpHeaders:
223233
- name: Host
@@ -229,7 +239,7 @@ main:
229239
failureThreshold: 3
230240
livenessProbe:
231241
httpGet:
232-
path: /healthz
242+
path: "{{ .Values.main.apache.probes.liveness.path }}"
233243
port: "{{ .Values.main.http.containers.apache.internalPort }}"
234244
httpHeaders:
235245
- name: Host

0 commit comments

Comments
 (0)