blob: a461b2e1b5489e9549b729bd36476ec4690a2c6c [file] [log] [blame]
Kiran Kamineni39648722018-03-21 14:58:11 -07001# 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
15apiVersion: extensions/v1beta1
16kind: Deployment
17metadata:
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 }}
25spec:
26 replicas: {{ .Values.replicaCount }}
27 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}
31 release: {{ .Release.Name }}
32 spec:
Kiran Kamineni55869062018-08-02 17:19:27 -070033 initContainers:
34 - image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
35 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
36 name: {{ include "common.name" . }}-readiness
37 command:
38 - /root/ready.py
39 args:
40 - --container-name
41 - "aaf-sms-vault"
42 - --container-name
43 - "aaf-sms-vault-backend"
44 env:
45 - name: NAMESPACE
46 valueFrom:
47 fieldRef:
48 apiVersion: v1
49 fieldPath: metadata.namespace
Kiran Kamineni39648722018-03-21 14:58:11 -070050 containers:
Kiran Kaminenie4e81e72018-04-09 10:14:32 -070051 - image: "{{ include "common.repository" . }}/{{ .Values.image }}"
dkamdocs6ad3a1c2018-12-21 09:25:53 +000052 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Kiran Kamineni55869062018-08-02 17:19:27 -070053 name: {{ include "common.name" . }}
Kiran Kamineni39648722018-03-21 14:58:11 -070054 command: ["/sms/bin/sms"]
55 workingDir: /sms/
Kiran Kamineni39648722018-03-21 14:58:11 -070056 ports:
57 - containerPort: {{ .Values.service.internalPort }}
58 {{- if eq .Values.liveness.enabled true }}
59 livenessProbe:
Kiran Kaminenic808c9a2018-05-14 16:59:55 -070060 httpGet:
Kiran Kamineni39648722018-03-21 14:58:11 -070061 port: {{ .Values.service.internalPort }}
Kiran Kaminenic808c9a2018-05-14 16:59:55 -070062 scheme: HTTPS
63 path: /v1/sms/quorum/status
Kiran Kamineni39648722018-03-21 14:58:11 -070064 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
65 periodSeconds: {{ .Values.liveness.periodSeconds }}
66 {{ end -}}
67 readinessProbe:
Kiran Kaminenic808c9a2018-05-14 16:59:55 -070068 httpGet:
Kiran Kamineni39648722018-03-21 14:58:11 -070069 port: {{ .Values.service.internalPort }}
Kiran Kaminenic808c9a2018-05-14 16:59:55 -070070 scheme: HTTPS
71 path: /v1/sms/quorum/status
Kiran Kamineni39648722018-03-21 14:58:11 -070072 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
73 periodSeconds: {{ .Values.readiness.periodSeconds }}
74 volumeMounts:
75 - mountPath: /etc/localtime
76 name: localtime
77 readOnly: true
78 - mountPath: /sms/smsconfig.json
79 name: {{ include "common.name" .}}
80 subPath: smsconfig.json
Kiran Kaminenie4e81e72018-04-09 10:14:32 -070081 - mountPath: /sms/auth
82 name: {{ include "common.fullname" . }}-auth
Kiran Kamineni39648722018-03-21 14:58:11 -070083 resources:
dsingh.27864a34bf2018-09-21 05:11:00 -040084{{ include "common.resources" . | indent 10 }}
Kiran Kamineni39648722018-03-21 14:58:11 -070085 {{- if .Values.nodeSelector }}
86 nodeSelector:
87{{ toYaml .Values.nodeSelector | indent 10 }}
88 {{- end -}}
89 {{- if .Values.affinity }}
90 affinity:
91{{ toYaml .Values.affinity | indent 10 }}
92 {{- end }}
93 volumes:
94 - name: localtime
95 hostPath:
96 path: /etc/localtime
97 - name : {{ include "common.name" . }}
98 configMap:
99 name: {{ include "common.fullname" . }}
Kiran Kaminenie4e81e72018-04-09 10:14:32 -0700100 - name: {{ include "common.fullname" . }}-auth
Sylvain Desbureaux7a235752019-11-28 15:01:45 +0100101 {{- if .Values.persistence.enabled }}
Kiran Kaminenie4e81e72018-04-09 10:14:32 -0700102 persistentVolumeClaim:
103 claimName: {{ include "common.fullname" . }}
Sylvain Desbureaux7a235752019-11-28 15:01:45 +0100104 {{- else }}
105 emptyDir: {}
106 {{- end }}
Kiran Kamineni39648722018-03-21 14:58:11 -0700107 imagePullSecrets:
108 - name: "{{ include "common.namespace" . }}-docker-registry-key"