1 #============LICENSE_START========================================================
2 # ================================================================================
3 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4 # Modifications Copyright © 2018 Amdocs, Bell Canada
5 # ================================================================================
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
10 # http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
19 apiVersion: extensions/v1beta1
22 name: {{ include "common.fullname" . }}
23 namespace: {{ include "common.namespace" . }}
25 app: {{ include "common.name" . }}
26 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
27 release: {{ .Release.Name }}
28 heritage: {{ .Release.Service }}
34 app: {{ include "common.name" . }}
35 release: {{ .Release.Name }}
38 - name: {{ include "common.name" . }}-multisite-init
39 image: {{ include "common.repository" . }}/{{ .Values.multisiteInitImage }}
40 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
43 - {{ include "common.namespace" . }}
45 - {{ .Values.multisiteConfigMapName }}
48 - name: {{ include "common.name" . }}
49 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
50 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 {{ include "common.resources" . | indent 12 }}
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 }}
60 port: {{ .Values.service.internalPort }}
61 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
62 periodSeconds: {{ .Values.liveness.periodSeconds }}
67 - /scripts/readiness-check.sh
68 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
69 periodSeconds: {{ .Values.readiness.periodSeconds }}
71 - mountPath: /opt/onap/config.txt
73 name: {{ include "common.fullname" .}}-config
75 - mountPath: /opt/onap/kube
76 name: {{ include "common.fullname" .}}-kubeconfig
81 - mountPath: /sys/fs/cgroup
82 name: {{ include "common.fullname" . }}-cgroup
84 - mountPath: /etc/localtime
87 - mountPath: /cfy-persist
92 - name: {{ include "common.fullname" . }}-config
94 name: {{ include "common.fullname" . }}-configmap
95 - name: {{ include "common.fullname" .}}-kubeconfig
97 name: {{ .Values.multisiteConfigMapName }}
100 secretName: dcae-token
101 - name: {{ include "common.fullname" . }}-cgroup
107 - name: cm-persistent
108 persistentVolumeClaim:
109 claimName: {{ include "common.fullname" . }}-data
111 - name: "{{ include "common.namespace" . }}-docker-registry-key"