Sylvain Desbureaux | 37dc40c | 2020-11-21 22:46:57 +0100 | [diff] [blame] | 1 | {{/* |
| 2 | # Copyright © 2017 Amdocs, Bell Canada |
| 3 | # Modifications Copyright © 2018 AT&T |
| 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: apps/v1 |
| 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 "+" "_" }} |
| 26 | release: {{ include "common.release" . }} |
| 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" . }} |
| 37 | release: {{ include "common.release" . }} |
| 38 | name: {{ include "common.name" . }} |
| 39 | annotations: |
| 40 | sidecar.istio.io/inject: "{{.Values.istioSidecar}}" |
| 41 | spec: |
| 42 | initContainers: |
| 43 | - command: ["sh", "-c", "chown -R 100:101 /data"] |
| 44 | image: {{ include "repositoryGenerator.image.busybox" . }} |
| 45 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 46 | name: {{ include "common.name" . }}-init |
| 47 | volumeMounts: |
| 48 | - mountPath: /data |
| 49 | name: artifact-data |
| 50 | containers: |
| 51 | - env: |
| 52 | - name: MSB_PROTO |
| 53 | value: {{ .Values.config.msbprotocol }} |
| 54 | - name: MSB_ADDR |
| 55 | value: "{{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}" |
| 56 | - name: MSB_PORT |
| 57 | value: "{{ .Values.config.msbPort }}" |
| 58 | - name: AAI_ADDR |
| 59 | value: aai.{{ include "common.namespace" . }} |
| 60 | - 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 }}" |
| 68 | - name: SSL_ENABLED |
| 69 | value: "{{ .Values.config.ssl_enabled }}" |
| 70 | 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 |
| 77 | - mountPath: /opt/artifacts/ |
| 78 | name: artifact-data |
| 79 | resources: {{ include "common.resources" . | nindent 12 }} |
| 80 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
| 81 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 82 | ports: |
| 83 | - containerPort: {{ .Values.service.internalPort }} |
| 84 | # disable liveness probe when breakpoints set in debugger |
| 85 | # so K8s doesn't restart unresponsive container |
| 86 | {{ if .Values.liveness.enabled }} |
| 87 | livenessProbe: |
| 88 | httpGet: |
| 89 | path: /api/multicloud-titaniumcloud/v1/swagger.json |
| 90 | port: {{ .Values.service.internalPort }} |
| 91 | scheme: HTTPS |
| 92 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 93 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 94 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
| 95 | successThreshold: {{ .Values.liveness.successThreshold }} |
| 96 | failureThreshold: {{ .Values.liveness.failureThreshold }} |
| 97 | {{ end }} |
| 98 | # side car containers |
| 99 | - image: {{ include "repositoryGenerator.image.logging" . }} |
| 100 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 101 | name: filebeat-onap |
| 102 | volumeMounts: |
| 103 | - mountPath: /usr/share/filebeat/filebeat.yml |
| 104 | name: filebeat-conf |
| 105 | subPath: filebeat.yml |
| 106 | - mountPath: /var/log/onap |
| 107 | name: windriver-log |
| 108 | - mountPath: /usr/share/filebeat/data |
| 109 | name: windriver-data-filebeat |
| 110 | - image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.global.artifactImage }} |
| 111 | name: framework-artifactbroker |
| 112 | command: ["/opt/app/distribution/bin/artifact-dist.sh"] |
| 113 | args: ["/opt/app/distribution/etc/mounted/config.json"] |
| 114 | ports: |
| 115 | - containerPort: 9014 |
| 116 | protocol: TCP |
| 117 | volumeMounts: |
| 118 | - mountPath: /opt/app/distribution/etc/mounted/config.json |
| 119 | name: windriver-logconfig |
| 120 | subPath: config.json |
| 121 | - mountPath: /data |
| 122 | name: artifact-data |
farida azmy | 7251355 | 2021-10-12 18:55:21 +0200 | [diff] [blame] | 123 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
Sylvain Desbureaux | 37dc40c | 2020-11-21 22:46:57 +0100 | [diff] [blame] | 124 | volumes: |
| 125 | - name: windriver-log |
| 126 | emptyDir: {} |
| 127 | - name: windriver-data-filebeat |
| 128 | emptyDir: {} |
| 129 | - name: filebeat-conf |
| 130 | configMap: |
| 131 | name: multicloud-filebeat-configmap |
| 132 | - name: windriver-logconfig |
| 133 | configMap: |
| 134 | name: {{ include "common.fullname" . }}-log-configmap |
| 135 | - name: artifact-data |
| 136 | {{- if .Values.persistence.enabled }} |
| 137 | persistentVolumeClaim: |
| 138 | claimName: {{ include "common.fullname" . }} |
| 139 | {{- else }} |
| 140 | emptyDir: {} |
| 141 | {{- end }} |
| 142 | imagePullSecrets: |
| 143 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
| 144 | restartPolicy: Always |