UNCLASSIFIED

Commit c376f38b authored by Grant Duncklee's avatar Grant Duncklee
Browse files

chore: tie jobs to image version

parent 9d40a45d
...@@ -18,7 +18,8 @@ spec: ...@@ -18,7 +18,8 @@ spec:
{{- toYaml . | nindent 8}} {{- toYaml . | nindent 8}}
{{- end }} {{- end }}
containers: containers:
- image: registry1.dso.mil/ironbank/redhat/ubi/ubi8-minimal:latest - image: "{{ .Values.job_image.repository }}:{{ .Values.job_image.tag }}"
imagePullPolicy: {{ .Values.job_image.pullPolicy }}
name: proxy name: proxy
command: command:
- sh - sh
......
...@@ -18,7 +18,8 @@ spec: ...@@ -18,7 +18,8 @@ spec:
{{- toYaml . | nindent 8}} {{- toYaml . | nindent 8}}
{{- end }} {{- end }}
containers: containers:
- image: registry1.dso.mil/ironbank/redhat/ubi/ubi8-minimal:latest - image: "{{ .Values.job_image.repository }}:{{ .Values.job_image.tag }}"
imagePullPolicy: {{ .Values.job_image.pullPolicy }}
name: saml name: saml
command: command:
- sh - sh
......
...@@ -65,6 +65,11 @@ proxy: ...@@ -65,6 +65,11 @@ proxy:
httpsAuthNtlmDomain: ~ httpsAuthNtlmDomain: ~
nonProxyHosts: [] nonProxyHosts: []
job_image:
repository: registry1.dso.mil/ironbank/redhat/ubi/ubi8-minimal
tag: 8.4
pullPolicy: IfNotPresent
# -- End of BigBang Additions # -- End of BigBang Additions
ingress: ingress:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment