Merge "Update ROBOT DCAE healthcheck endpoint"
[oom.git] / kubernetes / aaf / charts / sms / charts / vault / 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.vault }}"
36         name: {{ include "common.name" . }}
37         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
38         command: ["vault","server","-config","/vault/config/config.json"]
39         ports:
40         - containerPort: {{ .Values.service.internalPort }}
41         volumeMounts:
42         - mountPath: /vault/config/config.json
43           name: {{ include "common.fullname" . }}-vault
44           subPath: config.json
45         - mountPath: /etc/localtime
46           name: localtime
47           readOnly: true
48
49       - image: "{{ include "common.repository" . }}/{{ .Values.image.consul }}"
50         name: {{ include "common.name" . }}-backend
51         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52         command: ["consul","agent","-server","-client","0.0.0.0","-bootstrap-expect=1","-config-file","/consul/config/config.json"]
53         ports:
54         - name: http
55           containerPort: 8500
56         volumeMounts:
57         - mountPath: /consul/data
58           name: {{ include "common.fullname" . }}-consuldata
59         - mountPath: /consul/config/config.json
60           name: {{ include "common.fullname" . }}-consulconfiguration
61           subPath: config.json
62         - mountPath: /etc/localtime
63           name: localtime
64           readOnly: true
65       volumes:
66         - name: {{ include "common.fullname" . }}-consuldata
67           persistentVolumeClaim:
68             claimName: {{ include "common.fullname" . }}
69         - name: {{ include "common.fullname" . }}-consulconfiguration
70           configMap:
71             name: {{ include "common.fullname" . }}-consul
72         - name: {{ include "common.fullname" . }}-vault
73           configMap:
74             name: {{ include "common.fullname" . }}-vault
75         - name: localtime
76           hostPath:
77             path: /etc/localtime
78