blob: d6c58cd75f1f05a6c93621d41827ebbd8c47d85e [file] [log] [blame]
BorislavGe904ab22018-04-03 16:55:55 +03001#============LICENSE_START========================================================
2# ================================================================================
3# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
Durgpal7ad40692018-08-03 07:28:36 +00004# Modifications Copyright © 2018 Amdocs, Bell Canada
BorislavGe904ab22018-04-03 16:55:55 +03005# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=========================================================
18
19apiVersion: extensions/v1beta1
20kind: Deployment
21metadata:
22 name: {{ include "common.fullname" . }}
23 namespace: {{ include "common.namespace" . }}
24 labels:
25 app: {{ include "common.name" . }}
26 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
27 release: {{ .Release.Name }}
28 heritage: {{ .Release.Service }}
29spec:
30 replicas: 1
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
35 release: {{ .Release.Name }}
36 spec:
Jack Lucasecc9f602019-03-19 11:38:42 -040037 initContainers:
38 - name: {{ include "common.name" . }}-multisite-init
39 image: {{ include "common.repository" . }}/{{ .Values.multisiteInitImage }}
40 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
41 args:
42 - --namespace
43 - {{ include "common.namespace" . }}
44 - --configmap
45 - {{ .Values.multisiteConfigMapName }}
46 restartPolicy: Never
BorislavGe904ab22018-04-03 16:55:55 +030047 containers:
48 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000049 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
BorislavGe904ab22018-04-03 16:55:55 +030050 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
vaibhav_16decdb582fa2018-09-20 12:32:47 +000051 resources:
52{{ include "common.resources" . | indent 12 }}
BorislavGe904ab22018-04-03 16:55:55 +030053 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 eq .Values.liveness.enabled true }}
58 livenessProbe:
59 tcpSocket:
60 port: {{ .Values.service.internalPort }}
61 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
62 periodSeconds: {{ .Values.liveness.periodSeconds }}
Jack Lucasecc9f602019-03-19 11:38:42 -040063 {{ end }}
BorislavGe904ab22018-04-03 16:55:55 +030064 readinessProbe:
Jack Lucasecc9f602019-03-19 11:38:42 -040065 exec:
66 command:
67 - /scripts/readiness-check.sh
BorislavGe904ab22018-04-03 16:55:55 +030068 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
69 periodSeconds: {{ .Values.readiness.periodSeconds }}
70 volumeMounts:
71 - mountPath: /opt/onap/config.txt
72 subPath: config.txt
73 name: {{ include "common.fullname" .}}-config
74 readOnly: true
Jack Lucasecc9f602019-03-19 11:38:42 -040075 - mountPath: /opt/onap/kube
76 name: {{ include "common.fullname" .}}-kubeconfig
77 readOnly: true
BorislavGe904ab22018-04-03 16:55:55 +030078 - mountPath: /secret
79 name: dcae-token
80 readOnly: true
81 - mountPath: /sys/fs/cgroup
82 name: {{ include "common.fullname" . }}-cgroup
83 readOnly: true
84 - mountPath: /etc/localtime
85 name: localtime
86 readOnly: true
Jack Lucascec10b42018-12-04 15:10:28 -050087 - mountPath: /cfy-persist
88 name: cm-persistent
BorislavGe904ab22018-04-03 16:55:55 +030089 securityContext:
90 privileged: True
BorislavGe904ab22018-04-03 16:55:55 +030091 volumes:
92 - name: {{ include "common.fullname" . }}-config
93 configMap:
94 name: {{ include "common.fullname" . }}-configmap
Jack Lucasecc9f602019-03-19 11:38:42 -040095 - name: {{ include "common.fullname" .}}-kubeconfig
96 configMap:
97 name: {{ .Values.multisiteConfigMapName }}
BorislavGe904ab22018-04-03 16:55:55 +030098 - name: dcae-token
99 secret:
100 secretName: dcae-token
101 - name: {{ include "common.fullname" . }}-cgroup
102 hostPath:
103 path: /sys/fs/cgroup
104 - name: localtime
105 hostPath:
106 path: /etc/localtime
Jack Lucascec10b42018-12-04 15:10:28 -0500107 - name: cm-persistent
108 persistentVolumeClaim:
109 claimName: {{ include "common.fullname" . }}-data
BorislavGe904ab22018-04-03 16:55:55 +0300110 imagePullSecrets:
111 - name: "{{ include "common.namespace" . }}-docker-registry-key"