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 | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 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.mariadb.nameOverride }} |
| 39 | env: |
| 40 | - name: NAMESPACE |
| 41 | valueFrom: |
| 42 | fieldRef: |
| 43 | apiVersion: v1 |
| 44 | fieldPath: metadata.namespace |
| 45 | image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" |
| 46 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 47 | name: {{ include "common.name" . }}-readiness |
| 48 | containers: |
ac2550 | de00989 | 2018-05-24 15:47:05 +0200 | [diff] [blame] | 49 | # side car containers |
| 50 | - name: {{ include "common.name" . }}-filebeat-onap |
| 51 | image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}" |
| 52 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 53 | volumeMounts: |
| 54 | - name: {{ include "common.fullname" . }}-filebeat-conf |
| 55 | mountPath: /usr/share/filebeat/filebeat.yml |
| 56 | subPath: filebeat.yml |
| 57 | - name: {{ include "common.fullname" . }}-data-filebeat |
Michael O'Brien | efcadf5 | 2018-07-23 17:31:05 -0400 | [diff] [blame^] | 58 | mountPath: /usr/share/filebeat/data |
ac2550 | de00989 | 2018-05-24 15:47:05 +0200 | [diff] [blame] | 59 | - name: {{ include "common.fullname" . }}-logs |
| 60 | mountPath: /var/log/onap |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 61 | - name: {{ include "common.name" . }} |
BorislavG | df11cd5 | 2018-05-06 12:55:20 +0000 | [diff] [blame] | 62 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 63 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
ac2550 | de00989 | 2018-05-24 15:47:05 +0200 | [diff] [blame] | 64 | args: |
| 65 | - "-Dcom.att.eelf.logging.file=file:/opt/clamp/logback.xml" |
| 66 | - "" |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 67 | ports: |
| 68 | - containerPort: {{ .Values.service.internalPort }} |
| 69 | # disable liveness probe when breakpoints set in debugger |
| 70 | # so K8s doesn't restart unresponsive container |
| 71 | {{- if eq .Values.liveness.enabled true }} |
| 72 | livenessProbe: |
| 73 | tcpSocket: |
| 74 | port: {{ .Values.service.internalPort }} |
| 75 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 76 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 77 | {{ end -}} |
| 78 | readinessProbe: |
| 79 | tcpSocket: |
| 80 | port: {{ .Values.service.internalPort }} |
| 81 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 82 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
ac2550 | 7895b2c | 2018-05-16 14:31:23 +0200 | [diff] [blame] | 83 | volumeMounts: |
ac2550 | de00989 | 2018-05-24 15:47:05 +0200 | [diff] [blame] | 84 | - name: {{ include "common.fullname" . }}-logs |
| 85 | mountPath: /var/log/onap |
ac2550 | 7895b2c | 2018-05-16 14:31:23 +0200 | [diff] [blame] | 86 | - mountPath: /opt/clamp/sdc-controllers-config.json |
| 87 | name: {{ include "common.fullname" . }}-config |
| 88 | subPath: sdc-controllers-config.json |
ac2550 | de00989 | 2018-05-24 15:47:05 +0200 | [diff] [blame] | 89 | - mountPath: /opt/clamp/logback.xml |
| 90 | name: {{ include "common.fullname" . }}-config |
| 91 | subPath: logback.xml |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 92 | env: |
| 93 | - name: SPRING_APPLICATION_JSON |
| 94 | valueFrom: |
| 95 | configMapKeyRef: |
| 96 | name: {{ template "common.fullname" . }} |
| 97 | key: spring_application_json |
| 98 | resources: |
| 99 | {{ toYaml .Values.resources | indent 12 }} |
| 100 | {{- if .Values.nodeSelector }} |
| 101 | nodeSelector: |
| 102 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 103 | {{- end -}} |
| 104 | {{- if .Values.affinity }} |
| 105 | affinity: |
| 106 | {{ toYaml .Values.affinity | indent 10 }} |
| 107 | {{- end }} |
ac2550 | 7895b2c | 2018-05-16 14:31:23 +0200 | [diff] [blame] | 108 | volumes: |
| 109 | - name: {{ include "common.fullname" . }}-config |
| 110 | configMap: |
| 111 | name: {{ include "common.fullname" . }} |
| 112 | items: |
| 113 | - key: sdc-controllers-config.json |
| 114 | path: sdc-controllers-config.json |
ac2550 | de00989 | 2018-05-24 15:47:05 +0200 | [diff] [blame] | 115 | - key: logback.xml |
| 116 | path: logback.xml |
| 117 | - name: {{ include "common.fullname" . }}-filebeat-conf |
| 118 | configMap: |
| 119 | name: {{ .Release.Name }}-clamp-filebeat-configmap |
| 120 | - name: {{ include "common.fullname" . }}-data-filebeat |
| 121 | emptyDir: {} |
| 122 | - name: {{ include "common.fullname" . }}-logs |
| 123 | emptyDir: {} |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 124 | imagePullSecrets: |
| 125 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |