blob: 735b0281bebf023bcd36a600d5ac5f65c97b31a7 [file] [log] [blame]
Jakub Latusek7dbe0f52020-10-21 13:36:29 +02001{{/*
Jack Lucas7723ffe2020-02-13 17:19:01 -05002#============LICENSE_START========================================================
3# ================================================================================
4# Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved.
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 Latusek7dbe0f52020-10-21 13:36:29 +020018*/}}
Jack Lucas7723ffe2020-02-13 17:19:01 -050019
20apiVersion: apps/v1
21kind: Deployment
22metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
23spec:
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 Desbureaux99baf8e2020-11-21 22:19:29 +010031 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Jack Lucas7723ffe2020-02-13 17:19:01 -050032 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 }}
47 env:
48 - name: DASHBOARD_URL
49 value: {{ .Values.config.dashboardURL }}
50 - name: DASHBOARD_USERNAME
Krzysztof Opasiak1e3ae552020-03-24 03:27:13 +010051 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "dashsecret" "key" "login") | indent 14 }}
Jack Lucas7723ffe2020-02-13 17:19:01 -050052 - name: DASHBOARD_PASSWORD
Krzysztof Opasiak1e3ae552020-03-24 03:27:13 +010053 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "dashsecret" "key" "password") | indent 14 }}
Jack Lucas00efe372020-03-11 13:48:20 -040054 - name: ONAP_TOPICURL
Jack Lucas7723ffe2020-02-13 17:19:01 -050055 value: {{ .Values.config.mrTopicURL }}
Jack Lucas00efe372020-03-11 13:48:20 -040056 - name: ONAP_IMPORT_CLOUDIFYPLUGIN
57 value: {{ .Values.config.importCloudify }}
58 - name: ONAP_IMPORT_K8SPLUGIN
59 value: {{ .Values.config.importK8S }}
60 - name: ONAP_IMPORT_POLICYPLUGIN
61 value: {{ .Values.config.importPolicy }}
vv770d601e2b02020-08-17 22:40:00 +000062 - name: ONAP_IMPORT_POSTGRESPLUGIN
Jack Lucas00efe372020-03-11 13:48:20 -040063 value: {{ .Values.config.importPostgres }}
64 - name: ONAP_IMPORT_CLAMPPLUGIN
65 value: {{ .Values.config.importClamp }}
66 - name: ONAP_IMPORT_DMAAPPLUGIN
67 value: {{ .Values.config.importDMaaP }}
vv770d601e2b02020-08-17 22:40:00 +000068 - name: ONAP_USEDMAAPPLUGIN
69 value: {{ .Values.config.useDmaapPlugin | quote }}
Jack Lucas7723ffe2020-02-13 17:19:01 -050070 imagePullSecrets:
71 - name: "{{ include "common.namespace" . }}-docker-registry-key"
vv770d601e2b02020-08-17 22:40:00 +000072