c56ed8d2b9d9aa15319cdd3f4e15e9c94032fe8d
[oom.git] / kubernetes / policy / components / policy-nexus / templates / deployment.yaml
1 {{/*
2 # Copyright © 2017 Amdocs, Bell Canada
3 # Modifications Copyright © 2018-2020 AT&T Intellectual Property
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 */}}
17
18 apiVersion: apps/v1
19 kind: Deployment
20 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
21 spec:
22   selector: {{- include "common.selectors" . | nindent 4 }}
23   replicas: {{ .Values.replicaCount }}
24   template:
25     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
26     spec:
27       initContainers:
28       - command: ["sh", "-c", "chown -R 200:200 /share"]
29         image: {{ include "repositoryGenerator.image.busybox" . }}
30         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
31         name: {{ include "common.name" . }}-init
32         volumeMounts:
33         - mountPath: /share
34           name: nexus-data
35       containers:
36         - name: {{ include "common.name" . }}
37           image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.image }}
38           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
39           ports: {{ include "common.containerPorts" . | nindent 12  }}
40           {{- if eq .Values.liveness.enabled true }}
41           livenessProbe:
42             tcpSocket:
43               port: {{ .Values.service.internalPort }}
44             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
45             periodSeconds: {{ .Values.liveness.periodSeconds }}
46           {{ end -}}
47           readinessProbe:
48             httpGet:
49               path: {{ .Values.readiness.path }}
50               port: {{ .Values.service.internalPort }}
51             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
52             periodSeconds: {{ .Values.readiness.periodSeconds }}
53           volumeMounts:
54           - mountPath: /etc/localtime
55             name: localtime
56             readOnly: true
57           - mountPath: /sonatype-work
58             name: nexus-data
59           resources:
60 {{- if eq .Values.resources.flavor "large" }}
61 {{ toYaml .Values.resources.large | indent 12 }}
62 {{- else }}
63 {{ toYaml .Values.resources.small | indent 12 }}
64 {{- end -}}
65         {{- if .Values.nodeSelector }}
66         nodeSelector:
67 {{ toYaml .Values.nodeSelector | indent 10 }}
68         {{- end -}}
69         {{- if .Values.affinity }}
70         affinity:
71 {{ toYaml .Values.affinity | indent 10 }}
72         {{- end }}
73       serviceAccountName: {{ include "common.fullname" (dict "suffix" "nothing" "dot" . )}}
74       volumes:
75         - name: localtime
76           hostPath:
77             path: /etc/localtime
78         - name: nexus-data
79         {{- if .Values.persistence.enabled }}
80           persistentVolumeClaim:
81             claimName: {{ include "common.fullname" . }}
82         {{- else }}
83           emptyDir: {}
84         {{- end }}
85       {{- include "common.imagePullSecrets" . | nindent 6 }}