73ac78b0b17ed9f4dd37f3aadbcf1f6b993a83bc
[oom.git] / kubernetes / contrib / charts / netbox / charts / netbox-nginx / templates / deployment.yaml
1 {{/*
2 # Copyright © 2018 Amdocs, 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: extensions/v1beta1
18 kind: Deployment
19 metadata:
20   name: {{ include "common.fullname" . }}
21   namespace: {{ include "common.namespace" . }}
22   labels:
23     app: {{ include "common.name" . }}
24     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25     release: {{ .Release.Name }}
26     heritage: {{ .Release.Service }}
27 spec:
28   replicas: {{ .Values.replicaCount }}
29   template:
30     metadata:
31       labels:
32         app: {{ include "common.name" . }}
33         release: {{ .Release.Name }}
34     spec:
35       containers:
36       - name: {{ include "common.name" . }}
37         image: {{ .Values.global.repository | default .Values.repository }}/{{ .Values.image }}
38         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
39         command: ["nginx"]
40         args: ["-c", "/etc/netbox-nginx/nginx.conf","-g", "daemon off;"]
41         ports:
42         - containerPort: {{ .Values.service.internalPort }}
43         volumeMounts:
44         - mountPath: /etc/localtime
45           name: localtime
46           readOnly: true
47         - name: {{ include "common.fullname" . }}
48           mountPath: /opt/netbox/netbox/static
49         - name: {{ include "common.fullname" . }}-config
50           mountPath: /etc/netbox-nginx
51         resources:
52 {{ toYaml .Values.resources | indent 12 }}
53       {{- if .Values.nodeSelector }}
54       nodeSelector:
55 {{ toYaml .Values.nodeSelector | indent 10 }}
56       {{- end -}}
57       {{- if .Values.affinity }}
58       affinity:
59 {{ toYaml .Values.affinity | indent 10 }}
60       {{- end }}
61       volumes:
62         - name: localtime
63           hostPath:
64             path: /etc/localtime
65         - name: {{ include "common.fullname" . }}-config
66           configMap:
67             name: {{ include "common.fullname" . }}-config-configmap
68         - name: {{ include "common.fullname" . }}
69           persistentVolumeClaim:
70             claimName: {{ .Release.Name }}-{{ .Values.persistence.staticPvName }}
71       imagePullSecrets:
72       - name: "{{ include "common.namespace" . }}-docker-registry-key"