BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
Mukul | 7de56c8 | 2018-09-04 08:03:27 +0000 | [diff] [blame] | 2 | # Modifications Copyright © 2018 AT&T |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 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 | apiVersion: extensions/v1beta1 |
Michael O'Brien | 286725f | 2018-05-18 01:51:02 -0400 | [diff] [blame] | 17 | kind: DaemonSet |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 18 | metadata: |
| 19 | name: {{ include "common.fullname" . }} |
| 20 | namespace: {{ include "common.namespace" . }} |
| 21 | labels: |
| 22 | app: {{ include "common.name" . }} |
| 23 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 24 | release: {{ .Release.Name }} |
| 25 | heritage: {{ .Release.Service }} |
| 26 | spec: |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 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 | - log-elasticsearch |
| 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: |
| 49 | - name: {{ include "common.name" . }} |
| 50 | image: "{{ .Values.global.loggingRepository| default .Values.loggingRepository }}/{{ .Values.image }}" |
| 51 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
vaibhavjayas | 659fbae | 2018-09-19 08:58:10 +0000 | [diff] [blame] | 52 | resources: |
| 53 | {{ toYaml (pluck .Values.flavor .Values.resources| first) | indent 12 }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 54 | ports: |
| 55 | - containerPort: {{ .Values.service.internalPort }} |
| 56 | name: {{ .Values.service.name }} |
BorislavG | 2cf2684 | 2018-04-08 17:50:07 +0300 | [diff] [blame] | 57 | - containerPort: {{ .Values.service.internalPort2 }} |
| 58 | name: {{ .Values.service.name2 }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 59 | readinessProbe: |
| 60 | tcpSocket: |
| 61 | port: {{ .Values.service.internalPort }} |
| 62 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 63 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 64 | # disable liveness probe when breakpoints set in debugger |
| 65 | # so K8s doesn't restart unresponsive container |
| 66 | {{- if eq .Values.liveness.enabled true }} |
| 67 | livenessProbe: |
| 68 | tcpSocket: |
| 69 | port: {{ .Values.service.internalPort }} |
| 70 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 71 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 72 | {{ end -}} |
| 73 | env: |
| 74 | volumeMounts: |
| 75 | - mountPath: /etc/localtime |
| 76 | name: localtime |
| 77 | readOnly: true |
root | 4565d0a | 2018-04-04 17:21:02 +0000 | [diff] [blame] | 78 | - mountPath: /usr/share/logstash/config/ |
| 79 | name: {{ include "common.fullname" . }}-config |
| 80 | - mountPath: /usr/share/logstash/pipeline/ |
| 81 | name: {{ include "common.fullname" . }}-pipeline |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 82 | volumes: |
| 83 | - name: localtime |
| 84 | hostPath: |
| 85 | path: /etc/localtime |
root | 4565d0a | 2018-04-04 17:21:02 +0000 | [diff] [blame] | 86 | - name: {{ include "common.fullname" . }}-config |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 87 | configMap: |
| 88 | name: {{ include "common.fullname" . }} |
| 89 | items: |
| 90 | - key: logstash.yml |
| 91 | path: logstash.yml |
root | 4565d0a | 2018-04-04 17:21:02 +0000 | [diff] [blame] | 92 | - name: {{ include "common.fullname" . }}-pipeline |
| 93 | configMap: |
| 94 | name: {{ include "common.fullname" . }} |
| 95 | items: |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 96 | - key: onap-pipeline.conf |
| 97 | path: onap-pipeline.conf |
| 98 | imagePullSecrets: |
| 99 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |