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 "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 27 | release: {{ include "common.release" . }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 28 | heritage: {{ .Release.Service }} |
| 29 | spec: |
| 30 | replicas: 1 |
| 31 | template: |
| 32 | metadata: |
| 33 | labels: |
| 34 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 35 | release: {{ include "common.release" . }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 36 | spec: |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 37 | # host alias allows local 'cfy' command to use https and match |
| 38 | # the host name in the certificate |
| 39 | hostAliases: |
| 40 | - ip: "127.0.0.1" |
| 41 | hostnames: |
| 42 | - "dcae-cloudify-manager" |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 43 | initContainers: |
| 44 | - name: {{ include "common.name" . }}-multisite-init |
| 45 | image: {{ include "common.repository" . }}/{{ .Values.multisiteInitImage }} |
| 46 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 47 | args: |
| 48 | - --namespace |
| 49 | - {{ include "common.namespace" . }} |
| 50 | - --configmap |
| 51 | - {{ .Values.multisiteConfigMapName }} |
| 52 | restartPolicy: Never |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 53 | - name: init-tls |
| 54 | env: |
| 55 | - name: POD_IP |
| 56 | valueFrom: |
| 57 | fieldRef: |
| 58 | apiVersion: v1 |
| 59 | fieldPath: status.podIP |
Jack Lucas | c70bc7e | 2019-09-23 09:02:31 -0400 | [diff] [blame] | 60 | - name: aaf_locator_fqdn |
| 61 | value: dcae |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 62 | image: {{ .Values.global.tlsRepository }}/{{ .Values.global.tlsImage }} |
| 63 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 64 | resources: {} |
| 65 | volumeMounts: |
Jack Lucas | c70bc7e | 2019-09-23 09:02:31 -0400 | [diff] [blame] | 66 | - mountPath: /opt/app/osaaf |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 67 | name: tls-info |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 68 | containers: |
| 69 | - name: {{ include "common.name" . }} |
BorislavG | df11cd5 | 2018-05-06 12:55:20 +0000 | [diff] [blame] | 70 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 71 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 72 | env: |
| 73 | - name: REQUESTS_CA_BUNDLE |
| 74 | value: "/opt/onap/certs/cacert.pem" |
vaibhav_16dec | db582fa | 2018-09-20 12:32:47 +0000 | [diff] [blame] | 75 | resources: |
| 76 | {{ include "common.resources" . | indent 12 }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 77 | ports: |
| 78 | - containerPort: {{ .Values.service.internalPort }} |
| 79 | # disable liveness probe when breakpoints set in debugger |
| 80 | # so K8s doesn't restart unresponsive container |
| 81 | {{- if eq .Values.liveness.enabled true }} |
| 82 | livenessProbe: |
| 83 | tcpSocket: |
| 84 | port: {{ .Values.service.internalPort }} |
| 85 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 86 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 87 | {{ end }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 88 | readinessProbe: |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 89 | exec: |
| 90 | command: |
| 91 | - /scripts/readiness-check.sh |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 92 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 93 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 94 | volumeMounts: |
| 95 | - mountPath: /opt/onap/config.txt |
| 96 | subPath: config.txt |
| 97 | name: {{ include "common.fullname" .}}-config |
| 98 | readOnly: true |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 99 | - mountPath: /opt/onap/kube |
| 100 | name: {{ include "common.fullname" .}}-kubeconfig |
| 101 | readOnly: true |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 102 | - mountPath: /secret |
| 103 | name: dcae-token |
| 104 | readOnly: true |
| 105 | - mountPath: /sys/fs/cgroup |
| 106 | name: {{ include "common.fullname" . }}-cgroup |
| 107 | readOnly: true |
| 108 | - mountPath: /etc/localtime |
| 109 | name: localtime |
| 110 | readOnly: true |
Jack Lucas | cec10b4 | 2018-12-04 15:10:28 -0500 | [diff] [blame] | 111 | - mountPath: /cfy-persist |
| 112 | name: cm-persistent |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 113 | - mountPath: /opt/onap/certs |
| 114 | name: tls-info |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 115 | securityContext: |
| 116 | privileged: True |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 117 | volumes: |
| 118 | - name: {{ include "common.fullname" . }}-config |
| 119 | configMap: |
| 120 | name: {{ include "common.fullname" . }}-configmap |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 121 | - name: {{ include "common.fullname" .}}-kubeconfig |
| 122 | configMap: |
| 123 | name: {{ .Values.multisiteConfigMapName }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 124 | - name: dcae-token |
| 125 | secret: |
| 126 | secretName: dcae-token |
| 127 | - name: {{ include "common.fullname" . }}-cgroup |
| 128 | hostPath: |
| 129 | path: /sys/fs/cgroup |
| 130 | - name: localtime |
| 131 | hostPath: |
| 132 | path: /etc/localtime |
Jack Lucas | cec10b4 | 2018-12-04 15:10:28 -0500 | [diff] [blame] | 133 | - name: cm-persistent |
Sylvain Desbureaux | 03c36f9 | 2019-11-29 15:22:29 +0100 | [diff] [blame] | 134 | {{- if .Values.persistence.enabled }} |
Jack Lucas | cec10b4 | 2018-12-04 15:10:28 -0500 | [diff] [blame] | 135 | persistentVolumeClaim: |
| 136 | claimName: {{ include "common.fullname" . }}-data |
Sylvain Desbureaux | 03c36f9 | 2019-11-29 15:22:29 +0100 | [diff] [blame] | 137 | {{- else }} |
| 138 | emptyDir: {} |
| 139 | {{- end }} |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 140 | - emptyDir: {} |
| 141 | name: tls-info |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 142 | imagePullSecrets: |
| 143 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |