Fix config error for VESPA
[ric-plt/ric-dep.git] / helm / vespamgr / templates / deployment.yaml
1 #   Copyright (c) 2019 AT&T Intellectual Property.
2 #   Copyright (c) 2019 Nokia.
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 {{- $imagectx := dict "ctx" . "defaultregistry" .Values.vespamgr.image.registry }}
16 {{- $pullpolicyctx := dict "ctx" . "defaultpullpolicy" .Values.vespamgr.imagePullPolicy }}
17
18 apiVersion: apps/v1
19 kind: Deployment
20 metadata:
21   name: {{ include "common.deploymentname.vespamgr" . }}
22   namespace: {{ include "common.namespace.platform" . }}
23   labels:
24     app: {{ include "common.namespace.platform" . }}-{{ include "common.name.vespamgr" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ .Release.Name }}
27     heritage: {{ .Release.Service }}
28 spec:
29   replicas: {{ .Values.vespamgr.replicaCount }}
30   selector:
31     matchLabels:
32       app: {{ include "common.namespace.platform" . }}-{{ include "common.name.vespamgr" . }}
33       release: {{ .Release.Name }}
34   template:
35     metadata:
36       {{- if .Values.vespamgr.annotations }}
37       annotations:
38         {{- .Values.vespamgr.annotations | nindent 8 -}}
39       {{ end }}
40       labels:
41         app: {{ include "common.namespace.platform" . }}-{{ include "common.name.vespamgr" . }}
42         release: {{ .Release.Name }}
43     spec:
44       hostname: {{ include "common.name.vespamgr" . }}
45       imagePullSecrets:
46         - name: {{ include "common.dockerregistry.credential" $imagectx }}
47       {{- with .Values.vespamgr.nodeselector }}
48       nodeSelector: {{ toYaml . | trim | nindent 8 -}}
49       {{- end }}
50       containers:
51         - name: {{ include "common.containername.vespamgr" . }}
52           image: {{ include "common.dockerregistry.url" $imagectx }}/{{ .Values.vespamgr.image.name }}:{{ .Values.vespamgr.image.tag }}
53           imagePullPolicy: {{ include "common.dockerregistry.pullpolicy" $pullpolicyctx }}
54           ports:
55             - name: http
56               containerPort: {{ include "common.serviceport.vespamgr.http" . }}
57               protocol: TCP
58           envFrom:
59             - configMapRef:
60                 name: {{ include "common.configmapname.vespamgr" . }}
61             - secretRef:
62                 name: vespa-secrets
63           env:
64             - name: VESMGR_APPMGRDOMAIN
65               value: {{ include "common.servicename.appmgr.http" . }}
66           livenessProbe:
67             httpGet:
68               path: /supervision
69               port: 8080
70             initialDelaySeconds: 30
71             periodSeconds: 60
72             timeoutSeconds: 20
73