kj | e371d04 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
| 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 | labels: |
| 19 | app: {{ include "common.name" . }} |
| 20 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 21 | release: {{ .Release.Name }} |
| 22 | heritage: {{ .Release.Service }} |
| 23 | name: {{ include "common.fullname" . }} |
| 24 | namespace: {{ include "common.namespace" . }} |
| 25 | spec: |
| 26 | replicas: {{ .Values.replicaCount }} |
kj | e371d04 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 27 | template: |
| 28 | metadata: |
| 29 | labels: |
| 30 | app: {{ include "common.name" . }} |
Mahendra Raghuwanshi | f92ec30 | 2018-05-03 12:15:03 +0000 | [diff] [blame^] | 31 | release: {{ .Release.Name }} |
kj | e371d04 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 32 | spec: |
| 33 | initContainers: |
| 34 | - command: |
Mahendra Raghuwanshi | f92ec30 | 2018-05-03 12:15:03 +0000 | [diff] [blame^] | 35 | - /root/job_complete.py |
| 36 | args: |
| 37 | - -j |
| 38 | - {{ .Release.Name }}-aaf-create-config |
| 39 | env: |
| 40 | - name: NAMESPACE |
| 41 | valueFrom: |
| 42 | fieldRef: |
| 43 | apiVersion: v1 |
| 44 | fieldPath: metadata.namespace |
| 45 | image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" |
| 46 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 47 | name: {{ include "common.name" . }}-job-complete |
| 48 | - command: |
kj | e371d04 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 49 | - /root/ready.py |
| 50 | args: |
| 51 | - --container-name |
| 52 | - aaf-cs |
| 53 | env: |
| 54 | - name: NAMESPACE |
| 55 | valueFrom: |
| 56 | fieldRef: |
| 57 | apiVersion: v1 |
| 58 | fieldPath: metadata.namespace |
| 59 | image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" |
| 60 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 61 | name: {{ include "common.name" . }}-readiness |
| 62 | containers: |
| 63 | - env: |
| 64 | - name: CASSANDRA_CLUSTER |
| 65 | value: cassandra_container |
Mahendra Raghuwanshi | f92ec30 | 2018-05-03 12:15:03 +0000 | [diff] [blame^] | 66 | name: {{ include "common.name" . }} |
Kiran Kamineni | cb38238 | 2018-03-21 14:58:11 -0700 | [diff] [blame] | 67 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
kj | e371d04 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 68 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
Mahendra Raghuwanshi | f92ec30 | 2018-05-03 12:15:03 +0000 | [diff] [blame^] | 69 | command: ["/bin/bash","-c"," ln -s /opt/app/osaaf/data /data;/opt/app/aaf/locate/bin/locate >> /opt/app/osaaf/logs/locate/stdout`date -I` 2>> /opt/app/osaaf/logs/locate/stderr`date -I`"] |
kj | e371d04 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 70 | volumeMounts: |
Mahendra Raghuwanshi | f92ec30 | 2018-05-03 12:15:03 +0000 | [diff] [blame^] | 71 | - mountPath: /opt/app/osaaf |
| 72 | name: aaf-persistent-vol |
| 73 | - mountPath: /etc/localtime |
| 74 | name: localtime |
| 75 | readOnly: true |
kj | e371d04 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 76 | # disable liveness probe when breakpoints set in debugger |
| 77 | # so K8s doesn't restart unresponsive container |
| 78 | {{- if eq .Values.liveness.enabled true }} |
| 79 | livenessProbe: |
| 80 | tcpSocket: |
| 81 | port: {{ .Values.service.internalPort }} |
| 82 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 83 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 84 | {{ end -}} |
| 85 | readinessProbe: |
| 86 | tcpSocket: |
| 87 | port: {{ .Values.service.internalPort }} |
| 88 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 89 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 90 | resources: |
| 91 | {{ toYaml .Values.resources | indent 12 }} |
| 92 | {{- if .Values.nodeSelector }} |
| 93 | nodeSelector: |
| 94 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 95 | {{- end -}} |
| 96 | {{- if .Values.affinity }} |
| 97 | affinity: |
| 98 | {{ toYaml .Values.affinity | indent 10 }} |
| 99 | {{- end }} |
kj | e371d04 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 100 | volumes: |
Mahendra Raghuwanshi | f92ec30 | 2018-05-03 12:15:03 +0000 | [diff] [blame^] | 101 | - name: localtime |
| 102 | hostPath: |
| 103 | path: /etc/localtime |
| 104 | - name: aaf-persistent-vol |
| 105 | {{- if .Values.global.persistence.enabled }} |
| 106 | persistentVolumeClaim: |
| 107 | claimName: {{ .Release.Name }}-aaf-pvc |
| 108 | {{- else }} |
| 109 | emptyDir: {} |
| 110 | {{- end }} |
kj | e371d04 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 111 | imagePullSecrets: |
| 112 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |