blob: a02752c03385f3202f8ac4163551cd8464320e14 [file] [log] [blame]
Jakub Latusekd71d26c2020-10-21 13:36:29 +02001{{/*
jhhd4258672020-08-09 12:08:08 -05002# ============LICENSE_START=======================================================
3# Copyright (C) 2020 AT&T Intellectual Property.
4# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
Jakub Latusekd71d26c2020-10-21 13:36:29 +020019*/}}
jhhd4258672020-08-09 12:08:08 -050020
Grzegorz-Lis4fad3022020-07-31 10:18:21 +020021apiVersion: apps/v1
ramverma1a3b8ad2019-02-25 12:45:11 +000022kind: Deployment
Bruno Sakoto0644c262020-05-22 16:56:35 -040023metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
ramverma1a3b8ad2019-02-25 12:45:11 +000024spec:
Bruno Sakoto0644c262020-05-22 16:56:35 -040025 selector: {{- include "common.selectors" . | nindent 4 }}
ramverma1a3b8ad2019-02-25 12:45:11 +000026 replicas: {{ .Values.replicaCount }}
27 template:
Bruno Sakoto0644c262020-05-22 16:56:35 -040028 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
ramverma1a3b8ad2019-02-25 12:45:11 +000029 spec:
ramverma6acdabf2019-04-12 18:56:03 +000030 initContainers:
31 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020032 - /app/ready.py
ramverma6acdabf2019-04-12 18:56:03 +000033 args:
jhhd4258672020-08-09 12:08:08 -050034 - --job-name
35 - {{ include "common.release" . }}-policy-galera-config
ramverma6acdabf2019-04-12 18:56:03 +000036 env:
37 - name: NAMESPACE
38 valueFrom:
39 fieldRef:
40 apiVersion: v1
41 fieldPath: metadata.namespace
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010042 image: {{ include "repositoryGenerator.image.readiness" . }}
ramverma6acdabf2019-04-12 18:56:03 +000043 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
44 name: {{ include "common.name" . }}-readiness
Krzysztof Opasiak3d9dc8b2020-03-31 23:05:16 +020045 - command:
46 - sh
47 args:
48 - -c
Taka Choebd62952020-10-08 13:50:09 -040049 - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done"
Krzysztof Opasiak3d9dc8b2020-03-31 23:05:16 +020050 env:
51 - name: SQL_USER
52 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
53 - name: SQL_PASSWORD
54 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
Dominik Mizyn389fca12020-04-09 22:37:00 +020055 - name: RESTSERVER_USER
56 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "login") | indent 10 }}
57 - name: RESTSERVER_PASSWORD
58 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "password") | indent 10 }}
59 - name: API_USER
60 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-secret" "key" "login") | indent 10 }}
61 - name: API_PASSWORD
62 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-secret" "key" "password") | indent 10 }}
63 - name: DISTRIBUTION_USER
64 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "distribution-secret" "key" "login") | indent 10 }}
65 - name: DISTRIBUTION_PASSWORD
66 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "distribution-secret" "key" "password") | indent 10 }}
Krzysztof Opasiak3d9dc8b2020-03-31 23:05:16 +020067 volumeMounts:
68 - mountPath: /config-input
69 name: papconfig
70 - mountPath: /config
71 name: papconfig-processed
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010072 image: {{ include "repositoryGenerator.image.envsubst" . }}
Krzysztof Opasiak3d9dc8b2020-03-31 23:05:16 +020073 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
74 name: {{ include "common.name" . }}-update-config
jhhd4258672020-08-09 12:08:08 -050075{{ include "common.certInitializer.initContainer" . | indent 6 }}
ramverma1a3b8ad2019-02-25 12:45:11 +000076 containers:
77 - name: {{ include "common.name" . }}
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010078 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
ramverma1a3b8ad2019-02-25 12:45:11 +000079 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
jhhd4258672020-08-09 12:08:08 -050080{{- if .Values.global.aafEnabled }}
Taka Cho9658ce82020-12-10 14:34:18 -050081 command: ["sh","-c"]
jhhd4258672020-08-09 12:08:08 -050082 args: ["source {{ .Values.certInitializer.credsPath }}/.ci;\
jhhd4258672020-08-09 12:08:08 -050083 /opt/app/policy/pap/bin/policy-pap.sh /opt/app/policy/pap/etc/mounted/config.json"]
84{{- else }}
ramverma1a3b8ad2019-02-25 12:45:11 +000085 command: ["/opt/app/policy/pap/bin/policy-pap.sh"]
jhhbf7fb4d2019-08-07 16:54:41 -050086 args: ["/opt/app/policy/pap/etc/mounted/config.json"]
jhhd4258672020-08-09 12:08:08 -050087 env:
88 - name: KEYSTORE_PASSWD
89 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-password" "key" "password") | indent 12 }}
90 - name: TRUSTSTORE_PASSWD
91 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-password" "key" "password") | indent 12 }}
92{{- end }}
Bruno Sakoto0644c262020-05-22 16:56:35 -040093 ports: {{ include "common.containerPorts" . | nindent 12 }}
ramverma1a3b8ad2019-02-25 12:45:11 +000094 # disable liveness probe when breakpoints set in debugger
95 # so K8s doesn't restart unresponsive container
96 {{- if eq .Values.liveness.enabled true }}
97 livenessProbe:
98 tcpSocket:
Bruno Sakoto0644c262020-05-22 16:56:35 -040099 port: {{ .Values.liveness.port }}
ramverma1a3b8ad2019-02-25 12:45:11 +0000100 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
101 periodSeconds: {{ .Values.liveness.periodSeconds }}
102 {{ end -}}
103 readinessProbe:
104 tcpSocket:
Bruno Sakoto0644c262020-05-22 16:56:35 -0400105 port: {{ .Values.readiness.port }}
ramverma1a3b8ad2019-02-25 12:45:11 +0000106 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
107 periodSeconds: {{ .Values.readiness.periodSeconds }}
108 volumeMounts:
jhhd4258672020-08-09 12:08:08 -0500109{{ include "common.certInitializer.volumeMount" . | indent 10 }}
ramverma1a3b8ad2019-02-25 12:45:11 +0000110 - mountPath: /etc/localtime
111 name: localtime
112 readOnly: true
113 - mountPath: /opt/app/policy/pap/etc/mounted
Krzysztof Opasiak3d9dc8b2020-03-31 23:05:16 +0200114 name: papconfig-processed
ramverma1a3b8ad2019-02-25 12:45:11 +0000115 resources:
jhhd4258672020-08-09 12:08:08 -0500116{{ include "common.resources" . }}
ramverma1a3b8ad2019-02-25 12:45:11 +0000117 {{- if .Values.nodeSelector }}
118 nodeSelector:
119{{ toYaml .Values.nodeSelector | indent 10 }}
120 {{- end -}}
121 {{- if .Values.affinity }}
122 affinity:
123{{ toYaml .Values.affinity | indent 10 }}
124 {{- end }}
125 volumes:
jhhd4258672020-08-09 12:08:08 -0500126{{ include "common.certInitializer.volumes" . | indent 8 }}
ramverma1a3b8ad2019-02-25 12:45:11 +0000127 - name: localtime
128 hostPath:
129 path: /etc/localtime
130 - name: papconfig
131 configMap:
132 name: {{ include "common.fullname" . }}-configmap
133 defaultMode: 0755
Krzysztof Opasiak3d9dc8b2020-03-31 23:05:16 +0200134 - name: papconfig-processed
135 emptyDir:
136 medium: Memory
ramverma1a3b8ad2019-02-25 12:45:11 +0000137 imagePullSecrets:
138 - name: "{{ include "common.namespace" . }}-docker-registry-key"