Updating charts to use common resource template
[oom.git] / kubernetes / 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/v1beta1
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   serviceName:
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ .Release.Name }}
33     spec:
34       containers:
35       - image: "{{ include "common.repository" . }}/{{ .Values.image }}"
36         name: {{ include "common.name" . }}
37         imagePullPolicy: {{ .Values.pullPolicy }}
38         command: ["/quorumclient/bin/quorumclient"]
39         workingDir: /quorumclient/
40         volumeMounts:
41           - mountPath: /etc/localtime
42             name: localtime
43             readOnly: true
44           - mountPath: /quorumclient/config.json
45             name: {{ include "common.name" .}}
46             subPath: config.json
47           - mountPath: /quorumclient/auth
48             name: {{ include "common.fullname" . }}-auth
49         resources:
50 {{ include "common.resources" . | indent 12 }}
51         {{- if .Values.nodeSelector }}
52         nodeSelector:
53 {{ toYaml .Values.nodeSelector | indent 10 }}
54         {{- end -}}
55         {{- if .Values.affinity }}
56         affinity:
57 {{ toYaml .Values.affinity | indent 10 }}
58         {{- end }}
59       volumes:
60       - name: localtime
61         hostPath:
62           path: /etc/localtime
63       - name : {{ include "common.name" . }}
64         configMap:
65           name: {{ include "common.fullname" . }}
66           items:
67           - key: config.json
68             path: config.json
69             mode: 0755
70       - name: {{ include "common.fullname" . }}-auth
71         persistentVolumeClaim:
72           claimName: {{ include "common.fullname" . }}
73       imagePullSecrets:
74       - name: "{{ include "common.namespace" . }}-docker-registry-key"