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"