Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / policy / components / policy-xacml-pdp / templates / deployment.yaml
1 {{/*
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=========================================================
19 */}}
20
21 apiVersion: apps/v1
22 kind: Deployment
23 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
24 spec:
25   selector: {{- include "common.selectors" . | nindent 4 }}
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
29     spec:
30       initContainers:
31       - command:
32         - /app/ready.py
33         args:
34         - --job-name
35         - {{ include "common.release" . }}-policy-galera-config
36         env:
37         - name: NAMESPACE
38           valueFrom:
39             fieldRef:
40               apiVersion: v1
41               fieldPath: metadata.namespace
42         image: {{ include "repositoryGenerator.image.readiness" . }}
43         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
44         name: {{ include "common.name" . }}-readiness
45         resources:
46           limits:
47             cpu: "100m"
48             memory: "500Mi"
49           requests:
50             cpu: "3m"
51             memory: "20Mi"
52       - command:
53         - sh
54         args:
55         - -c
56         - JAASLOGIN=`echo $JAASLOGIN | tr -d '"'`; cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done
57         env:
58         - name: RESTSERVER_USER
59           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "login") | indent 10 }}
60         - name: RESTSERVER_PASSWORD
61           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "password") | indent 10 }}
62         - name: API_USER
63           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-creds" "key" "login") | indent 10 }}
64         - name: API_PASSWORD
65           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-creds" "key" "password") | indent 10 }}
66         - name: SQL_USER
67           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
68         - name: SQL_PASSWORD
69           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
70         - name: JAASLOGIN
71           valueFrom:
72             secretKeyRef:
73               name: {{ include "common.name" . }}-ku
74               key: sasl.jaas.config
75         - name: KAFKA_URL
76           value: {{ include "common.release" . }}-{{ .Values.global.kafkaBootstrap }}
77         - name: SASL
78           value: {{ .Values.kafkaUser.authenticationType | upper }}
79         - name: GROUP_ID
80           value: {{ .Values.config.kafka.consumer.groupId }}
81         - name: PAP_TOPIC
82           value: {{ .Values.config.app.listener.policyPdpPapTopic }}
83         volumeMounts:
84         - mountPath: /config-input
85           name: pdpxconfig
86         - mountPath: /config
87           name: pdpxconfig-processed
88         image: {{ include "repositoryGenerator.image.envsubst" . }}
89         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
90         name: {{ include "common.name" . }}-update-config
91       containers:
92         - name: {{ include "common.name" . }}
93           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
94           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
95           command: ["/opt/app/policy/pdpx/bin/policy-pdpx.sh"]
96           args: ["/opt/app/policy/pdpx/etc/mounted/config.json"]
97           ports: {{ include "common.containerPorts" . | nindent 12  }}
98           # disable liveness probe when breakpoints set in debugger
99           # so K8s doesn't restart unresponsive container
100           {{- if eq .Values.liveness.enabled true }}
101           livenessProbe:
102             tcpSocket:
103               port: {{ .Values.service.internalPort }}
104             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
105             periodSeconds: {{ .Values.liveness.periodSeconds }}
106           {{ end -}}
107           readinessProbe:
108             tcpSocket:
109               port: {{ .Values.service.internalPort }}
110             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
111             periodSeconds: {{ .Values.readiness.periodSeconds }}
112           volumeMounts:
113           - mountPath: /opt/app/policy/pdpx/etc/mounted
114             name: pdpxconfig-processed
115           resources: {{ include "common.resources" . | nindent 12 }}
116         {{- if .Values.nodeSelector }}
117         nodeSelector:
118 {{ toYaml .Values.nodeSelector | indent 10 }}
119         {{- end -}}
120         {{- if .Values.affinity }}
121         affinity:
122 {{ toYaml .Values.affinity | indent 10 }}
123         {{- end }}
124       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
125       volumes:
126         - name: pdpxconfig
127           configMap:
128             name: {{ include "common.fullname" . }}-configmap
129             defaultMode: 0755
130         - name: pdpxconfig-processed
131           emptyDir:
132             medium: Memory
133       {{- include "common.imagePullSecrets" . | nindent 6 }}