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