Changes to support onappf PDP-A
[oom.git] / kubernetes / policy / charts / policy-apex-pdp / templates / statefulset.yaml
1 #  ============LICENSE_START=======================================================
2 #   Copyright (C) 2018 Ericsson. All rights reserved.
3 #  ================================================================================
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 #
16 #  SPDX-License-Identifier: Apache-2.0
17 #  ============LICENSE_END=========================================================
18
19 apiVersion: apps/v1beta1
20 kind: StatefulSet
21 metadata:
22   name: {{ include "common.fullname" . }}
23   namespace: {{ include "common.namespace" . }}
24   labels:
25     app: {{ include "common.name" . }}
26     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
27     release: {{ .Release.Name }}
28     heritage: {{ .Release.Service }}
29 spec:
30   serviceName: {{ include "common.servicename" . }}
31   replicas: {{ .Values.replicaCount }}
32   selector:
33     matchLabels:
34       app: {{ include "common.name" . }}
35   template:
36     metadata:
37       labels:
38         app: {{ include "common.name" . }}
39         release: {{ .Release.Name }}
40     spec:
41       containers:
42         - name: {{ include "common.name" . }}
43           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
44           command:
45           - /opt/app/policy/apex-pdp/bin/apexOnapPf.sh
46           - -c
47           - /home/apexuser/config/OnapPfConfig.json
48           - -p
49           - /home/apexuser/config/topic.properties
50           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51           ports:
52           - containerPort: {{ .Values.service.externalPort }}
53           {{- if eq .Values.liveness.enabled true }}
54           livenessProbe:
55             tcpSocket:
56               port: {{ .Values.service.externalPort }}
57             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
58             periodSeconds: {{ .Values.liveness.periodSeconds }}
59           {{- end }}
60           readinessProbe:
61             tcpSocket:
62               port: {{ .Values.service.externalPort }}
63             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
64             periodSeconds: {{ .Values.readiness.periodSeconds }}
65           env:
66           - name: REPLICAS
67             value: "{{ .Values.replicaCount }}"
68           volumeMounts:
69           - mountPath: /etc/localtime
70             name: localtime
71             readOnly: true
72           - mountPath: /var/log/onap
73             name: policy-logs
74           - mountPath: /home/apexuser/config
75             name: apexconfig
76           resources:
77 {{ include "common.resources" . | indent 12 }}
78         {{- if .Values.nodeSelector }}
79         nodeSelector:
80 {{ toYaml .Values.nodeSelector | indent 10 }}
81         {{- end -}}
82         {{- if .Values.affinity }}
83         affinity:
84 {{ toYaml .Values.affinity | indent 10 }}
85         {{- end }}
86       volumes:
87         - name: localtime
88           hostPath:
89             path: /etc/localtime
90         - name: policy-logs
91           emptyDir: {}
92         - name: apexconfig
93           configMap:
94             name: {{ include "common.fullname" . }}-configmap
95             defaultMode: 0755
96       imagePullSecrets:
97       - name: "{{ include "common.namespace" . }}-docker-registry-key"