[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / contrib / components / netbox / charts / netbox-app / templates / job.yaml
1 # Copyright © 2018 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" . }}-provisioning
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}-job
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ include "common.release" . }}
24     heritage: {{ .Release.Service }}
25 spec:
26   backoffLimit: 5
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}-provisioning-job
31         release: {{ include "common.release" . }}
32     spec:
33       restartPolicy: Never
34       initContainers:
35       - name: {{ include "common.name" . }}-init-readiness
36         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
37         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
38         command:
39         - /app/ready.py
40         args:
41         - --container-name
42         - netbox-app
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49       containers:
50       - name: {{ include "common.name" . }}-provisioning-job
51         image: "{{ .Values.global.dockerHubRepository }}/{{ .Values.global.curlImage }}"
52         volumeMounts:
53         - name: {{ include "common.fullname" . }}-provisioning
54           mountPath: /tmp
55         command:
56         - /bin/sh
57         - ./tmp/provision.sh
58       volumes:
59         - name: {{ include "common.fullname" . }}-provisioning
60           configMap:
61             name: {{ include "common.fullname" . }}-provisioning-configmap
62             defaultMode: 0755
63       imagePullSecrets:
64       - name: "{{ include "common.namespace" . }}-docker-registry-key"
65       restartPolicy: Never