diff options
Diffstat (limited to 'kubernetes/policy/templates/dep-nexus.yaml')
-rw-r--r-- | kubernetes/policy/templates/dep-nexus.yaml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/kubernetes/policy/templates/dep-nexus.yaml b/kubernetes/policy/templates/dep-nexus.yaml index f777d0cabd..15b7ec38fd 100644 --- a/kubernetes/policy/templates/dep-nexus.yaml +++ b/kubernetes/policy/templates/dep-nexus.yaml @@ -43,5 +43,13 @@ spec: - image: "{{ .Values.image.policyNexus }}:{{ .Values.image.policyNexusVersion }}" imagePullPolicy: {{ .Values.pullPolicy }} name: nexus + volumeMounts: + - name: localtime + mountPath: /etc/localtime + readOnly: true + volumes: + - name: localtime + hostPath: + path: /etc/localtime imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" |