1 # Copyright (c) 2019 AT&T Intellectual Property.
2 # Copyright (c) 2019 Nokia.
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
8 # http://www.apache.org/licenses/LICENSE-2.0
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 }}
21 name: {{ include "common.deploymentname.vespamgr" . }}
22 namespace: {{ include "common.namespace.platform" . }}
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 }}
29 replicas: {{ .Values.vespamgr.replicaCount }}
32 app: {{ include "common.namespace.platform" . }}-{{ include "common.name.vespamgr" . }}
33 release: {{ .Release.Name }}
36 {{- if .Values.vespamgr.annotations }}
38 {{- .Values.vespamgr.annotations | nindent 8 -}}
41 app: {{ include "common.namespace.platform" . }}-{{ include "common.name.vespamgr" . }}
42 release: {{ .Release.Name }}
44 hostname: {{ include "common.name.vespamgr" . }}
46 - name: {{ include "common.dockerregistry.credential" $imagectx }}
47 {{- with .Values.vespamgr.nodeselector }}
48 nodeSelector: {{ toYaml . | trim | nindent 8 -}}
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 }}
56 containerPort: {{ include "common.serviceport.vespamgr.http" . }}
60 name: {{ include "common.configmapname.vespamgr" . }}
64 - name: VESMGR_APPMGRDOMAIN
65 value: {{ include "common.servicename.appmgr.http" . }}
70 initialDelaySeconds: 30