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