Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / helm / starters / onap-app / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, 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: extensions/v1beta1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ include "common.release" . }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ include "common.release" . }}
32     spec:
33       initContainers:
34 #Example init container for dependency checking
35 #      - command:
36 #        - /app/ready.py
37 #        args:
38 #        - --container-name
39 #        - mariadb
40 #        env:
41 #        - name: NAMESPACE
42 #          valueFrom:
43 #            fieldRef:
44 #              apiVersion: v1
45 #              fieldPath: metadata.namespace
46 #        image: {{ include "repositoryGenerator.image.readiness" . }}
47 #        imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
48 #        name: {{ include "common.name" . }}-readiness
49       containers:
50         - name: {{ include "common.name" . }}
51           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
52           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53           ports:
54           - containerPort: {{ .Values.service.internalPort }}
55           # disable liveness probe when breakpoints set in debugger
56           # so K8s doesn't restart unresponsive container
57           {{ if .Values.liveness.enabled }}
58           livenessProbe:
59             tcpSocket:
60               port: {{ .Values.service.internalPort }}
61             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
62             periodSeconds: {{ .Values.liveness.periodSeconds }}
63           {{ end }}
64           readinessProbe:
65             tcpSocket:
66               port: {{ .Values.service.internalPort }}
67             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
68             periodSeconds: {{ .Values.readiness.periodSeconds }}
69           env:
70 #Example environment variable passed to container
71 #            - name: DEBUG_FLAG
72 #              value: {{ .Values.global.debugEnabled | default .Values.debugEnabled | quote }}
73 #Example config file mount into container
74 #          volumeMounts:
75 #          - mountPath: /opt/app/application.properties
76 #            name: {{ include "common.name" . }}-config
77 #            subPath: application.properties
78           resources: {{ include "common.resources" . | nindent 12 }}
79         {{- if .Values.nodeSelector }}
80         nodeSelector:
81 {{ toYaml .Values.nodeSelector | indent 10 }}
82         {{- end -}}
83         {{- if .Values.affinity }}
84         affinity:
85 {{ toYaml .Values.affinity | indent 10 }}
86         {{- end }}
87
88 #Example config file mount into container
89 #      volumes:
90 #        - name: {{ include "common.fullname" . }}-config
91 #          configMap:
92 #            name: {{ include "common.fullname" . }}-configmap
93 #            items:
94 #            - key: application.properties
95 #              path: application.properties
96       {{- include "common.imagePullSecrets" . | nindent 6 }}