BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 1 | #============LICENSE_START======================================================== |
| 2 | # ================================================================================ |
| 3 | # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. |
Durgpal | 7ad4069 | 2018-08-03 07:28:36 +0000 | [diff] [blame] | 4 | # Modifications Copyright © 2018 Amdocs, Bell Canada |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 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 |
| 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 | |
| 19 | apiVersion: extensions/v1beta1 |
| 20 | kind: Deployment |
| 21 | metadata: |
| 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 }} |
| 29 | spec: |
| 30 | replicas: 1 |
| 31 | template: |
| 32 | metadata: |
| 33 | labels: |
| 34 | app: {{ include "common.name" . }} |
| 35 | release: {{ .Release.Name }} |
| 36 | spec: |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame^] | 37 | 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 |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 47 | containers: |
| 48 | - name: {{ include "common.name" . }} |
BorislavG | df11cd5 | 2018-05-06 12:55:20 +0000 | [diff] [blame] | 49 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 50 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
vaibhav_16dec | db582fa | 2018-09-20 12:32:47 +0000 | [diff] [blame] | 51 | resources: |
| 52 | {{ include "common.resources" . | indent 12 }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 53 | 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 Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame^] | 63 | {{ end }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 64 | readinessProbe: |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame^] | 65 | exec: |
| 66 | command: |
| 67 | - /scripts/readiness-check.sh |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 68 | 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 Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame^] | 75 | - mountPath: /opt/onap/kube |
| 76 | name: {{ include "common.fullname" .}}-kubeconfig |
| 77 | readOnly: true |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 78 | - 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 Lucas | cec10b4 | 2018-12-04 15:10:28 -0500 | [diff] [blame] | 87 | - mountPath: /cfy-persist |
| 88 | name: cm-persistent |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 89 | securityContext: |
| 90 | privileged: True |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 91 | volumes: |
| 92 | - name: {{ include "common.fullname" . }}-config |
| 93 | configMap: |
| 94 | name: {{ include "common.fullname" . }}-configmap |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame^] | 95 | - name: {{ include "common.fullname" .}}-kubeconfig |
| 96 | configMap: |
| 97 | name: {{ .Values.multisiteConfigMapName }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 98 | - 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 Lucas | cec10b4 | 2018-12-04 15:10:28 -0500 | [diff] [blame] | 107 | - name: cm-persistent |
| 108 | persistentVolumeClaim: |
| 109 | claimName: {{ include "common.fullname" . }}-data |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 110 | imagePullSecrets: |
| 111 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |