Update repo URL domain name
[it/dep.git] / ric-platform / 50-RIC-Platform / helm / appmgr / templates / deployment.yaml
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
3 #   Copyright (c) 2019 Nokia.                                                  #
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:
21   name: {{ include "appmgr.fullname" . }}
22   namespace: {{ include "common.namespace" . }}
23   labels:
24     app: {{ include "common.namespace" . }}-{{ include "common.name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ .Release.Name }}
27     heritage: {{ .Release.Service }}
28 spec:
29   replicas: {{ .Values.replicaCount }}
30   selector:
31     matchLabels:
32       app: {{ include "common.namespace" . }}-{{ include "common.name" . }}
33       release: {{ .Release.Name }}
34       #app.kubernetes.io/name: {{ include "appmgr.name" . }}
35       #app.kubernetes.io/instance: {{ .Release.Name }}
36   template:
37     metadata:
38       labels:
39         app: {{ include "common.namespace" . }}-{{ include "common.name" . }}
40         release: {{ .Release.Name }}
41     spec:
42       hostname: {{ .Chart.Name }}
43       imagePullSecrets:
44         - name: {{ .Values.image.repositoryCred }}
45       containers:
46         - name: {{ include "common.namespace" . }}-{{ include "common.name" . }}
47           image: {{ include "common.repository" . }}/{{ .Values.image.name }}:{{ .Values.image.tag }}
48           imagePullPolicy: {{ include "common.pullPolicy" . }}
49           ports:
50             - name: http
51               containerPort: {{ .Values.containerPort }}
52               protocol: TCP
53           volumeMounts:
54             - name: config-volume
55               mountPath: {{ .Values.appconfigpath }}
56             - name: secret-volume
57               mountPath: {{ .Values.appsecretpath }}
58             - name: cert-volume
59               mountPath: {{ .Values.appcertpath }}
60           envFrom:
61             - configMapRef:
62                 name: {{ include "appmgr.fullname" . }}-appenv
63           livenessProbe:
64             #exec:
65             #  command:
66             #    - /bin/bash
67             #    - -c
68             #    - ps -ef | grep {{ .Values.livenessprocessname }}| grep -v "grep"
69             #initialDelaySeconds: 120
70             #periodSeconds: 30
71           readinessProbe:
72           #  httpGet:
73           #    path: /
74           #    port: http
75           restartPolicy: Always
76           resources:
77             {{- toYaml .Values.resources | nindent 12 }}
78           securityContext:
79             # ubuntu
80             #runAsUser: 1000
81             #allowPrivilegeEscalation: false
82       {{- with .Values.nodeSelector }}
83       nodeSelector:
84         {{- toYaml . | nindent 8 }}
85       {{- end }}
86     {{- with .Values.affinity }}
87       affinity:
88         {{- toYaml . | nindent 8 }}
89     {{- end }}
90     {{- with .Values.tolerations }}
91       tolerations:
92         {{- toYaml . | nindent 8 }}
93     {{- end }}
94
95       volumes:
96         - name: config-volume
97           configMap:
98             name: {{ include "appmgr.fullname" . }}-appconfig
99         - name: secret-volume
100           secret:
101             secretName: {{ include "common.helmrepositorycred" . }}
102         - name: cert-volume
103           configMap:
104             name: {{ include "common.helmrepositorycert" . }}