1 # Copyright © 2017 Amdocs, Bell Canada
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
15 apiVersion: extensions/v1beta1
18 name: {{ include "common.fullname" . }}
19 namespace: {{ include "common.namespace" . }}
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
26 replicas: {{ .Values.replicaCount }}
30 app: {{ include "common.name" . }}
31 release: {{ .Release.Name }}
38 - {{ .Values.mariadb.nameOverride }}
44 fieldPath: metadata.namespace
45 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47 name: {{ include "common.name" . }}-readiness
49 - name: {{ .Chart.Name }}
51 - /tmp/start-jboss-server.sh
52 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
53 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
55 - containerPort: {{ .Values.service.internalPort }}
56 - containerPort: {{ .Values.service.internalPort2 }}
57 - containerPort: {{ .Values.service.internalPort3 }}
58 - containerPort: {{ .Values.service.internalPort4 }}
59 - containerPort: {{ .Values.service.internalPort5 }}
60 # disable liveness probe when breakpoints set in debugger
61 # so K8s doesn't restart unresponsive container
62 {{ if .Values.liveness.enabled }}
65 port: {{ .Values.service.internalPort }}
66 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
67 periodSeconds: {{ .Values.liveness.periodSeconds }}
71 port: {{ .Values.service.internalPort }}
72 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
73 periodSeconds: {{ .Values.readiness.periodSeconds }}
76 value: {{ .Values.global.debugEnabled | default .Values.debugEnabled | quote }}
78 - mountPath: /etc/localtime
83 - mountPath: /tmp/start-jboss-server.sh
85 subPath: start-jboss-server.sh
86 - mountPath: /opt/jboss/standalone/configuration/standalone-full-ha-mso.xml
88 subPath: standalone-full-ha-mso.xml
89 - mountPath: /var/log/onap
91 - mountPath: /var/berks-cookbooks/mso-config/files/default/mso-po-adapter-config/logback.network.xml
93 subPath: logback.network.xml
94 - mountPath: /var/berks-cookbooks/mso-config/files/default/mso-po-adapter-config/logback.tenant.xml
96 subPath: logback.tenant.xml
97 - mountPath: /var/berks-cookbooks/mso-config/files/default/mso-po-adapter-config/logback.vnf.xml
99 subPath: logback.vnf.xml
100 - mountPath: /var/berks-cookbooks/mso-config/files/default/mso-po-adapter-config/logback.vfc.xml
102 subPath: logback.vfc.xml
103 - mountPath: /var/berks-cookbooks/mso-config/files/default/mso-api-handler-infra-config/logback.apihandler-infra.xml
105 subPath: logback.apihandler-infra.xml
106 - mountPath: /var/berks-cookbooks/mso-config/files/default/mso-appc-adapter-config/logback.appc.xml
108 subPath: logback.appc.xml
109 - mountPath: /var/berks-cookbooks/mso-config/files/default/mso-requests-db-adapter-config/logback.msorequestsdbadapter.xml
111 subPath: logback.msorequestsdbadapter.xml
112 - mountPath: /var/berks-cookbooks/mso-config/files/default/mso-asdc-controller-config/logback.asdc.xml
114 subPath: logback.asdc.xml
115 - mountPath: /var/berks-cookbooks/mso-config/files/default/mso-sdnc-adapter-config/logback.sdnc.xml
117 subPath: logback.sdnc.xml
118 - mountPath: /var/berks-cookbooks/mso-config/files/default/mso-bpmn-config/logback.bpmn.xml
120 subPath: logback.bpmn.xml
121 - mountPath: /var/berks-cookbooks/mso-config/files/default/mso-workflow-message-adapter-config/logback.workflow-message-adapter.xml
123 subPath: logback.workflow-message-adapter.xml
125 {{ toYaml .Values.resources | indent 12 }}
126 {{- if .Values.nodeSelector }}
128 {{ toYaml .Values.nodeSelector | indent 10 }}
130 {{- if .Values.affinity }}
132 {{ toYaml .Values.affinity | indent 10 }}
135 # side car containers
136 - name: filebeat-onap
137 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
138 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
140 - mountPath: /usr/share/filebeat/filebeat.yml
142 subPath: filebeat.yml
143 - mountPath: /var/log/onap
145 - mountPath: /usr/share/filebeat/data
146 name: so-data-filebeat
154 name: so-log-configmap
155 - name: filebeat-conf
157 name: so-filebeat-configmap
162 - key: mso-docker.json
163 path: mso-docker.json
168 - key: encryption.key
175 - key: standalone-full-ha-mso.xml
176 path: standalone-full-ha-mso.xml
180 - name: so-data-filebeat
182 - name: so-docker-files
184 name: so-docker-file-configmap
186 - key: start-jboss-server.sh
187 path: start-jboss-server.sh
190 - name: "{{ include "common.namespace" . }}-docker-registry-key"