UNCLASSIFIED

Commits (2)
# Changelog # Changelog
--- ---
## [29.1.0-bb.9] - 2021-09-01
### Changed
- add map to specify image, tag, and policy in values for proxy and saml jobs
## [29.1.0-bb.8] - 2021-08-23 ## [29.1.0-bb.8] - 2021-08-23
### Added ### Added
- Added resource requests and limits to pods with guaranteed QoS. - Added resource requests and limits to pods with guaranteed QoS.
......
apiVersion: v2 apiVersion: v2
name: nexus-repository-manager name: nexus-repository-manager
version: 29.1.0-bb.8 version: 29.1.0-bb.9
appVersion: 3.29.0 appVersion: 3.29.0
description: Sonatype Nexus Repository Manager - Universal Binary repository description: Sonatype Nexus Repository Manager - Universal Binary repository
type: application type: application
......
...@@ -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
......
...@@ -72,6 +72,11 @@ proxy: ...@@ -72,6 +72,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:
......