Kiran Kamineni | 3964872 | 2018-03-21 14:58:11 -0700 | [diff] [blame] | 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: |
Kiran Kamineni | 5586906 | 2018-08-02 17:19:27 -0700 | [diff] [blame] | 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 |
Kiran Kamineni | 3964872 | 2018-03-21 14:58:11 -0700 | [diff] [blame] | 50 | containers: |
Kiran Kamineni | e4e81e7 | 2018-04-09 10:14:32 -0700 | [diff] [blame] | 51 | - image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
dkamdocs | 6ad3a1c | 2018-12-21 09:25:53 +0000 | [diff] [blame] | 52 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
Kiran Kamineni | 5586906 | 2018-08-02 17:19:27 -0700 | [diff] [blame] | 53 | name: {{ include "common.name" . }} |
Kiran Kamineni | 3964872 | 2018-03-21 14:58:11 -0700 | [diff] [blame] | 54 | command: ["/sms/bin/sms"] |
| 55 | workingDir: /sms/ |
Kiran Kamineni | 3964872 | 2018-03-21 14:58:11 -0700 | [diff] [blame] | 56 | ports: |
| 57 | - containerPort: {{ .Values.service.internalPort }} |
| 58 | {{- if eq .Values.liveness.enabled true }} |
| 59 | livenessProbe: |
Kiran Kamineni | c808c9a | 2018-05-14 16:59:55 -0700 | [diff] [blame] | 60 | httpGet: |
Kiran Kamineni | 3964872 | 2018-03-21 14:58:11 -0700 | [diff] [blame] | 61 | port: {{ .Values.service.internalPort }} |
Kiran Kamineni | c808c9a | 2018-05-14 16:59:55 -0700 | [diff] [blame] | 62 | scheme: HTTPS |
| 63 | path: /v1/sms/quorum/status |
Kiran Kamineni | 3964872 | 2018-03-21 14:58:11 -0700 | [diff] [blame] | 64 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 65 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 66 | {{ end -}} |
| 67 | readinessProbe: |
Kiran Kamineni | c808c9a | 2018-05-14 16:59:55 -0700 | [diff] [blame] | 68 | httpGet: |
Kiran Kamineni | 3964872 | 2018-03-21 14:58:11 -0700 | [diff] [blame] | 69 | port: {{ .Values.service.internalPort }} |
Kiran Kamineni | c808c9a | 2018-05-14 16:59:55 -0700 | [diff] [blame] | 70 | scheme: HTTPS |
| 71 | path: /v1/sms/quorum/status |
Kiran Kamineni | 3964872 | 2018-03-21 14:58:11 -0700 | [diff] [blame] | 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 |
Kiran Kamineni | e4e81e7 | 2018-04-09 10:14:32 -0700 | [diff] [blame] | 81 | - mountPath: /sms/auth |
| 82 | name: {{ include "common.fullname" . }}-auth |
Kiran Kamineni | 3964872 | 2018-03-21 14:58:11 -0700 | [diff] [blame] | 83 | resources: |
dsingh.278 | 64a34bf | 2018-09-21 05:11:00 -0400 | [diff] [blame] | 84 | {{ include "common.resources" . | indent 10 }} |
Kiran Kamineni | 3964872 | 2018-03-21 14:58:11 -0700 | [diff] [blame] | 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" . }} |
Kiran Kamineni | e4e81e7 | 2018-04-09 10:14:32 -0700 | [diff] [blame] | 100 | - name: {{ include "common.fullname" . }}-auth |
Sylvain Desbureaux | 7a23575 | 2019-11-28 15:01:45 +0100 | [diff] [blame] | 101 | {{- if .Values.persistence.enabled }} |
Kiran Kamineni | e4e81e7 | 2018-04-09 10:14:32 -0700 | [diff] [blame] | 102 | persistentVolumeClaim: |
| 103 | claimName: {{ include "common.fullname" . }} |
Sylvain Desbureaux | 7a23575 | 2019-11-28 15:01:45 +0100 | [diff] [blame] | 104 | {{- else }} |
| 105 | emptyDir: {} |
| 106 | {{- end }} |
Kiran Kamineni | 3964872 | 2018-03-21 14:58:11 -0700 | [diff] [blame] | 107 | imagePullSecrets: |
| 108 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |