kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 1 | {{/* |
| 2 | # Copyright © 2017 Amdocs, Bell Canada |
Nishukumar | 376ba1e | 2018-08-03 09:17:23 +0000 | [diff] [blame] | 3 | # Modifications Copyright © 2018 AT&T |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 4 | # |
| 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 | |
| 18 | apiVersion: extensions/v1beta1 |
| 19 | kind: Deployment |
| 20 | metadata: |
| 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 Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 26 | release: {{ include "common.release" . }} |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 27 | heritage: {{ .Release.Service }} |
| 28 | spec: |
| 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 Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 37 | release: {{ include "common.release" . }} |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 38 | name: {{ include "common.name" . }} |
| 39 | spec: |
| 40 | containers: |
| 41 | - env: |
Bin Yang | 2e5ecc3 | 2020-01-23 02:46:07 +0000 | [diff] [blame] | 42 | - name: MSB_PROTO |
Bin Yang | 6ea79cb | 2020-02-05 22:31:12 +0800 | [diff] [blame] | 43 | value: {{ .Values.config.msbprotocol }} |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 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 |
| 49 | value: "aai.{{ include "common.namespace" . }}" |
| 50 | - 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 }}" |
Bin Yang | 2e5ecc3 | 2020-01-23 02:46:07 +0000 | [diff] [blame] | 58 | - name: SSL_ENABLED |
| 59 | value: "{{ .Values.config.ssl_enabled }}" |
Mukul | 62927a1 | 2018-09-11 11:42:00 +0000 | [diff] [blame] | 60 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 61 | {{ include "common.resources" . | indent 12 }} |
BorislavG | df11cd5 | 2018-05-06 12:55:20 +0000 | [diff] [blame] | 62 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 63 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 64 | name: {{ include "common.name" . }} |
| 65 | volumeMounts: |
| 66 | - mountPath: /var/log/onap |
| 67 | name: framework-log |
| 68 | - mountPath: /opt/multivimbroker/multivimbroker/pub/config/log.yml |
| 69 | name: framework-logconfig |
| 70 | subPath: log.yml |
Mandeep Khinda | a91aaa2 | 2018-05-01 20:52:44 +0000 | [diff] [blame] | 71 | - mountPath: /opt/multivimbroker/multivimbroker/pub/config/provider-plugin.json |
| 72 | name: provider-plugin |
| 73 | subPath: provider-plugin.json |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 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 eq .Values.liveness.enabled true }} |
| 79 | livenessProbe: |
| 80 | httpGet: |
| 81 | path: /api/multicloud/v0/swagger.json |
| 82 | port: {{ .Values.service.internalPort }} |
Bin Yang | 2e5ecc3 | 2020-01-23 02:46:07 +0000 | [diff] [blame] | 83 | scheme: HTTPS |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 84 | 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 | |
| 91 | # side car containers |
| 92 | - image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}" |
| 93 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 94 | name: filebeat-onap |
| 95 | volumeMounts: |
| 96 | - mountPath: /usr/share/filebeat/filebeat.yml |
| 97 | name: filebeat-conf |
| 98 | subPath: filebeat.yml |
| 99 | - mountPath: /var/log/onap |
| 100 | name: framework-log |
| 101 | - mountPath: /usr/share/filebeat/data |
| 102 | name: framework-data-filebeat |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 103 | volumes: |
| 104 | - name: framework-log |
| 105 | emptyDir: {} |
Mandeep Khinda | a91aaa2 | 2018-05-01 20:52:44 +0000 | [diff] [blame] | 106 | - name: provider-plugin |
| 107 | configMap: |
| 108 | name: {{ include "common.fullname" . }}-provider-plugin-configmap |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 109 | - name: framework-data-filebeat |
| 110 | emptyDir: {} |
| 111 | - name: filebeat-conf |
| 112 | configMap: |
| 113 | name: multicloud-filebeat-configmap |
| 114 | - name: framework-logconfig |
| 115 | configMap: |
| 116 | name: {{ include "common.fullname" . }}-log-configmap |
| 117 | imagePullSecrets: |
| 118 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
| 119 | restartPolicy: Always |