################################################################################ # Copyright (c) 2019 AT&T Intellectual Property. # # Copyright (c) 2019 Nokia. # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # # You may obtain a copy of the License at # # # # http://www.apache.org/licenses/LICENSE-2.0 # # # # Unless required by applicable law or agreed to in writing, software # # distributed under the License is distributed on an "AS IS" BASIS, # # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # # See the License for the specific language governing permissions and # # limitations under the License. # ################################################################################' apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "ricxapp.fullname" . }} labels: app: {{ include "ricxapp.namespace" . }}-{{ include "ricxapp.name" . }} chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} spec: replicas: {{ .Values.ricxapp.replicaCount }} selector: matchLabels: app: {{ include "ricxapp.namespace" . }}-{{ include "ricxapp.name" . }} release: {{ .Release.Name }} template: metadata: labels: app: {{ include "ricxapp.namespace" . }}-{{ include "ricxapp.name" . }} release: {{ .Release.Name }} spec: hostname: {{ include "ricxapp.name" . }} imagePullSecrets: - name: {{ include "ricxapp.imagepullsecret" . }} containers: - name: {{ include "ricxapp.containername" . }} image: "{{ .Values.ricxapp.image.repository }}/{{ .Values.ricxapp.image.name }}:{{ .Values.ricxapp.image.tag }}" imagePullPolicy: {{ .Values.ricxapp.image.pullPolicy }} ports: - name: http containerPort: {{ .Values.ricxapp.service.http.containerPort }} protocol: TCP - name: rmrRoute containerPort: {{ .Values.ricxapp.service.rmr.route.port }} protocol: TCP - name: rmrData containerPort: {{ .Values.ricxapp.service.rmr.data.port }} protocol: TCP volumeMounts: - name: config-volume mountPath: {{ .Values.ricxapp.appconfig.path }} envFrom: - configMapRef: name: {{ include "ricxapp.configmapname" . }}-appenv livenessProbe: httpGet: path: {{ .Values.ricxapp.probes.healthAliveCheckEndpoint }} port: {{ .Values.ricxapp.service.http.containerPort }} initialDelaySeconds: 5 periodSeconds: 15 readinessProbe: httpGet: path: {{ .Values.ricxapp.probes.healthReadyCheckEndpoint }} port: {{ .Values.ricxapp.service.http.containerPort }} initialDelaySeconds: 5 periodSeconds: 15 restartPolicy: Always volumes: - name: config-volume configMap: name: {{ include "ricxapp.configmapname" . }}-appconfig