Updating charts to use common resource template
[oom.git] / kubernetes / aaf / charts / aaf-sms / templates / deployment.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: extensions/v1beta1
16 kind: Deployment
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   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       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
50       containers:
51       - image: "{{ include "common.repository" . }}/{{ .Values.image }}"
52         imagePullPolicy: {{ .Values.pullPolicy }}
53         name: {{ include "common.name" . }}
54         command: ["/sms/bin/sms"]
55         workingDir: /sms/
56         ports:
57         - containerPort: {{ .Values.service.internalPort }}
58         {{- if eq .Values.liveness.enabled true }}
59         livenessProbe:
60           httpGet:
61             port: {{ .Values.service.internalPort }}
62             scheme: HTTPS
63             path: /v1/sms/quorum/status
64           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
65           periodSeconds: {{ .Values.liveness.periodSeconds }}
66         {{ end -}}
67         readinessProbe:
68           httpGet:
69             port: {{ .Values.service.internalPort }}
70             scheme: HTTPS
71             path: /v1/sms/quorum/status
72           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
81           - mountPath: /sms/auth
82             name: {{ include "common.fullname" . }}-auth
83         resources:
84 {{ include "common.resources" . | indent 12 }}
85         {{- 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" . }}
100       - name: {{ include "common.fullname" . }}-auth
101         persistentVolumeClaim:
102           claimName: {{ include "common.fullname" . }}
103       imagePullSecrets:
104       - name: "{{ include "common.namespace" . }}-docker-registry-key"