Revert "basic auth for so-monitoring"
[oom.git] / kubernetes / aaf / charts / aaf-sms / charts / aaf-sms-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         resources:
49 {{ include "common.resources" . | indent 10 }}
50       - image: "{{ include "common.repository" . }}/{{ .Values.image.consul }}"
51         name: {{ include "common.name" . }}-backend
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         command: ["consul","agent","-server","-client","0.0.0.0","-bootstrap-expect=1","-config-file","/consul/config/config.json"]
54         ports:
55         - name: http
56           containerPort: 8500
57         volumeMounts:
58         - mountPath: /consul/data
59           name: {{ include "common.fullname" . }}-consuldata
60         - mountPath: /consul/config/config.json
61           name: {{ include "common.fullname" . }}-consulconfiguration
62           subPath: config.json
63         - mountPath: /etc/localtime
64           name: localtime
65           readOnly: true
66         resources:
67 {{ include "common.resources" . | indent 10 }}
68       volumes:
69         - name: {{ include "common.fullname" . }}-consuldata
70           persistentVolumeClaim:
71             claimName: {{ include "common.fullname" . }}
72         - name: {{ include "common.fullname" . }}-consulconfiguration
73           configMap:
74             name: {{ include "common.fullname" . }}-consul
75         - name: {{ include "common.fullname" . }}-vault
76           configMap:
77             name: {{ include "common.fullname" . }}-vault
78         - name: localtime
79           hostPath:
80             path: /etc/localtime
81       imagePullSecrets:
82       - name: "{{ include "common.namespace" . }}-docker-registry-key"