blob: e6f145687496cc495e8af417f87254b5b252d7a1 [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
18apiVersion: extensions/v1beta1
19kind: 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 "+" "_" }}
26 release: {{ .Release.Name }}
27 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" . }}
37 release: {{ .Release.Name }}
38 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:
42 containers:
43 - env:
44 - name: MSB_ADDR
45 value: "{{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}"
46 - name: MSB_PORT
47 value: "{{ .Values.config.msbPort }}"
48 - name: AAI_ADDR
jmac3ee77e72018-05-03 18:13:38 +000049 value: aai.{{ include "common.namespace" . }}
kj41ef22e2018-04-02 13:34:07 +030050 - name: AAI_PORT
51 value: "{{ .Values.config.aai.port }}"
52 - name: AAI_SCHEMA_VERSION
53 value: "{{ .Values.config.aai.schemaVersion }}"
54 - name: AAI_USERNAME
55 value: "{{ .Values.config.aai.username }}"
56 - name: AAI_PASSWORD
57 value: "{{ .Values.config.aai.password }}"
58 name: {{ include "common.name" . }}
59 volumeMounts:
60 - mountPath: /var/log/onap
61 name: windriver-log
62 - mountPath: /opt/windriver/titanium_cloud/pub/config/log.yml
63 name: windriver-logconfig
64 subPath: log.yml
liboNet4b81b5a2019-04-30 09:26:11 +080065 - mountPath: /opt/artifacts/
66 name: artifact-data
Mukul62927a12018-09-11 11:42:00 +000067 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000068{{ include "common.resources" . | indent 12 }}
BorislavGdf11cd52018-05-06 12:55:20 +000069 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
kj41ef22e2018-04-02 13:34:07 +030070 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
71 ports:
72 - containerPort: {{ .Values.service.internalPort }}
73 # disable liveness probe when breakpoints set in debugger
74 # so K8s doesn't restart unresponsive container
75 {{ if .Values.liveness.enabled }}
76 livenessProbe:
77 httpGet:
Bin Yang8858ebd2018-09-03 10:39:29 +000078 path: /api/multicloud-titaniumcloud/v1/swagger.json
kj41ef22e2018-04-02 13:34:07 +030079 port: {{ .Values.service.internalPort }}
80 scheme: HTTP
81 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
82 periodSeconds: {{ .Values.liveness.periodSeconds }}
83 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
84 successThreshold: {{ .Values.liveness.successThreshold }}
85 failureThreshold: {{ .Values.liveness.failureThreshold }}
86 {{ end }}
kj41ef22e2018-04-02 13:34:07 +030087 # side car containers
88 - image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
89 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
90 name: filebeat-onap
91 volumeMounts:
92 - mountPath: /usr/share/filebeat/filebeat.yml
93 name: filebeat-conf
94 subPath: filebeat.yml
95 - mountPath: /var/log/onap
96 name: windriver-log
97 - mountPath: /usr/share/filebeat/data
98 name: windriver-data-filebeat
liboNet4b81b5a2019-04-30 09:26:11 +080099 - image: "{{ include "common.repository" . }}/{{ .Values.global.artifactImage }}"
100 name: framework-artifactbroker
101 command: ["/opt/app/distribution/bin/artifact-dist.sh"]
102 args: ["/opt/app/distribution/etc/mounted/config.json"]
103 ports:
104 - containerPort: 9014
105 protocol: TCP
106 volumeMounts:
107 - mountPath: /opt/app/distribution/etc/mounted/config.json
108 name: windriver-logconfig
109 subPath: config.json
110 - mountPath: /data
111 name: artifact-data
kj41ef22e2018-04-02 13:34:07 +0300112
113 volumes:
114 - name: windriver-log
115 emptyDir: {}
116 - name: windriver-data-filebeat
117 emptyDir: {}
118 - name: filebeat-conf
119 configMap:
120 name: multicloud-filebeat-configmap
121 - name: windriver-logconfig
122 configMap:
123 name: {{ include "common.fullname" . }}-log-configmap
liboNet4b81b5a2019-04-30 09:26:11 +0800124 - name: artifact-data
125 emptyDir: {}
kj41ef22e2018-04-02 13:34:07 +0300126 imagePullSecrets:
127 - name: "{{ include "common.namespace" . }}-docker-registry-key"
128 restartPolicy: Always