[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / policy / components / policy-apex-pdp / templates / statefulset.yaml
1 #  ============LICENSE_START=======================================================
2 #   Copyright (C) 2018 Ericsson. All rights reserved.
3 #   Modifications 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 apiVersion: apps/v1
21 kind: StatefulSet
22 metadata:
23   name: {{ include "common.fullname" . }}
24   namespace: {{ include "common.namespace" . }}
25   labels:
26     app: {{ include "common.name" . }}
27     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
28     release: {{ include "common.release" . }}
29     heritage: {{ .Release.Service }}
30 spec:
31   serviceName: {{ include "common.servicename" . }}
32   replicas: {{ .Values.replicaCount }}
33   selector:
34     matchLabels:
35       app: {{ include "common.name" . }}
36   template:
37     metadata:
38       labels:
39         app: {{ include "common.name" . }}
40         release: {{ include "common.release" . }}
41     spec:
42       initContainers:
43       - command:
44         - sh
45         args:
46         - -c
47         - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done"
48         env:
49         - name: TRUSTSTORE_PASSWORD
50           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-pass" "key" "password") | indent 10 }}
51         - name: KEYSTORE_PASSWORD
52           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-pass" "key" "password") | indent 10 }}
53         - name: RESTSERVER_USER
54           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "login") | indent 10 }}
55         - name: RESTSERVER_PASSWORD
56           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "password") | indent 10 }}
57         volumeMounts:
58         - mountPath: /config-input
59           name: apexconfig-input
60         - mountPath: /config
61           name: apexconfig
62         image: "{{ .Values.global.envsubstImage }}"
63         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
64         name: {{ include "common.name" . }}-update-config
65 {{ include "common.certInitializer.initContainer" . | indent 6 }}
66       containers:
67         - name: {{ include "common.name" . }}
68           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
69           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
70           command: ["bash","-c"]
71           args: ["if [ -f {{ .Values.certInitializer.credsPath }}/.ci ]; then \
72                   source {{ .Values.certInitializer.credsPath }}/.ci; fi;\
73                   /opt/app/policy/apex-pdp/bin/apexOnapPf.sh -c /home/apexuser/config/OnapPfConfig.json"]
74           ports:
75           - containerPort: {{ .Values.service.externalPort }}
76           {{- if eq .Values.liveness.enabled true }}
77           livenessProbe:
78             tcpSocket:
79               port: {{ .Values.service.externalPort }}
80             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
81             periodSeconds: {{ .Values.liveness.periodSeconds }}
82           {{- end }}
83           readinessProbe:
84             tcpSocket:
85               port: {{ .Values.service.externalPort }}
86             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
87             periodSeconds: {{ .Values.readiness.periodSeconds }}
88           env:
89           - name: REPLICAS
90             value: "{{ .Values.replicaCount }}"
91 {{- if not .Values.global.aafEnabled }}
92           - name: KEYSTORE_PASSWORD
93             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-pass" "key" "password") | indent 12 }}
94           - name: TRUSTSTORE_PASSWORD
95             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-pass" "key" "password") | indent 12 }}
96 {{- end }}
97           volumeMounts:
98 {{ include "common.certInitializer.volumeMount" . | indent 10 }}
99           - mountPath: /etc/localtime
100             name: localtime
101             readOnly: true
102           - mountPath: /var/log/onap
103             name: policy-logs
104           - mountPath: /home/apexuser/config
105             name: apexconfig
106           resources:
107 {{ include "common.resources" . }}
108         {{- if .Values.nodeSelector }}
109         nodeSelector:
110 {{ toYaml .Values.nodeSelector | indent 10 }}
111         {{- end -}}
112         {{- if .Values.affinity }}
113         affinity:
114 {{ toYaml .Values.affinity | indent 10 }}
115         {{- end }}
116       volumes:
117 {{ include "common.certInitializer.volumes" . | indent 8 }}
118         - name: localtime
119           hostPath:
120             path: /etc/localtime
121         - name: policy-logs
122           emptyDir: {}
123         - name: apexconfig-input
124           configMap:
125             name: {{ include "common.fullname" . }}-configmap
126             defaultMode: 0755
127         - name: apexconfig
128           emptyDir:
129             medium: Memory
130       imagePullSecrets:
131       - name: "{{ include "common.namespace" . }}-docker-registry-key"