Extend K8S and RIC installation instructions
[it/dep.git] / ric-aux / helm / aaf / charts / aaf-sms / charts / aaf-sms-quorumclient / templates / statefulset.yaml
1 # Copyright 2018 Intel Corporation, Inc
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 apiVersion: apps/v1
16 kind: StatefulSet
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   selector:
28     matchLabels:
29       app: {{ include "common.name" . }}
30       release: {{ .Release.Name }}
31   serviceName:
32   template:
33     metadata:
34       labels:
35         app: {{ include "common.name" . }}
36         release: {{ .Release.Name }}
37     spec:
38       containers:
39       - image: "{{ include "common.repository" . }}/{{ .Values.image }}"
40         name: {{ include "common.name" . }}
41         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
42         command: ["/quorumclient/bin/quorumclient"]
43         workingDir: /quorumclient/
44         volumeMounts:
45           - mountPath: /etc/localtime
46             name: localtime
47             readOnly: true
48           - mountPath: /quorumclient/config.json
49             name: {{ include "common.name" .}}
50             subPath: config.json
51           - mountPath: /quorumclient/auth
52             name: {{ include "common.fullname" . }}-auth
53         resources:
54 {{ include "common.resources" . | indent 10 }}
55         {{- if .Values.nodeSelector }}
56         nodeSelector:
57 {{ toYaml .Values.nodeSelector | indent 10 }}
58         {{- end -}}
59         {{- if .Values.affinity }}
60         affinity:
61 {{ toYaml .Values.affinity | indent 10 }}
62         {{- end }}
63       volumes:
64       - name: localtime
65         hostPath:
66           path: /etc/localtime
67       - name : {{ include "common.name" . }}
68         configMap:
69           name: {{ include "common.fullname" . }}
70           items:
71           - key: config.json
72             path: config.json
73             mode: 0755
74       - name: {{ include "common.fullname" . }}-auth
75         persistentVolumeClaim:
76           claimName: {{ include "common.fullname" . }}
77       imagePullSecrets:
78       - name: "{{ include "common.namespace" . }}-docker-registry-key"