blob: 3f09b08eb8e825777910beb34ae0b2be81371832 [file] [log] [blame]
Bin Yangf28d0b12019-05-07 01:27:31 +00001{{/*
2# Copyright (c) 2019, CMCC Technologies Co., Ltd.
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
17apiVersion: extensions/v1beta1
18kind: 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" . }}
Bin Yangf28d0b12019-05-07 01:27:31 +000026 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" . }}
Bin Yangf28d0b12019-05-07 01:27:31 +000037 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
44 value: {{ .Values.config.msbprotocol }}.{{ include "common.namespace" . }}
Bin Yangf28d0b12019-05-07 01:27:31 +000045 - 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 }}"
Bin Yangf28d0b12019-05-07 01:27:31 +000061 name: {{ include "common.name" . }}
62 volumeMounts:
63 - mountPath: /var/log/onap
64 name: fcaps-log
65 - mountPath: /opt/fcaps/fcaps/pub/config/log.yml
66 name: fcaps-logconfig
67 subPath: log.yml
68 resources:
69{{ include "common.resources" . | indent 12 }}
70 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
71 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
72 ports:
73 - containerPort: {{ .Values.service.internalPort }}
74 # disable liveness probe when breakpoints set in debugger
75 # so K8s doesn't restart unresponsive container
76 {{ if .Values.liveness.enabled }}
77 livenessProbe:
78 httpGet:
79 path: /api/multicloud-fcaps/v1/healthcheck
80 port: {{ .Values.service.internalPort }}
Bin Yang842a4842020-02-04 01:03:14 +080081 scheme: HTTPS
Bin Yangf28d0b12019-05-07 01:27:31 +000082 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
83 periodSeconds: {{ .Values.liveness.periodSeconds }}
84 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
85 successThreshold: {{ .Values.liveness.successThreshold }}
86 failureThreshold: {{ .Values.liveness.failureThreshold }}
87 {{ end }}
88 # side car containers
89 - image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
90 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
91 name: filebeat-onap
92 volumeMounts:
93 - mountPath: /usr/share/filebeat/filebeat.yml
94 name: filebeat-conf
95 subPath: filebeat.yml
96 - mountPath: /var/log/onap
97 name: fcaps-log
98 - mountPath: /usr/share/filebeat/data
99 name: fcaps-data-filebeat
100 - image: {{ .Values.rabbitmq }}
101 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
102 name: rabbit-mq
103
104 volumes:
105 - name: fcaps-log
106 emptyDir: {}
107 - name: fcaps-data-filebeat
108 emptyDir: {}
109 - name: filebeat-conf
110 configMap:
111 name: multicloud-filebeat-configmap
112 - name: fcaps-logconfig
113 configMap:
114 name: {{ include "common.fullname" . }}-log-configmap
115 imagePullSecrets:
116 - name: "{{ include "common.namespace" . }}-docker-registry-key"
117 restartPolicy: Always