[DMAAP] DMaaP ServiceMesh compatibility
[oom.git] / kubernetes / contrib / components / ejbca / templates / deployment.yaml
1 {{/*
2 # Copyright Â© 2020, Nordix Foundation
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   replicas: {{ .Values.replicaCount }}
22   selector: {{- include "common.selectors" . | nindent 4 }}
23   template:
24     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
25     spec:
26       imagePullSecrets:
27       - name: "{{ include "common.namespace" . }}-docker-registry-key"
28       initContainers:
29       - name: {{ include "common.name" . }}-db-readiness
30         command:
31         - /app/ready.py
32         args:
33         - --container-name
34         {{- if .Values.global.mariadbGalera.localCluster }}
35         - ejbca-galera
36         {{- else }}
37         - ejbca-config
38         {{- end }}
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45         image: {{ include "repositoryGenerator.image.readiness" . }}
46         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47       containers:
48       - name: {{ include "common.name" . }}-ejbca
49         image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.ejbca.image }}
50         imagePullPolicy: {{ .Values.pullPolicy }}
51         lifecycle:
52           postStart:
53             exec:
54               command: ["/bin/sh", "-c", "/opt/primekey/scripts/ejbca-config.sh"]
55         volumeMounts:
56           - name: "{{ include "common.fullname" . }}-volume"
57             mountPath: /opt/primekey/scripts/
58           - name: "{{ include "common.fullname" . }}-profiles-volume"
59             mountPath: /opt/primekey/custom_profiles/
60         ports: {{ include "common.containerPorts" . | nindent 10 }}
61         env:
62         - name: INITIAL_ADMIN
63           value: ";PublicAccessAuthenticationToken:TRANSPORT_ANY;"
64         - name: NO_CREATE_CA
65           value: "true"
66         - name: DATABASE_JDBC_URL
67           value: jdbc:mariadb://{{ include "common.mariadbService" . }}:{{ include "common.mariadbPort" . }}/{{ .Values.mysqlDatabase }}
68         - name: DATABASE_USER
69           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "ejbca-db-secret" "key" "login") | indent 10 }}
70         - name: DATABASE_PASSWORD
71           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "ejbca-db-secret" "key" "password") | indent 10 }}
72         - name: RA_IAK
73           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "ejbca-server-ra-iak" "key" "password") | indent 10 }}
74         - name: CLIENT_IAK
75           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "ejbca-server-client-iak" "key" "password") | indent 10 }}
76         livenessProbe:
77           httpGet:
78             port: {{ .Values.liveness.port }}
79             path: {{ .Values.liveness.path }}
80             scheme: HTTPS
81           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
82           periodSeconds: {{ .Values.liveness.periodSeconds }}
83         readinessProbe:
84           httpGet:
85             port: {{ .Values.readiness.port }}
86             path: {{ .Values.readiness.path }}
87             scheme: HTTPS
88           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
89           periodSeconds: {{ .Values.readiness.periodSeconds }}
90           {{- if .Values.nodeSelector }}
91         nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }}
92         {{- end -}}
93         {{- if .Values.affinity }}
94         affinity: {{ toYaml .Values.affinity | nindent 10 }}
95         {{- end }}
96         resources: {{ include "common.resources" . | nindent 10 }}
97       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
98       volumes:
99       - configMap:
100           name: "{{ include "common.fullname" . }}-config-script"
101           defaultMode: 0755
102         name: "{{ include "common.fullname" . }}-volume"
103       - configMap:
104           name: "{{ include "common.fullname" . }}-profiles"
105           defaultMode: 0755
106         name: "{{ include "common.fullname" . }}-profiles-volume"