blob: 127c400c129e45accca8f6fdcdad42be15b0bf9b [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:
40 - /root/ready.py
41 args:
42 - --container-name
43 - {{ .Values.global.pap.nameOverride }}
44 env:
45 - name: NAMESPACE
46 valueFrom:
47 fieldRef:
48 apiVersion: v1
49 fieldPath: metadata.namespace
50 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
51 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 name: {{ include "common.name" . }}-readiness
53 containers:
54 - command:
55 - /bin/bash
56 - ./do-start.sh
57 - pdp
58 name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000059 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
mayankg2703ced85142018-03-20 05:42:53 +000060 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
vaibhavjayas4136f5d2018-08-17 07:01:05 +000061 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000062{{ include "common.resources" . | indent 12 }}
mayankg2703ced85142018-03-20 05:42:53 +000063 ports:
64 - containerPort: {{ .Values.service.externalPort }}
65 {{- if eq .Values.liveness.enabled true }}
66 livenessProbe:
67 tcpSocket:
68 port: {{ .Values.service.externalPort }}
69 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
70 periodSeconds: {{ .Values.liveness.periodSeconds }}
71 {{- end }}
72 readinessProbe:
73 tcpSocket:
74 port: {{ .Values.service.externalPort }}
75 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
76 periodSeconds: {{ .Values.readiness.periodSeconds }}
77 volumeMounts:
78 - mountPath: /etc/localtime
79 name: localtime
80 readOnly: true
81 - mountPath: /tmp/policy-install/config/base.conf
82 name: pe
83 subPath: base.conf
mayankg2703583b43e2018-04-17 05:10:56 +000084 - mountPath: /tmp/policy-install/config/pdp-tweaks.sh
mayankg2703ced85142018-03-20 05:42:53 +000085 name: pe-pdp
mayankg2703583b43e2018-04-17 05:10:56 +000086 subPath: pdp-tweaks.sh
87 - mountPath: /tmp/policy-install/config/pdplp.conf
88 name: pe-pdp
89 subPath: pdplp.conf
90 - mountPath: /tmp/policy-install/config/pdp.conf
91 name: pe-pdp
92 subPath: pdp.conf
mayankg2703ced85142018-03-20 05:42:53 +000093 - mountPath: /tmp/policy-install/do-start.sh
94 name: pe-scripts
95 subPath: do-start.sh
96 - mountPath: /var/log/onap
97 name: policy-logs
98 - mountPath: /tmp/logback.xml
99 name: policy-logback
100 subPath: logback.xml
101 lifecycle:
102 postStart:
103 exec:
104 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"]
105 - image: {{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}
106 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
107 name: filebeat-onap
108 volumeMounts:
109 - mountPath: /usr/share/filebeat/filebeat.yml
110 name: filebeat-conf
111 subPath: filebeat.yml
112 - mountPath: /var/log/onap
113 name: policy-logs
114 - mountPath: /usr/share/filebeat/data
115 name: policy-data-filebeat
mayankg2703ced85142018-03-20 05:42:53 +0000116 volumes:
117 - name: localtime
118 hostPath:
119 path: /etc/localtime
120 - name: filebeat-conf
121 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100122 name: {{ include "common.release" . }}-filebeat-configmap
mayankg2703ced85142018-03-20 05:42:53 +0000123 - name: policy-logs
124 emptyDir: {}
125 - name: policy-data-filebeat
126 emptyDir: {}
127 - name: policy-logback
128 configMap:
129 name: {{ include "common.fullname" . }}-log-configmap
130 - name: pe
131 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100132 name: {{ include "common.release" . }}-pe-configmap
mayankg2703ced85142018-03-20 05:42:53 +0000133 defaultMode: 0755
134 - name: pe-scripts
135 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100136 name: {{ include "common.release" . }}-pe-scripts-configmap
mayankg2703ced85142018-03-20 05:42:53 +0000137 defaultMode: 0777
138 - name: pe-pdp
139 configMap:
140 name: {{ include "common.fullname" . }}-pe-configmap
141 defaultMode: 0755
142 imagePullSecrets:
143 - name: "{{ include "common.namespace" . }}-docker-registry-key"