summaryrefslogtreecommitdiffstats
path: root/kubernetes/aaf/templates/aaf-cs-deployment.yaml
blob: acd6a7aeb6a15d3d485b2c16ff3df8616cba3e88 (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
32
33
34
35
36
37
38
#{{ if not .Values.disableAafAafCs }}
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: aaf-cs
  namespace: "{{ .Values.nsPrefix }}-aaf"
spec:
  replicas: 1
  selector:
    matchLabels:
      app: aaf-cs
  template:
    metadata:
      labels:
        app: aaf-cs
      name: aaf-cs
    spec:
      hostname: aaf-cs
      containers:
      - args:
        image: {{ .Values.image.csImage }}:{{ .Values.image.csVersion }}
        imagePullPolicy: {{ .Values.pullPolicy }}
        name: "aaf-cs"
        volumeMounts:
        - mountPath: /data
          name: aaf-cs-data
        readinessProbe:
          tcpSocket:
            port: 7000
          initialDelaySeconds: 5
          periodSeconds: 10
      volumes:
        - name: aaf-cs-data
          hostPath:
            path: /dockerdata-nfs/{{ .Values.nsPrefix }}/aaf/data
      imagePullSecrets:
      - name: {{ .Values.nsPrefix }}-docker-registry-key
#{{ end }}