| #{{ if not .Values.disablePolicyNexus }} |
| apiVersion: extensions/v1beta1 |
| kind: Deployment |
| metadata: |
| name: nexus |
| namespace: "{{ .Values.nsPrefix }}-policy" |
| spec: |
| selector: |
| matchLabels: |
| app: nexus |
| template: |
| metadata: |
| labels: |
| app: nexus |
| name: nexus |
| annotations: |
| pod.beta.kubernetes.io/init-containers: '[ |
| { |
| "args": [ |
| "--container-name", |
| "mariadb" |
| ], |
| "command": [ |
| "/root/ready.py" |
| ], |
| "env": [ |
| { |
| "name": "NAMESPACE", |
| "valueFrom": { |
| "fieldRef": { |
| "apiVersion": "v1", |
| "fieldPath": "metadata.namespace" |
| } |
| } |
| } |
| ], |
| "image": "{{ .Values.image.readiness }}:{{ .Values.image.readinessVersion }}", |
| "imagePullPolicy": "{{ .Values.pullPolicy }}", |
| "name": "nexus-readiness" |
| } |
| ]' |
| spec: |
| containers: |
| - 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" |
| #{{ end }} |