Jakub Latusek | d71d26c | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 2 | # ============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 Latusek | d71d26c | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 19 | */}} |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 20 | |
Grzegorz-Lis | 4fad302 | 2020-07-31 10:18:21 +0200 | [diff] [blame] | 21 | apiVersion: apps/v1 |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 22 | kind: Deployment |
Bruno Sakoto | 0644c26 | 2020-05-22 16:56:35 -0400 | [diff] [blame] | 23 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 24 | spec: |
Bruno Sakoto | 0644c26 | 2020-05-22 16:56:35 -0400 | [diff] [blame] | 25 | selector: {{- include "common.selectors" . | nindent 4 }} |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 26 | replicas: {{ .Values.replicaCount }} |
| 27 | template: |
Bruno Sakoto | 0644c26 | 2020-05-22 16:56:35 -0400 | [diff] [blame] | 28 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 29 | spec: |
ramverma | 6acdabf | 2019-04-12 18:56:03 +0000 | [diff] [blame] | 30 | initContainers: |
| 31 | - command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 32 | - /app/ready.py |
ramverma | 6acdabf | 2019-04-12 18:56:03 +0000 | [diff] [blame] | 33 | args: |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 34 | - --job-name |
| 35 | - {{ include "common.release" . }}-policy-galera-config |
ramverma | 6acdabf | 2019-04-12 18:56:03 +0000 | [diff] [blame] | 36 | env: |
| 37 | - name: NAMESPACE |
| 38 | valueFrom: |
| 39 | fieldRef: |
| 40 | apiVersion: v1 |
| 41 | fieldPath: metadata.namespace |
Sylvain Desbureaux | 7c8c686 | 2020-11-19 18:02:37 +0100 | [diff] [blame] | 42 | image: {{ include "repositoryGenerator.image.readiness" . }} |
ramverma | 6acdabf | 2019-04-12 18:56:03 +0000 | [diff] [blame] | 43 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 44 | name: {{ include "common.name" . }}-readiness |
Krzysztof Opasiak | 3d9dc8b | 2020-03-31 23:05:16 +0200 | [diff] [blame] | 45 | - command: |
| 46 | - sh |
| 47 | args: |
| 48 | - -c |
Taka Cho | ebd6295 | 2020-10-08 13:50:09 -0400 | [diff] [blame] | 49 | - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done" |
Krzysztof Opasiak | 3d9dc8b | 2020-03-31 23:05:16 +0200 | [diff] [blame] | 50 | 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 Mizyn | 389fca1 | 2020-04-09 22:37:00 +0200 | [diff] [blame] | 55 | - 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 Opasiak | 3d9dc8b | 2020-03-31 23:05:16 +0200 | [diff] [blame] | 67 | volumeMounts: |
| 68 | - mountPath: /config-input |
| 69 | name: papconfig |
| 70 | - mountPath: /config |
| 71 | name: papconfig-processed |
Sylvain Desbureaux | 7c8c686 | 2020-11-19 18:02:37 +0100 | [diff] [blame] | 72 | image: {{ include "repositoryGenerator.image.envsubst" . }} |
Krzysztof Opasiak | 3d9dc8b | 2020-03-31 23:05:16 +0200 | [diff] [blame] | 73 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 74 | name: {{ include "common.name" . }}-update-config |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 75 | {{ include "common.certInitializer.initContainer" . | indent 6 }} |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 76 | containers: |
| 77 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 7c8c686 | 2020-11-19 18:02:37 +0100 | [diff] [blame] | 78 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 79 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 80 | {{- if .Values.global.aafEnabled }} |
Taka Cho | 9658ce8 | 2020-12-10 14:34:18 -0500 | [diff] [blame] | 81 | command: ["sh","-c"] |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 82 | args: ["source {{ .Values.certInitializer.credsPath }}/.ci;\ |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 83 | /opt/app/policy/pap/bin/policy-pap.sh /opt/app/policy/pap/etc/mounted/config.json"] |
| 84 | {{- else }} |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 85 | command: ["/opt/app/policy/pap/bin/policy-pap.sh"] |
jhh | bf7fb4d | 2019-08-07 16:54:41 -0500 | [diff] [blame] | 86 | args: ["/opt/app/policy/pap/etc/mounted/config.json"] |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 87 | 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 Sakoto | 0644c26 | 2020-05-22 16:56:35 -0400 | [diff] [blame] | 93 | ports: {{ include "common.containerPorts" . | nindent 12 }} |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 94 | # 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 Sakoto | 0644c26 | 2020-05-22 16:56:35 -0400 | [diff] [blame] | 99 | port: {{ .Values.liveness.port }} |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 100 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 101 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 102 | {{ end -}} |
| 103 | readinessProbe: |
| 104 | tcpSocket: |
Bruno Sakoto | 0644c26 | 2020-05-22 16:56:35 -0400 | [diff] [blame] | 105 | port: {{ .Values.readiness.port }} |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 106 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 107 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 108 | volumeMounts: |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 109 | {{ include "common.certInitializer.volumeMount" . | indent 10 }} |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 110 | - mountPath: /etc/localtime |
| 111 | name: localtime |
| 112 | readOnly: true |
| 113 | - mountPath: /opt/app/policy/pap/etc/mounted |
Krzysztof Opasiak | 3d9dc8b | 2020-03-31 23:05:16 +0200 | [diff] [blame] | 114 | name: papconfig-processed |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 115 | resources: |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 116 | {{ include "common.resources" . }} |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 117 | {{- 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: |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 126 | {{ include "common.certInitializer.volumes" . | indent 8 }} |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 127 | - name: localtime |
| 128 | hostPath: |
| 129 | path: /etc/localtime |
| 130 | - name: papconfig |
| 131 | configMap: |
| 132 | name: {{ include "common.fullname" . }}-configmap |
| 133 | defaultMode: 0755 |
Krzysztof Opasiak | 3d9dc8b | 2020-03-31 23:05:16 +0200 | [diff] [blame] | 134 | - name: papconfig-processed |
| 135 | emptyDir: |
| 136 | medium: Memory |
ramverma | 1a3b8ad | 2019-02-25 12:45:11 +0000 | [diff] [blame] | 137 | imagePullSecrets: |
| 138 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |