summaryrefslogtreecommitdiffstats
path: root/kubernetes/aai/templates/sparky-be-deployment.yaml
blob: f4c44e28ede070b0e102dc8090368c1d12855746 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: sparky-be
  namespace: "{{ .Values.nsPrefix }}-aai"
spec:
  selector:
    matchLabels:
      app: sparky-be
  template:
    metadata:
      labels:
        app: sparky-be
      name: sparky-be
    spec:
      containers:
      - name: sparky-be
        image: "{{ .Values.image.sparkyBeImage }}:{{ .Values.image.sparkyBeVersion }}"
        imagePullPolicy: {{ .Values.pullPolicy }}
        env:
        - name: CONFIG_HOME
          value: /opt/app/sparky/config/
        - name: KEY_MANAGER_PASSWORD
          value: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
        - name: KEY_STORE_PASSWORD
          value: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
        volumeMounts:
        - mountPath: /opt/app/sparky/config/
          name: aai-sparky-be-config
        - mountPath: /opt/app/sparky/config/auth/client-cert-onap.p12 
          name: aai-sparky-be-client-cert
        - mountPath: /opt/app/sparky/config/auth/aai-os-cert.p12
          name: aai-sparky-be-aai-os-cert
        - mountPath: /opt/app/sparky/config/auth/inventory-ui-keystore
          name: aai-sparky-be-inventory-key
        - mountPath: /logs/
          name: aai-sparky-be-logs
        ports:
        - containerPort: 9517
        readinessProbe:
          tcpSocket:
            port: 9517
          initialDelaySeconds: 5
          periodSeconds: 10
      volumes:
      - name: aai-sparky-be-config
        hostPath:
          path: "/dockerdata-nfs/{{ .Values.nsPrefix }}/aai/sparky-be/appconfig/"
      - name: aai-sparky-be-logs
        hostPath:
          path: "/dockerdata-nfs/{{ .Values.nsPrefix }}/aai/sparky-be/logs/"
      - name: aai-sparky-be-client-cert
        secret:
          secretName: secret-{{ .Values.nsPrefix }}-aai
      - name: aai-sparky-be-aai-os-cert
        secret:
          secretName: secret-{{ .Values.nsPrefix }}-aai
      - name: aai-sparky-be-inventory-key
        secret:
          secretName: secret-{{ .Values.nsPrefix }}-aai
      restartPolicy: Always
      imagePullSecrets:
      - name: "{{ .Values.nsPrefix }}-docker-registry-key"