BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 1 | #============LICENSE_START======================================================== |
| 2 | # ================================================================================ |
Schmalzried, Terry (ts862m) | 12db789 | 2020-08-21 20:42:33 -0400 | [diff] [blame] | 3 | # Copyright (c) 2018-2020 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 |
Jack Lucas | 089cd9d | 2020-09-30 12:24:20 -0400 | [diff] [blame^] | 5 | # Copyright (c) 2020 J. F. Lucas. All rights reserved. |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 6 | # ================================================================================ |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| 18 | # ============LICENSE_END========================================================= |
| 19 | |
Krzysztof Kuzmicki | aef7007 | 2020-07-24 14:47:43 +0200 | [diff] [blame] | 20 | apiVersion: apps/v1 |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 21 | kind: Deployment |
| 22 | metadata: |
| 23 | name: {{ include "common.fullname" . }} |
| 24 | namespace: {{ include "common.namespace" . }} |
| 25 | labels: |
| 26 | app: {{ include "common.name" . }} |
| 27 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 28 | release: {{ include "common.release" . }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 29 | heritage: {{ .Release.Service }} |
| 30 | spec: |
| 31 | replicas: 1 |
Krzysztof Kuzmicki | aef7007 | 2020-07-24 14:47:43 +0200 | [diff] [blame] | 32 | selector: |
| 33 | matchLabels: |
| 34 | app: {{ include "common.name" . }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 35 | template: |
| 36 | metadata: |
| 37 | labels: |
| 38 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 39 | release: {{ include "common.release" . }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 40 | spec: |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 41 | # host alias allows local 'cfy' command to use https and match |
| 42 | # the host name in the certificate |
| 43 | hostAliases: |
| 44 | - ip: "127.0.0.1" |
| 45 | hostnames: |
| 46 | - "dcae-cloudify-manager" |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 47 | initContainers: |
Jack Lucas | 8c3463e | 2020-06-12 18:36:55 -0400 | [diff] [blame] | 48 | - name: {{ include "common.name" . }}-readiness |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 49 | image: {{ include "common.repository" . }}/{{ .Values.global.readinessImage }} |
Jack Lucas | 8c3463e | 2020-06-12 18:36:55 -0400 | [diff] [blame] | 50 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 51 | command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 52 | - /app/ready.py |
Jack Lucas | 8c3463e | 2020-06-12 18:36:55 -0400 | [diff] [blame] | 53 | args: |
| 54 | - --container-name |
| 55 | - aaf-cm |
| 56 | - "-t" |
| 57 | - "15" |
| 58 | env: |
| 59 | - name: NAMESPACE |
| 60 | valueFrom: |
| 61 | fieldRef: |
| 62 | apiVersion: v1 |
| 63 | fieldPath: metadata.namespace |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 64 | - name: {{ include "common.name" . }}-multisite-init |
| 65 | image: {{ include "common.repository" . }}/{{ .Values.multisiteInitImage }} |
| 66 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 67 | args: |
| 68 | - --namespace |
| 69 | - {{ include "common.namespace" . }} |
| 70 | - --configmap |
| 71 | - {{ .Values.multisiteConfigMapName }} |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 72 | - name: init-tls |
| 73 | env: |
| 74 | - name: POD_IP |
| 75 | valueFrom: |
| 76 | fieldRef: |
| 77 | apiVersion: v1 |
| 78 | fieldPath: status.podIP |
Jack Lucas | c70bc7e | 2019-09-23 09:02:31 -0400 | [diff] [blame] | 79 | - name: aaf_locator_fqdn |
| 80 | value: dcae |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 81 | image: {{ .Values.global.tlsRepository }}/{{ .Values.global.tlsImage }} |
| 82 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 83 | resources: {} |
| 84 | volumeMounts: |
Jack Lucas | c70bc7e | 2019-09-23 09:02:31 -0400 | [diff] [blame] | 85 | - mountPath: /opt/app/osaaf |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 86 | name: tls-info |
Sylvain Desbureaux | cfb7ff9 | 2020-05-06 17:40:20 +0200 | [diff] [blame] | 87 | {{- if .Values.persistence.enabled }} |
| 88 | - name: remove-lost-found |
| 89 | image: "{{ .Values.global.busyboxRepository }}/{{ .Values.global.busyboxImage }}" |
| 90 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 91 | volumeMounts: |
| 92 | - mountPath: /cfy-persist |
| 93 | name: cm-persistent |
| 94 | command: |
| 95 | - /bin/sh |
| 96 | args: |
| 97 | - -c |
| 98 | - "rm -rf '/cfy-persist/lost+found';" |
| 99 | {{- end }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 100 | containers: |
| 101 | - name: {{ include "common.name" . }} |
BorislavG | df11cd5 | 2018-05-06 12:55:20 +0000 | [diff] [blame] | 102 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 103 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 104 | env: |
| 105 | - name: REQUESTS_CA_BUNDLE |
| 106 | value: "/opt/onap/certs/cacert.pem" |
vaibhav_16dec | db582fa | 2018-09-20 12:32:47 +0000 | [diff] [blame] | 107 | resources: |
| 108 | {{ include "common.resources" . | indent 12 }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 109 | ports: |
| 110 | - containerPort: {{ .Values.service.internalPort }} |
| 111 | # disable liveness probe when breakpoints set in debugger |
| 112 | # so K8s doesn't restart unresponsive container |
| 113 | {{- if eq .Values.liveness.enabled true }} |
| 114 | livenessProbe: |
| 115 | tcpSocket: |
| 116 | port: {{ .Values.service.internalPort }} |
| 117 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 118 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
Jack Lucas | 089cd9d | 2020-09-30 12:24:20 -0400 | [diff] [blame^] | 119 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 120 | {{ end }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 121 | readinessProbe: |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 122 | exec: |
| 123 | command: |
| 124 | - /scripts/readiness-check.sh |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 125 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 126 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
Jack Lucas | 089cd9d | 2020-09-30 12:24:20 -0400 | [diff] [blame^] | 127 | timeoutSeconds: {{ .Values.readiness.timeoutSeconds }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 128 | volumeMounts: |
| 129 | - mountPath: /opt/onap/config.txt |
| 130 | subPath: config.txt |
| 131 | name: {{ include "common.fullname" .}}-config |
| 132 | readOnly: true |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 133 | - mountPath: /opt/onap/kube |
| 134 | name: {{ include "common.fullname" .}}-kubeconfig |
| 135 | readOnly: true |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 136 | - mountPath: /secret |
| 137 | name: dcae-token |
| 138 | readOnly: true |
| 139 | - mountPath: /sys/fs/cgroup |
| 140 | name: {{ include "common.fullname" . }}-cgroup |
| 141 | readOnly: true |
| 142 | - mountPath: /etc/localtime |
| 143 | name: localtime |
| 144 | readOnly: true |
Jack Lucas | cec10b4 | 2018-12-04 15:10:28 -0500 | [diff] [blame] | 145 | - mountPath: /cfy-persist |
| 146 | name: cm-persistent |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 147 | - mountPath: /opt/onap/certs |
| 148 | name: tls-info |
Schmalzried, Terry (ts862m) | 12db789 | 2020-08-21 20:42:33 -0400 | [diff] [blame] | 149 | - mountPath: /opt/onap/cm-secrets |
| 150 | name: cm-secrets |
| 151 | readOnly: true |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 152 | securityContext: |
| 153 | privileged: True |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 154 | volumes: |
| 155 | - name: {{ include "common.fullname" . }}-config |
| 156 | configMap: |
| 157 | name: {{ include "common.fullname" . }}-configmap |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 158 | - name: {{ include "common.fullname" .}}-kubeconfig |
| 159 | configMap: |
| 160 | name: {{ .Values.multisiteConfigMapName }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 161 | - name: dcae-token |
| 162 | secret: |
| 163 | secretName: dcae-token |
| 164 | - name: {{ include "common.fullname" . }}-cgroup |
| 165 | hostPath: |
| 166 | path: /sys/fs/cgroup |
| 167 | - name: localtime |
| 168 | hostPath: |
| 169 | path: /etc/localtime |
Jack Lucas | cec10b4 | 2018-12-04 15:10:28 -0500 | [diff] [blame] | 170 | - name: cm-persistent |
Sylvain Desbureaux | 03c36f9 | 2019-11-29 15:22:29 +0100 | [diff] [blame] | 171 | {{- if .Values.persistence.enabled }} |
Jack Lucas | cec10b4 | 2018-12-04 15:10:28 -0500 | [diff] [blame] | 172 | persistentVolumeClaim: |
| 173 | claimName: {{ include "common.fullname" . }}-data |
Sylvain Desbureaux | 03c36f9 | 2019-11-29 15:22:29 +0100 | [diff] [blame] | 174 | {{- else }} |
| 175 | emptyDir: {} |
| 176 | {{- end }} |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 177 | - emptyDir: {} |
| 178 | name: tls-info |
Schmalzried, Terry (ts862m) | 12db789 | 2020-08-21 20:42:33 -0400 | [diff] [blame] | 179 | - name: cm-secrets |
| 180 | secret: |
| 181 | secretName: {{ include "common.secret.getSecretNameFast" (dict "global" . "uid" "cm-pass") }} |
BorislavG | e904ab2 | 2018-04-03 16:55:55 +0300 | [diff] [blame] | 182 | imagePullSecrets: |
| 183 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |