summaryrefslogtreecommitdiffstats
path: root/kubernetes/policy/templates/dep-nexus.yaml
blob: 2cc20390fe4416dbe0b9c151d8335aa25577bacf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#{{ 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
    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 }}