blob: 80e9a97f3b4ea2af69c8ca1849259fae52fdbc0a [file] [log] [blame]
Haibin Huang110eabe2019-01-24 11:14:38 +08001{{/*
2# Copyright (c) 2019 Intel Corporation.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15*/}}
16
kwasield74d38f2020-07-23 10:09:57 +000017apiVersion: apps/v1
Haibin Huang110eabe2019-01-24 11:14:38 +080018kind: Deployment
19metadata:
20 name: {{ include "common.fullname" . }}
21 namespace: {{ include "common.namespace" . }}
22 labels:
23 app: {{ include "common.name" . }}
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010025 release: {{ include "common.release" . }}
Haibin Huang110eabe2019-01-24 11:14:38 +080026 heritage: {{ .Release.Service }}
27spec:
28 replicas: {{ .Values.replicaCount }}
29 selector:
30 matchLabels:
31 app: {{ include "common.name" . }}
32 template:
33 metadata:
34 labels:
35 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010036 release: {{ include "common.release" . }}
Haibin Huang110eabe2019-01-24 11:14:38 +080037 name: {{ include "common.name" . }}
38 annotations:
39 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
40 spec:
41 containers:
42 - env:
Bin Yang842a4842020-02-04 01:03:14 +080043 - name: MSB_PROTO
Bin Yang6ea79cb2020-02-05 22:31:12 +080044 value: {{ .Values.config.msbprotocol }}
Haibin Huang110eabe2019-01-24 11:14:38 +080045 - name: MSB_ADDR
46 value: "{{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}"
47 - name: MSB_PORT
48 value: "{{ .Values.config.msbPort }}"
49 - name: AAI_ADDR
50 value: aai.{{ include "common.namespace" . }}
51 - name: AAI_PORT
52 value: "{{ .Values.config.aai.port }}"
53 - name: AAI_SCHEMA_VERSION
54 value: "{{ .Values.config.aai.schemaVersion }}"
55 - name: AAI_USERNAME
56 value: "{{ .Values.config.aai.username }}"
57 - name: AAI_PASSWORD
58 value: "{{ .Values.config.aai.password }}"
Bin Yang842a4842020-02-04 01:03:14 +080059 - name: SSL_ENABLED
60 value: "{{ .Values.config.ssl_enabled }}"
Haibin Huang110eabe2019-01-24 11:14:38 +080061 name: {{ include "common.name" . }}
62 volumeMounts:
63 - mountPath: /var/log/onap
64 name: starlingx-log
65 - mountPath: /opt/starlingx/starlingx/pub/config/log.yml
66 name: starlingx-logconfig
67 subPath: log.yml
liboNet4b81b5a2019-04-30 09:26:11 +080068 - mountPath: /opt/artifacts/
69 name: artifact-data
Haibin Huang110eabe2019-01-24 11:14:38 +080070 resources:
71{{ include "common.resources" . | indent 12 }}
72 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
73 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
74 ports:
75 - containerPort: {{ .Values.service.internalPort }}
76 # disable liveness probe when breakpoints set in debugger
77 # so K8s doesn't restart unresponsive container
78 {{ if .Values.liveness.enabled }}
79 livenessProbe:
80 httpGet:
81 path: /api/multicloud-starlingx/v0/swagger.json
82 port: {{ .Values.service.internalPort }}
Bin Yang842a4842020-02-04 01:03:14 +080083 scheme: HTTPS
Haibin Huang110eabe2019-01-24 11:14:38 +080084 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
85 periodSeconds: {{ .Values.liveness.periodSeconds }}
86 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
87 successThreshold: {{ .Values.liveness.successThreshold }}
88 failureThreshold: {{ .Values.liveness.failureThreshold }}
89 {{ end }}
90 # side car containers
91 - image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
92 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
93 name: filebeat-onap
94 volumeMounts:
95 - mountPath: /usr/share/filebeat/filebeat.yml
96 name: filebeat-conf
97 subPath: filebeat.yml
98 - mountPath: /var/log/onap
99 name: starlingx-log
100 - mountPath: /usr/share/filebeat/data
101 name: starlingx-data-filebeat
liboNet4b81b5a2019-04-30 09:26:11 +0800102 - image: "{{ include "common.repository" . }}/{{ .Values.global.artifactImage }}"
103 name: framework-artifactbroker
104 command: ["/opt/app/distribution/bin/artifact-dist.sh"]
105 args: ["/opt/app/distribution/etc/mounted/config.json"]
106 ports:
107 - containerPort: 9014
108 protocol: TCP
109 volumeMounts:
110 - mountPath: /opt/app/distribution/etc/mounted/config.json
111 name: starlingx-logconfig
112 subPath: config.json
113 - mountPath: /data
114 name: artifact-data
Haibin Huang110eabe2019-01-24 11:14:38 +0800115
116 volumes:
117 - name: starlingx-log
118 emptyDir: {}
119 - name: starlingx-data-filebeat
120 emptyDir: {}
121 - name: filebeat-conf
122 configMap:
123 name: multicloud-filebeat-configmap
124 - name: starlingx-logconfig
125 configMap:
126 name: {{ include "common.fullname" . }}-log-configmap
liboNet4b81b5a2019-04-30 09:26:11 +0800127 - name: artifact-data
128 emptyDir: {}
Haibin Huang110eabe2019-01-24 11:14:38 +0800129 imagePullSecrets:
130 - name: "{{ include "common.namespace" . }}-docker-registry-key"
131 restartPolicy: Always