Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, AT&T, 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: batch/v1 |
| 16 | kind: Job |
| 17 | metadata: |
| 18 | name: {{ include "common.fullname" . }}-cassandra-init |
| 19 | namespace: {{ include "common.namespace" . }} |
| 20 | labels: |
| 21 | app: {{ include "common.name" . }}-job |
| 22 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 23 | release: {{ .Release.Name }} |
| 24 | heritage: {{ .Release.Service }} |
| 25 | spec: |
Mike Elliott | 6482f50 | 2018-04-30 15:02:43 -0400 | [diff] [blame] | 26 | backoffLimit: 20 |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 27 | template: |
| 28 | metadata: |
| 29 | labels: |
| 30 | app: {{ include "common.name" . }}-job |
| 31 | release: {{ .Release.Name }} |
| 32 | spec: |
| 33 | restartPolicy: Never |
| 34 | initContainers: |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 35 | - name: {{ include "common.name" . }}-job-completion |
| 36 | image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" |
| 37 | imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}" |
| 38 | command: |
| 39 | - /root/job_complete.py |
| 40 | args: |
| 41 | - --job-name |
| 42 | - {{ .Release.Name }}-sdc-cs-config-cassandra |
| 43 | env: |
| 44 | - name: NAMESPACE |
| 45 | valueFrom: |
| 46 | fieldRef: |
| 47 | apiVersion: v1 |
| 48 | fieldPath: metadata.namespace |
| 49 | containers: |
| 50 | - name: {{ include "common.name" . }}-job |
| 51 | image: "{{ include "common.repository" . }}/{{ .Values.onboardingInitImage }}" |
| 52 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 53 | volumeMounts: |
| 54 | - name: {{ include "common.fullname" . }}-environments |
| 55 | mountPath: /root/chef-solo/environments/ |
| 56 | - name: {{ include "common.fullname" . }}-data |
| 57 | mountPath: /var/lib/cassandra/ |
| 58 | env: |
| 59 | - name: ENVNAME |
| 60 | value: {{ .Values.global.env.name }} |
| 61 | - name: HOST_IP |
| 62 | valueFrom: |
| 63 | fieldRef: |
| 64 | fieldPath: status.podIP |
| 65 | - name: SDC_USER |
| 66 | valueFrom: |
| 67 | secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_user} |
| 68 | - name: SDC_PASSWORD |
| 69 | valueFrom: |
| 70 | secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_password} |
| 71 | - name: CS_PASSWORD |
| 72 | valueFrom: |
| 73 | secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: cs_password} |
| 74 | - name: CS_HOST_IP |
| 75 | value: "sdc-cs" |
| 76 | volumes: |
| 77 | - name: {{ include "common.fullname" . }}-environments |
| 78 | configMap: |
| 79 | name: {{ .Release.Name }}-sdc-environments-configmap |
| 80 | defaultMode: 0755 |
| 81 | - name: {{ include "common.fullname" . }}-data |
| 82 | {{- if .Values.persistence.enabled }} |
| 83 | persistentVolumeClaim: |
| 84 | claimName: {{ include "common.fullname" . }} |
| 85 | {{- else }} |
| 86 | emptyDir: {} |
| 87 | {{- end }} |
| 88 | imagePullSecrets: |
| 89 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
| 90 | restartPolicy: Never |