blob: b6773a5a6ad37bfb96b1cd493d6717302de34684 [file] [log] [blame]
kj41ef22e2018-04-02 13:34:07 +03001{{/*
2# Copyright © 2017 Amdocs, Bell Canada
Nishukumar376ba1e2018-08-03 09:17:23 +00003# Modifications Copyright © 2018 AT&T
kj41ef22e2018-04-02 13:34:07 +03004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16*/}}
17
kwasield74d38f2020-07-23 10:09:57 +000018apiVersion: apps/v1
kj41ef22e2018-04-02 13:34:07 +030019kind: Deployment
20metadata:
21 name: {{ include "common.fullname" . }}
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
kj41ef22e2018-04-02 13:34:07 +030027 heritage: {{ .Release.Service }}
28spec:
29 replicas: {{ .Values.replicaCount }}
30 selector:
31 matchLabels:
32 app: {{ include "common.name" . }}
33 template:
34 metadata:
35 labels:
36 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010037 release: {{ include "common.release" . }}
kj41ef22e2018-04-02 13:34:07 +030038 name: {{ include "common.name" . }}
Huabing Zhao89577802018-07-30 09:41:17 +000039 annotations:
40 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
kj41ef22e2018-04-02 13:34:07 +030041 spec:
Liang Dingbacdd452019-09-04 09:55:35 -070042 initContainers:
43 - command: ["sh", "-c", "chown -R 100:101 /data"]
44 image: "{{ .Values.global.ubuntuInitRepository }}/{{ .Values.global.ubuntuInitImage }}"
45 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
46 name: {{ include "common.name" . }}-init
47 volumeMounts:
48 - mountPath: /data
49 name: artifact-data
kj41ef22e2018-04-02 13:34:07 +030050 containers:
51 - env:
Bin Yang842a4842020-02-04 01:03:14 +080052 - name: MSB_PROTO
Bin Yang6ea79cb2020-02-05 22:31:12 +080053 value: {{ .Values.config.msbprotocol }}
kj41ef22e2018-04-02 13:34:07 +030054 - name: MSB_ADDR
55 value: "{{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}"
56 - name: MSB_PORT
57 value: "{{ .Values.config.msbPort }}"
58 - name: AAI_ADDR
jmac3ee77e72018-05-03 18:13:38 +000059 value: aai.{{ include "common.namespace" . }}
kj41ef22e2018-04-02 13:34:07 +030060 - name: AAI_PORT
61 value: "{{ .Values.config.aai.port }}"
62 - name: AAI_SCHEMA_VERSION
63 value: "{{ .Values.config.aai.schemaVersion }}"
64 - name: AAI_USERNAME
65 value: "{{ .Values.config.aai.username }}"
66 - name: AAI_PASSWORD
67 value: "{{ .Values.config.aai.password }}"
Bin Yang842a4842020-02-04 01:03:14 +080068 - name: SSL_ENABLED
69 value: "{{ .Values.config.ssl_enabled }}"
kj41ef22e2018-04-02 13:34:07 +030070 name: {{ include "common.name" . }}
71 volumeMounts:
72 - mountPath: /var/log/onap
73 name: windriver-log
74 - mountPath: /opt/windriver/titanium_cloud/pub/config/log.yml
75 name: windriver-logconfig
76 subPath: log.yml
liboNet4b81b5a2019-04-30 09:26:11 +080077 - mountPath: /opt/artifacts/
78 name: artifact-data
Mukul62927a12018-09-11 11:42:00 +000079 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000080{{ include "common.resources" . | indent 12 }}
BorislavGdf11cd52018-05-06 12:55:20 +000081 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
kj41ef22e2018-04-02 13:34:07 +030082 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
83 ports:
84 - containerPort: {{ .Values.service.internalPort }}
85 # disable liveness probe when breakpoints set in debugger
86 # so K8s doesn't restart unresponsive container
87 {{ if .Values.liveness.enabled }}
88 livenessProbe:
89 httpGet:
Bin Yang8858ebd2018-09-03 10:39:29 +000090 path: /api/multicloud-titaniumcloud/v1/swagger.json
kj41ef22e2018-04-02 13:34:07 +030091 port: {{ .Values.service.internalPort }}
Bin Yang842a4842020-02-04 01:03:14 +080092 scheme: HTTPS
kj41ef22e2018-04-02 13:34:07 +030093 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
94 periodSeconds: {{ .Values.liveness.periodSeconds }}
95 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
96 successThreshold: {{ .Values.liveness.successThreshold }}
97 failureThreshold: {{ .Values.liveness.failureThreshold }}
98 {{ end }}
kj41ef22e2018-04-02 13:34:07 +030099 # side car containers
100 - image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
101 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
102 name: filebeat-onap
103 volumeMounts:
104 - mountPath: /usr/share/filebeat/filebeat.yml
105 name: filebeat-conf
106 subPath: filebeat.yml
107 - mountPath: /var/log/onap
108 name: windriver-log
109 - mountPath: /usr/share/filebeat/data
110 name: windriver-data-filebeat
liboNet4b81b5a2019-04-30 09:26:11 +0800111 - image: "{{ include "common.repository" . }}/{{ .Values.global.artifactImage }}"
112 name: framework-artifactbroker
113 command: ["/opt/app/distribution/bin/artifact-dist.sh"]
114 args: ["/opt/app/distribution/etc/mounted/config.json"]
115 ports:
116 - containerPort: 9014
117 protocol: TCP
118 volumeMounts:
119 - mountPath: /opt/app/distribution/etc/mounted/config.json
120 name: windriver-logconfig
121 subPath: config.json
122 - mountPath: /data
123 name: artifact-data
kj41ef22e2018-04-02 13:34:07 +0300124
125 volumes:
126 - name: windriver-log
127 emptyDir: {}
128 - name: windriver-data-filebeat
129 emptyDir: {}
130 - name: filebeat-conf
131 configMap:
132 name: multicloud-filebeat-configmap
133 - name: windriver-logconfig
134 configMap:
135 name: {{ include "common.fullname" . }}-log-configmap
liboNet4b81b5a2019-04-30 09:26:11 +0800136 - name: artifact-data
Liang Dingbacdd452019-09-04 09:55:35 -0700137 {{- if .Values.persistence.enabled }}
138 persistentVolumeClaim:
139 claimName: {{ include "common.fullname" . }}
140 {{- else }}
liboNet4b81b5a2019-04-30 09:26:11 +0800141 emptyDir: {}
Liang Dingbacdd452019-09-04 09:55:35 -0700142 {{- end }}
kj41ef22e2018-04-02 13:34:07 +0300143 imagePullSecrets:
144 - name: "{{ include "common.namespace" . }}-docker-registry-key"
145 restartPolicy: Always