jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
| 2 | # |
| 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 |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 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. |
| 14 | |
| 15 | apiVersion: extensions/v1beta1 |
| 16 | kind: Deployment |
| 17 | metadata: |
| 18 | name: {{ include "common.fullname" . }} |
| 19 | namespace: {{ include "common.namespace" . }} |
| 20 | labels: |
| 21 | app: {{ include "common.name" . }} |
| 22 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 23 | release: {{ .Release.Name }} |
| 24 | heritage: {{ .Release.Service }} |
| 25 | spec: |
| 26 | replicas: {{ .Values.replicaCount }} |
| 27 | template: |
| 28 | metadata: |
| 29 | labels: |
| 30 | app: {{ include "common.name" . }} |
| 31 | release: {{ .Release.Name }} |
| 32 | spec: |
| 33 | initContainers: |
| 34 | - command: |
| 35 | - /root/ready.py |
| 36 | args: |
| 37 | - --container-name |
| 38 | - {{ .Values.config.mysqlChartName }} |
| 39 | - --container-name |
| 40 | - {{ .Values.config.sdncChartName }} |
| 41 | env: |
| 42 | - name: NAMESPACE |
| 43 | valueFrom: |
| 44 | fieldRef: |
| 45 | apiVersion: v1 |
| 46 | fieldPath: metadata.namespace |
| 47 | image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" |
| 48 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 49 | name: {{ include "common.name" . }}-readiness |
| 50 | containers: |
| 51 | - name: {{ include "common.name" . }} |
| 52 | command: ["/bin/bash"] |
| 53 | args: ["-c", "cd /opt/onap/sdnc/admportal/shell && ./start_portal.sh"] |
BorislavG | df11cd5 | 2018-05-06 12:55:20 +0000 | [diff] [blame] | 54 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 55 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 56 | ports: |
| 57 | - containerPort: {{ .Values.service.internalPort }} |
| 58 | # disable liveness probe when breakpoints set in debugger |
| 59 | # so K8s doesn't restart unresponsive container |
jmac | 2d276e0 | 2018-04-18 01:25:38 +0000 | [diff] [blame] | 60 | {{ if .Values.liveness.enabled }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 61 | livenessProbe: |
| 62 | tcpSocket: |
| 63 | port: {{ .Values.service.internalPort }} |
| 64 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 65 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
jmac | 2d276e0 | 2018-04-18 01:25:38 +0000 | [diff] [blame] | 66 | {{ end }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 67 | readinessProbe: |
| 68 | tcpSocket: |
| 69 | port: {{ .Values.service.internalPort }} |
| 70 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 71 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 72 | env: |
| 73 | - name: MYSQL_ROOT_PASSWORD |
| 74 | valueFrom: |
| 75 | secretKeyRef: |
| 76 | name: {{ template "common.fullname" . }} |
| 77 | key: db-root-password |
| 78 | - name: SDNC_CONFIG_DIR |
| 79 | value: "{{ .Values.config.configDir }}" |
| 80 | volumeMounts: |
| 81 | - mountPath: /etc/localtime |
| 82 | name: localtime |
| 83 | readOnly: true |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 84 | - mountPath: {{ .Values.config.configDir }}/admportal.json |
| 85 | name: properties |
| 86 | subPath: admportal.json |
| 87 | - mountPath: {{ .Values.config.configDir }}/dblib.properties |
| 88 | name: properties |
| 89 | subPath: dblib.properties |
| 90 | - mountPath: {{ .Values.config.configDir }}/svclogic.properties |
| 91 | name: properties |
| 92 | subPath: svclogic.properties |
| 93 | - mountPath: {{ .Values.config.configDir }}/svclogic.properties.sdnctldb01 |
| 94 | name: properties |
| 95 | subPath: svclogic.properties |
| 96 | - mountPath: {{ .Values.config.configDir }}/svclogic.properties.sdnctldb02 |
| 97 | name: properties |
| 98 | subPath: svclogic.properties.sdnctldb02 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 99 | resources: |
| 100 | {{ toYaml .Values.resources | indent 12 }} |
| 101 | {{- if .Values.nodeSelector }} |
| 102 | nodeSelector: |
| 103 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 104 | {{- end -}} |
| 105 | {{- if .Values.affinity }} |
| 106 | affinity: |
| 107 | {{ toYaml .Values.affinity | indent 10 }} |
| 108 | {{- end }} |
| 109 | volumes: |
| 110 | - name: localtime |
| 111 | hostPath: |
| 112 | path: /etc/localtime |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 113 | - name: properties |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 114 | configMap: |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 115 | name: {{ include "common.fullname" . }} |
| 116 | defaultMode: 0644 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 117 | imagePullSecrets: |
BorislavG | df11cd5 | 2018-05-06 12:55:20 +0000 | [diff] [blame] | 118 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |