Merge "Bump version of readiness image"
[oom.git] / kubernetes / dmaap / components / dmaap-bc / templates / deployment.yaml
1 # Modifications Copyright © 2018 Amdocs,Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 apiVersion: apps/v1
16 kind: Deployment
17 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
18 spec:
19   selector: {{- include "common.selectors" . | nindent 4 }}
20   replicas: {{ .Values.replicaCount }}
21   template:
22     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
23     spec:
24 {{- if or .Values.global.aafEnabled .Values.PG.enabled }}
25       initContainers:
26       - command:
27         - sh
28         args:
29         - -c
30         - "cd /config-input && for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config/${PFILE}; done"
31         env:
32         - name: PG_USER
33           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "login") | indent 10 }}
34         - name: PG_PASSWORD
35           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 10 }}
36         volumeMounts:
37         - mountPath: /config-input
38           name: {{ include "common.name" . }}-config-input
39         - mountPath: /config
40           name: {{ include "common.name" . }}-config
41         image: "{{ .Values.global.envsubstImage }}"
42         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
43         name: {{ include "common.name" . }}-update-config
44 {{ include "common.certInitializer.initContainer" . | nindent 6 }}
45       - name: {{ include "common.name" . }}-permission-fixer
46         image: "{{ .Values.global.busyBoxRepository }}/{{ .Values.global.busyBoxImage }}"
47         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
48         volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
49         command: ["chown","-Rf","1000:1001", "/opt/app/"]
50 #       See AAF-425 for explanation of why this is needed.
51 #       This artifact is provisioned in AAF for both pks12 and jks format and apparently
52 #       the cadi library is not using the jks password on the jks keystore.
53 #       So, this attempts to "fix" the credential property file until this is fixed properly.
54       - name: {{ include "common.name" . }}-cred-fixer
55         image: "{{ .Values.global.busyBoxRepository }}/{{ .Values.global.busyBoxImage }}"
56         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
57         volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
58         command: ["/bin/sh"]
59         args: [ "-c", "sed -i -e '/cadi_keystore_password=/d' -e '/cadi_keystore_password_jks/p' -e 's/cadi_keystore_password_jks/cadi_keystore_password/' -e 's/dmaap-bc.p12/dmaap-bc.jks/' /opt/app/osaaf/local/org.onap.dmaap-bc.cred.props" ]
60       - name: {{ include "common.name" . }}-postgres-readiness
61         command:
62         - /root/ready.py
63         args:
64         - --container-name
65         - {{ .Values.postgres.nameOverride }}
66         - --container-name
67         - message-router
68         - --container-name
69         - dmaap-dr-node
70         env:
71         - name: NAMESPACE
72           valueFrom:
73             fieldRef:
74               apiVersion: v1
75               fieldPath: metadata.namespace
76         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
77         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
78 {{- end }}
79       containers:
80         - name: {{ include "common.name" . }}
81           image: "{{ .Values.repository }}/{{ .Values.image }}"
82           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
83           ports: {{ include "common.containerPorts" . | nindent 10  }}
84           {{ if eq .Values.liveness.enabled true -}}
85           livenessProbe:
86             httpGet:
87               port: {{ .Values.liveness.port }}
88               path: /webapi/topics
89               scheme: {{ if (include "common.needTLS" .) }}HTTPS{{ else }}HTTP{{ end }}
90             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
91             periodSeconds: {{ .Values.liveness.periodSeconds }}
92           {{ end -}}
93           readinessProbe:
94             httpGet:
95               port: {{ .Values.readiness.port }}
96               path: /webapi/topics
97               scheme: {{ if (include "common.needTLS" .) }}HTTPS{{ else }}HTTP{{ end }}
98             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
99             periodSeconds: {{ .Values.readiness.periodSeconds }}
100           volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
101           - mountPath: /etc/localtime
102             name: localtime
103             readOnly: true
104 # NOTE: on the following several configMaps, careful to include / at end
105 #       since there may be more than one file in each mountPath
106           - name: {{ include "common.name" . }}-config
107             mountPath: /opt/app/config/conf/
108           resources: {{ include "common.resources" . | nindent 12 }}
109         {{- if .Values.nodeSelector }}
110         nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }}
111         {{- end -}}
112         {{- if .Values.affinity }}
113         affinity: {{ toYaml .Values.affinity | nindent 10 }}
114         {{- end }}
115       volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
116         - name: localtime
117           hostPath:
118             path: /etc/localtime
119         - name: {{ include "common.name" . }}-config-input
120           configMap:
121             name: {{ include "common.fullname" . }}-config
122         - name: {{ include "common.name" . }}-config
123           emptyDir:
124             medium: Memory
125       imagePullSecrets:
126       - name: "{{ include "common.namespace" . }}-docker-registry-key"