Merge "[UUI] Service Mesh Compliance for UUI"
[oom.git] / kubernetes / contrib / components / netbox / components / netbox-app / templates / job.yaml
1 {{/*
2 # Copyright © 2018 Bell Canada
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 */}}
16
17 apiVersion: batch/v1
18 kind: Job
19 metadata:
20   name: {{ include "common.fullname" . }}-provisioning
21   namespace: {{ include "common.namespace" . }}
22   labels:
23     app: {{ include "common.name" . }}-job
24     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25     release: {{ include "common.release" . }}
26     heritage: {{ .Release.Service }}
27 spec:
28   backoffLimit: 5
29   template:
30     metadata:
31       labels:
32         app: {{ include "common.name" . }}-provisioning-job
33         release: {{ include "common.release" . }}
34     spec:
35       restartPolicy: Never
36       initContainers:
37       - name: {{ include "common.name" . }}-init-readiness
38         image: {{ include "repositoryGenerator.image.readiness" . }}
39         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
40         command:
41         - /app/ready.py
42         args:
43         - --container-name
44         - netbox-app
45         env:
46         - name: NAMESPACE
47           valueFrom:
48             fieldRef:
49               apiVersion: v1
50               fieldPath: metadata.namespace
51       containers:
52       - name: {{ include "common.name" . }}-provisioning-job
53         image: {{ include "repositoryGenerator.image.curl" . }}
54         volumeMounts:
55         - name: {{ include "common.fullname" . }}-provisioning
56           mountPath: /tmp
57         command:
58         - /bin/sh
59         - ./tmp/provision.sh
60       volumes:
61         - name: {{ include "common.fullname" . }}-provisioning
62           configMap:
63             name: {{ include "common.fullname" . }}-provisioning-configmap
64             defaultMode: 0755
65       imagePullSecrets:
66       - name: "{{ include "common.namespace" . }}-docker-registry-key"
67       restartPolicy: Never