UNCLASSIFIED

You need to sign in or sign up before continuing.
Commits (2)
# 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
### Added
- Added resource requests and limits to pods with guaranteed QoS.
......
apiVersion: v2
name: nexus-repository-manager
version: 29.1.0-bb.8
version: 29.1.0-bb.9
appVersion: 3.29.0
description: Sonatype Nexus Repository Manager - Universal Binary repository
type: application
......
......@@ -18,7 +18,8 @@ spec:
{{- toYaml . | nindent 8}}
{{- end }}
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
command:
- sh
......
......@@ -18,7 +18,8 @@ spec:
{{- toYaml . | nindent 8}}
{{- end }}
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
command:
- sh
......
......@@ -72,6 +72,11 @@ proxy:
httpsAuthNtlmDomain: ~
nonProxyHosts: []
job_image:
repository: registry1.dso.mil/ironbank/redhat/ubi/ubi8-minimal
tag: 8.4
pullPolicy: IfNotPresent
# -- End of BigBang Additions
ingress:
......