Update SMo pack install with E-release
[it/dep.git] / smo-install / oran_oom / helmmanager / templates / statefulset.yaml
1 ################################################################################
2 #   Copyright (c) 2021 Nordix Foundation.                                      #
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
17 kind: StatefulSet
18 apiVersion: apps/v1
19 metadata:
20   name: {{ include "common.name.helmmanager" . }}
21   namespace: {{ include "common.namespace.nonrtric" . }}
22   generation: 1
23   labels:
24     app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.helmmanager" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ .Release.Name }}
27     heritage: {{ .Release.Service }}
28   annotations:
29
30 spec:
31   serviceName: {{ include "common.name.helmmanager" . }}
32   replicas: 1
33   selector:
34     matchLabels:
35       app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.helmmanager" . }}
36       release: {{ .Release.Name }}
37   template:
38     metadata:
39       labels:
40         app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.helmmanager" . }}
41         release: {{ .Release.Name }}
42     spec:
43       hostname: {{ include "common.name.helmmanager" . }}
44       containers:
45       - name: {{ include "common.container.helmmanager" . }}
46         image: {{ .Values.helmmanager.image.registry }}/{{ .Values.helmmanager.image.name }}:{{ .Values.helmmanager.image.tag }}
47         imagePullPolicy: {{ .Values.helmmanager.imagePullPolicy }}
48         ports:
49         - containerPort: {{ .Values.helmmanager.service.targetPort1 }}
50           protocol: TCP
51         # readinessProbe:
52         #   tcpSocket:
53         #     port: {{ .Values.helmmanager.service.targetPort1 }}
54         #   initialDelaySeconds: {{ .Values.helmmanager.liveness.initialDelaySeconds }}
55         #   periodSeconds: {{ .Values.helmmanager.liveness.periodSeconds }}
56         # livenessProbe:
57         #   httpGet:
58         #     path: /helm/charts
59         #     port: {{ .Values.helmmanager.service.targetPort1 }}
60         #   initialDelaySeconds: {{ .Values.helmmanager.liveness.initialDelaySeconds }}
61         #   periodSeconds: {{ .Values.helmmanager.liveness.periodSeconds }}
62         volumeMounts:
63         - name: {{ include "common.name.helmmanager" . }}-vardata
64           mountPath: "/var/helm-manager-service"
65   volumeClaimTemplates:
66     - metadata:
67         name: {{ include "common.name.helmmanager" . }}-vardata
68       spec:
69         accessModes:
70           - ReadWriteOnce
71         storageClassName: "{{ .Values.helmmanager.persistence.storageClassName }}"
72         resources:
73           requests:
74             storage: "{{ .Values.helmmanager.persistence.size }}"