diff options
Diffstat (limited to 'kubernetes/aai/templates/search-data-service-deployment.yaml')
-rw-r--r-- | kubernetes/aai/templates/search-data-service-deployment.yaml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/kubernetes/aai/templates/search-data-service-deployment.yaml b/kubernetes/aai/templates/search-data-service-deployment.yaml new file mode 100644 index 0000000000..f2db9370fd --- /dev/null +++ b/kubernetes/aai/templates/search-data-service-deployment.yaml @@ -0,0 +1,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" |