f9d8348c00572a634890699f675b335b3916c382
[it/dep.git] / smo-install / oran_oom / informationservice / templates / statefulset.yaml
1 ################################################################################
2 #   Copyright (c) 2020 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: {{- include "common.resourceMetadata" . | nindent 2 }}
20 spec:
21   serviceName: {{ include "common.name" . }}
22   replicas: 1
23   selector: {{- include "common.selectors" . | nindent 4 }}
24   template:
25     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
26     spec:
27       hostname: {{ include "common.name" . }}
28       initContainers:
29         - name: fix-permission
30           command:
31           - sh
32           - -c
33           - mkdir /var/information-coordinator-service/database;
34             chown -R 1000:1000 /var/information-coordinator-service;
35           image: busybox:1.28
36           imagePullPolicy: {{ .Values.imagePullPolicy }}
37           volumeMounts:
38           - name: {{ include "common.vardataMountName" . }}
39             mountPath: /var/information-coordinator-service
40       containers:
41       - name: {{ include "common.containername" . }}
42         image: {{ .Values.image.registry }}/{{ .Values.image.name }}:{{ .Values.image.tag }}
43         imagePullPolicy: {{ .Values.imagePullPolicy }}
44         ports: {{- include "common.containerPorts" . | nindent 8 }}
45         {{- include "common.tcpsocketReadinessProbe" . | nindent 8 }}
46         {{- include "common.httpLiveProbe" . | nindent 8 }}
47         volumeMounts:
48         - name: {{ include "common.applicationConfigMountName" . }}
49           mountPath: /opt/app/information-coordinator-service/config
50         - name: {{ include "common.vardataMountName" . }}
51           mountPath: /var/information-coordinator-service
52       volumes: {{- include "common.applicationConfigVolume" . | nindent 8 }}
53
54   volumeClaimTemplates: {{- include "common.vardataVolumeClaimTemplate" . | nindent 4 }}