blob: b47d878f254cc9f4bc0f2bb4ff9c0d4925239f92 [file] [log] [blame]
kje371d042018-03-27 15:50:39 +03001# 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
15apiVersion: extensions/v1beta1
16kind: Deployment
17metadata:
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" . }}
25spec:
26 replicas: {{ .Values.replicaCount }}
kje371d042018-03-27 15:50:39 +030027 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +000031 release: {{ .Release.Name }}
kje371d042018-03-27 15:50:39 +030032 spec:
33 initContainers:
34 - command:
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +000035 - /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:
kje371d042018-03-27 15:50:39 +030049 - /root/ready.py
50 args:
51 - --container-name
52 - aaf-cs
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +000053 - --container-name
54 - aaf-locate
kje371d042018-03-27 15:50:39 +030055 env:
56 - name: NAMESPACE
57 valueFrom:
58 fieldRef:
59 apiVersion: v1
60 fieldPath: metadata.namespace
61 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
62 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
63 name: {{ include "common.name" . }}-readiness
64 containers:
65 - env:
66 - name: CASSANDRA_CLUSTER
67 value: cassandra_container
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +000068 name: {{ include "common.name" . }}
Kiran Kaminenicb382382018-03-21 14:58:11 -070069 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
kje371d042018-03-27 15:50:39 +030070 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +000071 command: ["/bin/bash","-c"," ln -s /opt/app/osaaf/data /data;/opt/app/aaf/hello/bin/hello >> /opt/app/osaaf/logs/hello/stdout`date -I` 2>> /opt/app/osaaf/logs/hello/stderr`date -I`"]
kje371d042018-03-27 15:50:39 +030072 volumeMounts:
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +000073 - mountPath: /opt/app/osaaf
74 name: aaf-persistent-vol
75 - mountPath: /etc/localtime
76 name: localtime
77 readOnly: true
kje371d042018-03-27 15:50:39 +030078 # disable liveness probe when breakpoints set in debugger
79 # so K8s doesn't restart unresponsive container
80 {{- if eq .Values.liveness.enabled true }}
81 livenessProbe:
82 tcpSocket:
83 port: {{ .Values.service.internalPort }}
84 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
85 periodSeconds: {{ .Values.liveness.periodSeconds }}
86 {{ end -}}
87 readinessProbe:
88 tcpSocket:
89 port: {{ .Values.service.internalPort }}
90 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
91 periodSeconds: {{ .Values.readiness.periodSeconds }}
92 resources:
93{{ toYaml .Values.resources | indent 12 }}
94 {{- if .Values.nodeSelector }}
95 nodeSelector:
96{{ toYaml .Values.nodeSelector | indent 10 }}
97 {{- end -}}
98 {{- if .Values.affinity }}
99 affinity:
100{{ toYaml .Values.affinity | indent 10 }}
101 {{- end }}
kje371d042018-03-27 15:50:39 +0300102 volumes:
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +0000103 - name: localtime
104 hostPath:
105 path: /etc/localtime
106 - name: aaf-persistent-vol
107 {{- if .Values.global.persistence.enabled }}
108 persistentVolumeClaim:
109 claimName: {{ .Release.Name }}-aaf-pvc
110 {{- else }}
111 emptyDir: {}
112 {{- end }}
kje371d042018-03-27 15:50:39 +0300113 imagePullSecrets:
114 - name: "{{ include "common.namespace" . }}-docker-registry-key"