vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +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 | |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 15 | apiVersion: extensions/v1beta1 |
| 16 | kind: Deployment |
| 17 | metadata: |
Mandeep Khinda | 930bd69 | 2018-03-20 21:00:33 +0000 | [diff] [blame] | 18 | name: {{ include "common.fullname" . }} |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 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: |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 26 | replicas: {{ .Values.replicaCount }} |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 27 | template: |
| 28 | metadata: |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 29 | labels: |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 30 | app: {{ include "common.name" . }} |
| 31 | release: {{ .Release.Name }} |
| 32 | spec: |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 33 | initContainers: |
| 34 | - name: {{ include "common.name" . }}-inject-demo-project |
| 35 | command: |
| 36 | - /bin/bash |
| 37 | - -c |
| 38 | - > |
| 39 | git clone -b {{ .Values.config.gerritBranch }} --single-branch {{ .Values.config.gerritProject }} /tmp/gerrit; |
| 40 | echo "Clone complete. Copying from /tmp/gerrit/heat to /share"; |
| 41 | cp -rf /tmp/gerrit/heat /share; |
| 42 | echo "Done."; |
| 43 | image: "{{ .Values.global.ubuntuInitRepository }}/{{ .Values.ubuntuInitImage }}" |
| 44 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 45 | volumeMounts: |
| 46 | - name: demodir |
| 47 | mountPath: "/share" |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 48 | containers: |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 49 | - name: {{ include "common.name" . }} |
| 50 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
| 51 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 52 | ports: |
| 53 | - containerPort: {{ .Values.service.internalPort }} |
| 54 | {{ if .Values.liveness.enabled }} |
| 55 | livenessProbe: |
| 56 | tcpSocket: |
| 57 | port: {{ .Values.service.internalPort }} |
| 58 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 59 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 60 | {{ end }} |
| 61 | readinessProbe: |
| 62 | tcpSocket: |
| 63 | port: {{ .Values.service.internalPort }} |
| 64 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 65 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 66 | volumeMounts: |
| 67 | - name: localtime |
| 68 | mountPath: /etc/localtime |
| 69 | readOnly: true |
| 70 | - name: robot-eteshare |
| 71 | mountPath: /share/config |
| 72 | - name: robot-resources |
| 73 | mountPath: /var/opt/OpenECOMP_ETE/robot/resources/policy_interface.robot |
| 74 | subPath: policy_interface.robot |
| 75 | - name: robot-resources |
| 76 | mountPath: /var/opt/OpenECOMP_ETE/robot/resources/sdngc_interface.robot |
| 77 | subPath: sdngc_interface.robot |
| 78 | - name: robot-lighttpd-authorization |
| 79 | mountPath: /etc/lighttpd/authorization |
| 80 | subPath: authorization |
| 81 | - name: demodir |
| 82 | mountPath: /share |
| 83 | resources: |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 84 | {{ toYaml .Values.resources | indent 12 }} |
| 85 | {{- if .Values.nodeSelector }} |
| 86 | nodeSelector: |
| 87 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 88 | {{- end -}} |
| 89 | {{- if .Values.affinity }} |
| 90 | affinity: |
| 91 | {{ toYaml .Values.affinity | indent 10 }} |
| 92 | {{- end }} |
| 93 | volumes: |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 94 | - name: localtime |
| 95 | hostPath: |
| 96 | path: /etc/localtime |
| 97 | - name: robot-eteshare |
| 98 | configMap: |
| 99 | name: {{ include "common.fullname" . }}-eteshare-configmap |
| 100 | defaultMode: 0755 |
| 101 | - name: robot-resources |
| 102 | configMap: |
| 103 | name: {{ include "common.fullname" . }}-resources-configmap |
| 104 | - name: robot-lighttpd-authorization |
| 105 | configMap: |
| 106 | name: {{ include "common.fullname" . }}-lighttpd-authorization-configmap |
| 107 | - name: demodir |
| 108 | emptyDir: {} |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 109 | imagePullSecrets: |
| 110 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |