kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 1 | {{/* |
| 2 | # Copyright © 2017 Amdocs, Bell Canada |
| 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 | |
| 17 | apiVersion: extensions/v1beta1 |
| 18 | kind: Deployment |
| 19 | metadata: |
| 20 | name: {{ include "common.fullname" . }} |
| 21 | namespace: {{ include "common.namespace" . }} |
| 22 | labels: |
| 23 | app: {{ include "common.name" . }} |
| 24 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 25 | release: {{ .Release.Name }} |
| 26 | heritage: {{ .Release.Service }} |
| 27 | spec: |
| 28 | replicas: {{ .Values.replicaCount }} |
| 29 | selector: |
| 30 | matchLabels: |
| 31 | app: {{ include "common.name" . }} |
| 32 | template: |
| 33 | metadata: |
| 34 | labels: |
| 35 | app: {{ include "common.name" . }} |
| 36 | release: {{ .Release.Name }} |
| 37 | name: {{ include "common.name" . }} |
| 38 | spec: |
| 39 | containers: |
| 40 | - env: |
| 41 | - name: MSB_ADDR |
| 42 | value: "{{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}" |
| 43 | - name: MSB_PORT |
| 44 | value: "{{ .Values.config.msbPort }}" |
| 45 | - name: AAI_ADDR |
| 46 | value: aai-service.{{ include "common.namespace" . }} |
| 47 | - name: AAI_PORT |
| 48 | value: "{{ .Values.config.aai.port }}" |
| 49 | - name: AAI_SCHEMA_VERSION |
| 50 | value: "{{ .Values.config.aai.schemaVersion }}" |
| 51 | - name: AAI_USERNAME |
| 52 | value: "{{ .Values.config.aai.username }}" |
| 53 | - name: AAI_PASSWORD |
| 54 | value: "{{ .Values.config.aai.password }}" |
| 55 | name: {{ include "common.name" . }} |
| 56 | volumeMounts: |
| 57 | - mountPath: /var/log/onap |
| 58 | name: windriver-log |
| 59 | - mountPath: /opt/windriver/titanium_cloud/pub/config/log.yml |
| 60 | name: windriver-logconfig |
| 61 | subPath: log.yml |
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 | ports: |
| 65 | - containerPort: {{ .Values.service.internalPort }} |
| 66 | # disable liveness probe when breakpoints set in debugger |
| 67 | # so K8s doesn't restart unresponsive container |
| 68 | {{ if .Values.liveness.enabled }} |
| 69 | livenessProbe: |
| 70 | httpGet: |
| 71 | path: /api/multicloud-titanium_cloud/v0/swagger.json |
| 72 | port: {{ .Values.service.internalPort }} |
| 73 | scheme: HTTP |
| 74 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 75 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 76 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
| 77 | successThreshold: {{ .Values.liveness.successThreshold }} |
| 78 | failureThreshold: {{ .Values.liveness.failureThreshold }} |
| 79 | {{ end }} |
| 80 | resources: |
| 81 | {{ toYaml .Values.resources | indent 12 }} |
| 82 | {{- if .Values.nodeSelector }} |
| 83 | nodeSelector: |
| 84 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 85 | {{- end -}} |
| 86 | {{- if .Values.affinity }} |
| 87 | affinity: |
| 88 | {{ toYaml .Values.affinity | indent 10 }} |
| 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: windriver-log |
| 101 | - mountPath: /usr/share/filebeat/data |
| 102 | name: windriver-data-filebeat |
| 103 | |
| 104 | volumes: |
| 105 | - name: windriver-log |
| 106 | emptyDir: {} |
| 107 | - name: windriver-data-filebeat |
| 108 | emptyDir: {} |
| 109 | - name: filebeat-conf |
| 110 | configMap: |
| 111 | name: multicloud-filebeat-configmap |
| 112 | - name: windriver-logconfig |
| 113 | configMap: |
| 114 | name: {{ include "common.fullname" . }}-log-configmap |
| 115 | imagePullSecrets: |
| 116 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
| 117 | restartPolicy: Always |