blob: e55f9d098700074c3d01307cd5b6b7be720e530e [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# Copyright © 2017 Amdocs, Bell Canada
Durgpal7ad40692018-08-03 07:28:36 +00002# Modifications Copyright © 2018 AT&T
mayankg2703ced85142018-03-20 05:42:53 +00003#
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
16apiVersion: apps/v1beta1
17kind: StatefulSet
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
mayankg2703ced85142018-03-20 05:42:53 +000025 heritage: {{ .Release.Service }}
26spec:
Mahendra Raghuwanshic1395ec2018-04-26 03:19:03 +000027 serviceName: {{ include "common.servicename" . }}
mayankg2703ced85142018-03-20 05:42:53 +000028 replicas: {{ .Values.replicaCount }}
29 selector:
30 matchLabels:
31 app: {{ include "common.name" . }}
32 template:
33 metadata:
34 labels:
35 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010036 release: {{ include "common.release" . }}
mayankg2703ced85142018-03-20 05:42:53 +000037 spec:
38 initContainers:
39 - command:
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +020040 - sh
41 args:
42 - -c
43 - "cd /config-input && for PFILE in `ls -1 *.conf`; do envsubst <${PFILE} >/config/${PFILE}; done"
44 env:
45 - name: JDBC_USER
46 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
47 - name: JDBC_PASSWORD
48 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
49 volumeMounts:
50 - mountPath: /config-input
51 name: pe
52 - mountPath: /config
53 name: pe-processed
54 image: "{{ .Values.global.envsubstImage }}"
55 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56 name: {{ include "common.name" . }}-update-config
57 - command:
mayankg2703ced85142018-03-20 05:42:53 +000058 - /root/ready.py
59 args:
60 - --container-name
61 - {{ .Values.global.pap.nameOverride }}
62 env:
63 - name: NAMESPACE
64 valueFrom:
65 fieldRef:
66 apiVersion: v1
67 fieldPath: metadata.namespace
68 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
69 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
70 name: {{ include "common.name" . }}-readiness
71 containers:
72 - command:
73 - /bin/bash
74 - ./do-start.sh
75 - pdp
76 name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000077 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
mayankg2703ced85142018-03-20 05:42:53 +000078 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Krzysztof Opasiake0784a92020-04-01 00:46:48 +020079 env:
80 - name: JDBC_USER
81 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
82 - name: JDBC_PASSWORD
83 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
vaibhavjayas4136f5d2018-08-17 07:01:05 +000084 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000085{{ include "common.resources" . | indent 12 }}
mayankg2703ced85142018-03-20 05:42:53 +000086 ports:
87 - containerPort: {{ .Values.service.externalPort }}
88 {{- if eq .Values.liveness.enabled true }}
89 livenessProbe:
90 tcpSocket:
91 port: {{ .Values.service.externalPort }}
92 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
93 periodSeconds: {{ .Values.liveness.periodSeconds }}
94 {{- end }}
95 readinessProbe:
96 tcpSocket:
97 port: {{ .Values.service.externalPort }}
98 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
99 periodSeconds: {{ .Values.readiness.periodSeconds }}
100 volumeMounts:
101 - mountPath: /etc/localtime
102 name: localtime
103 readOnly: true
104 - mountPath: /tmp/policy-install/config/base.conf
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +0200105 name: pe-processed
mayankg2703ced85142018-03-20 05:42:53 +0000106 subPath: base.conf
mayankg2703583b43e2018-04-17 05:10:56 +0000107 - mountPath: /tmp/policy-install/config/pdp-tweaks.sh
mayankg2703ced85142018-03-20 05:42:53 +0000108 name: pe-pdp
mayankg2703583b43e2018-04-17 05:10:56 +0000109 subPath: pdp-tweaks.sh
110 - mountPath: /tmp/policy-install/config/pdplp.conf
111 name: pe-pdp
112 subPath: pdplp.conf
113 - mountPath: /tmp/policy-install/config/pdp.conf
114 name: pe-pdp
115 subPath: pdp.conf
mayankg2703ced85142018-03-20 05:42:53 +0000116 - mountPath: /tmp/policy-install/do-start.sh
117 name: pe-scripts
118 subPath: do-start.sh
119 - mountPath: /var/log/onap
120 name: policy-logs
121 - mountPath: /tmp/logback.xml
122 name: policy-logback
123 subPath: logback.xml
124 lifecycle:
125 postStart:
126 exec:
127 command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/opt/app/policy/servers/pdp/webapps/pdp/WEB-INF/classes/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"]
128 - image: {{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}
129 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
130 name: filebeat-onap
131 volumeMounts:
132 - mountPath: /usr/share/filebeat/filebeat.yml
133 name: filebeat-conf
134 subPath: filebeat.yml
135 - mountPath: /var/log/onap
136 name: policy-logs
137 - mountPath: /usr/share/filebeat/data
138 name: policy-data-filebeat
mayankg2703ced85142018-03-20 05:42:53 +0000139 volumes:
140 - name: localtime
141 hostPath:
142 path: /etc/localtime
143 - name: filebeat-conf
144 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100145 name: {{ include "common.release" . }}-filebeat-configmap
mayankg2703ced85142018-03-20 05:42:53 +0000146 - name: policy-logs
147 emptyDir: {}
148 - name: policy-data-filebeat
149 emptyDir: {}
150 - name: policy-logback
151 configMap:
152 name: {{ include "common.fullname" . }}-log-configmap
153 - name: pe
154 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100155 name: {{ include "common.release" . }}-pe-configmap
mayankg2703ced85142018-03-20 05:42:53 +0000156 defaultMode: 0755
157 - name: pe-scripts
158 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100159 name: {{ include "common.release" . }}-pe-scripts-configmap
mayankg2703ced85142018-03-20 05:42:53 +0000160 defaultMode: 0777
161 - name: pe-pdp
162 configMap:
163 name: {{ include "common.fullname" . }}-pe-configmap
164 defaultMode: 0755
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +0200165 - name: pe-processed
166 emptyDir:
167 medium: Memory
mayankg2703ced85142018-03-20 05:42:53 +0000168 imagePullSecrets:
169 - name: "{{ include "common.namespace" . }}-docker-registry-key"