| #{{ if not .Values.disablePolicyNexus }} |
| apiVersion: extensions/v1beta1 |
| kind: Deployment |
| metadata: |
| name: nexus |
| namespace: "{{ .Values.nsPrefix }}-policy" |
| spec: |
| replicas: {{ .Values.nexusReplicas }} |
| selector: |
| matchLabels: |
| app: nexus |
| template: |
| metadata: |
| labels: |
| app: nexus |
| name: nexus |
| spec: |
| initContainers: |
| - command: |
| - /root/ready.py |
| args: |
| - --container-name |
| - mariadb |
| env: |
| - name: NAMESPACE |
| valueFrom: |
| fieldRef: |
| apiVersion: v1 |
| fieldPath: metadata.namespace |
| image: "{{ .Values.image.readiness }}:{{ .Values.image.readinessVersion }}" |
| imagePullPolicy: {{ .Values.pullPolicy }} |
| name: nexus-readiness |
| 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 }} |