summaryrefslogtreecommitdiffstats
path: root/kubernetes/aai/templates/search-data-service-deployment.yaml
blob: f2db9370fd5ebb8c121a98d4fc04d5cb3ee159c2 (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
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: search-data-service
  namespace: "{{ .Values.nsPrefix }}-aai"
spec:
  selector:
    matchLabels:
      app: search-data-service
  template:
    metadata:
      labels:
        app: search-data-service
      name: search-data-service
    spec:
      containers:
      - name: search-data-service
        image: "{{ .Values.image.searchDataImage }}:{{ .Values.image.searchDataVersion }}"
        imagePullPolicy: {{ .Values.pullPolicy }}
        env:
        - name: CONFIG_HOME
          value: /opt/app/search-data-service/config/
        - name: KEY_STORE_PASSWORD
          value: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
        - name: KEY_MANAGER_PASSWORD
          value: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
        volumeMounts:
        - mountPath: /opt/app/search-data-service/config/
          name: aai-search-data-service-config
        - mountPath: /logs/
          name: aai-search-data-service-logs
        ports:
        - containerPort: 9509
        readinessProbe:
          tcpSocket:
            port: 9509
          initialDelaySeconds: 5
          periodSeconds: 10
      volumes:
      - name: aai-search-data-service-config
        hostPath:
          path: "/dockerdata-nfs/{{ .Values.nsPrefix }}/aai/search-data-service/appconfig/"
      - name: aai-search-data-service-logs
        hostPath:
          path: "/dockerdata-nfs/{{ .Values.nsPrefix }}/aai/search-data-service/logs/"
      restartPolicy: Always
      imagePullSecrets:
      - name: "{{ .Values.nsPrefix }}-docker-registry-key"