Jakub Latusek | 7dbe0f5 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 2 | #============LICENSE_START======================================================== |
| 3 | # ================================================================================ |
Vijay Venkatesh Kumar | 2091000 | 2021-09-07 12:19:48 -0400 | [diff] [blame] | 4 | # Copyright (c) 2019-2021 AT&T Intellectual Property. All rights reserved. |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [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========================================================= |
Jakub Latusek | 7dbe0f5 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 18 | */}} |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 19 | |
| 20 | apiVersion: apps/v1 |
| 21 | kind: Deployment |
| 22 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
| 23 | spec: |
| 24 | replicas: 1 |
| 25 | selector: {{- include "common.selectors" . | nindent 4 }} |
| 26 | template: |
| 27 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
| 28 | spec: |
| 29 | containers: |
| 30 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 99baf8e | 2020-11-21 22:19:29 +0100 | [diff] [blame] | 31 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 32 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 33 | ports: {{ include "common.containerPorts" . | nindent 12 }} |
| 34 | {{- if eq .Values.liveness.enabled true }} |
| 35 | livenessProbe: |
| 36 | tcpSocket: |
| 37 | port: {{ .Values.liveness.port }} |
| 38 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 39 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 40 | {{ end }} |
| 41 | readinessProbe: |
| 42 | tcpSocket: |
| 43 | port: {{ .Values.readiness.port }} |
| 44 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 45 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 46 | resources: {{ include "common.resources" . | nindent 12 }} |
Vijay Venkatesh Kumar | 2091000 | 2021-09-07 12:19:48 -0400 | [diff] [blame] | 47 | volumeMounts: |
| 48 | - mountPath: {{ .Values.config.basehelmchartlocation }}/base/values.yaml |
| 49 | subPath: values.yaml |
| 50 | name: dcae-helmgen-base |
| 51 | - mountPath: {{ .Values.config.basehelmchartlocation }}/base/Chart.yaml |
| 52 | subPath: Chart.yaml |
| 53 | name: dcae-helmgen-base |
| 54 | - mountPath: {{ .Values.config.basehelmchartlocation }}/base/templates |
| 55 | name: dcae-helmgen-templates |
| 56 | - mountPath: {{ .Values.config.basehelmchartlocation }}/addons/templates |
| 57 | name: dcae-helmgen-addon-templates |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 58 | env: |
| 59 | - name: DASHBOARD_URL |
| 60 | value: {{ .Values.config.dashboardURL }} |
| 61 | - name: DASHBOARD_USERNAME |
Krzysztof Opasiak | 1e3ae55 | 2020-03-24 03:27:13 +0100 | [diff] [blame] | 62 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "dashsecret" "key" "login") | indent 14 }} |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 63 | - name: DASHBOARD_PASSWORD |
Krzysztof Opasiak | 1e3ae55 | 2020-03-24 03:27:13 +0100 | [diff] [blame] | 64 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "dashsecret" "key" "password") | indent 14 }} |
Jack Lucas | 00efe37 | 2020-03-11 13:48:20 -0400 | [diff] [blame] | 65 | - name: ONAP_TOPICURL |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 66 | value: {{ .Values.config.mrTopicURL }} |
Jack Lucas | 00efe37 | 2020-03-11 13:48:20 -0400 | [diff] [blame] | 67 | - name: ONAP_IMPORT_CLOUDIFYPLUGIN |
| 68 | value: {{ .Values.config.importCloudify }} |
| 69 | - name: ONAP_IMPORT_K8SPLUGIN |
| 70 | value: {{ .Values.config.importK8S }} |
| 71 | - name: ONAP_IMPORT_POLICYPLUGIN |
| 72 | value: {{ .Values.config.importPolicy }} |
vv770d | 601e2b0 | 2020-08-17 22:40:00 +0000 | [diff] [blame] | 73 | - name: ONAP_IMPORT_POSTGRESPLUGIN |
Jack Lucas | 00efe37 | 2020-03-11 13:48:20 -0400 | [diff] [blame] | 74 | value: {{ .Values.config.importPostgres }} |
| 75 | - name: ONAP_IMPORT_CLAMPPLUGIN |
| 76 | value: {{ .Values.config.importClamp }} |
| 77 | - name: ONAP_IMPORT_DMAAPPLUGIN |
| 78 | value: {{ .Values.config.importDMaaP }} |
vv770d | 601e2b0 | 2020-08-17 22:40:00 +0000 | [diff] [blame] | 79 | - name: ONAP_USEDMAAPPLUGIN |
| 80 | value: {{ .Values.config.useDmaapPlugin | quote }} |
Joanna Jeremicz | a738031 | 2021-02-26 10:57:27 +0100 | [diff] [blame] | 81 | - name: BP_RESOURCES_CPU_LIMIT |
| 82 | value: {{ .Values.config.bpResourcesCpuLimit }} |
| 83 | - name: BP_RESOURCES_MEMORY_LIMIT |
| 84 | value: {{ .Values.config.bpResourcesMemoryLimit }} |
Vijay Venkatesh Kumar | 2091000 | 2021-09-07 12:19:48 -0400 | [diff] [blame] | 85 | - name: ARTIFACT_TYPE |
| 86 | value: {{ .Values.config.artifactType }} |
| 87 | - name: CHARTMUSEUM_BASEURL |
| 88 | value: {{ .Values.config.registryBaseurl }} |
| 89 | - name: HELM_BASE_CHART_TEMPLATE_LOCATION |
| 90 | value: {{ .Values.config.basehelmchartlocation }} |
| 91 | - name: CHARTMUSEUM_AUTH_BASIC_USERNAME |
| 92 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "registrycred" "key" "login") | indent 14 }} |
| 93 | - name: CHARTMUSEUM_AUTH_BASIC_PASSWORD |
| 94 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "registrycred" "key" "password") | indent 14 }} |
farida azmy | 5093301 | 2021-09-12 12:56:40 +0200 | [diff] [blame] | 95 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 96 | imagePullSecrets: |
| 97 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
Vijay Venkatesh Kumar | 2091000 | 2021-09-07 12:19:48 -0400 | [diff] [blame] | 98 | volumes: |
| 99 | - name: dcae-helmgen-templates |
| 100 | configMap: |
| 101 | name: {{ include "common.fullname" . }}-dcae-helmgen-templates |
| 102 | - name: dcae-helmgen-base |
| 103 | configMap: |
| 104 | name: {{ include "common.fullname" . }}-dcae-helmgen-base |
| 105 | - name: dcae-helmgen-addon-templates |
| 106 | configMap: |
| 107 | name: {{ include "common.fullname" . }}-dcae-helmgen-addons-templates |