Correcting message-router topic seeding
[oom.git] / kubernetes / dmaap / charts / message-router / charts / message-router-kafka / templates / deployment.yaml
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       - name: {{ include "common.name" . }}-seed-kafka-topics
35         command:
36         - /bin/bash
37         - -c
38         - >
39           if [ -d /tmp/topics/ECOMP-PORTAL-INBOX-0 ]; then
40           echo "nothing to do";
41           else
42           git clone -b {{ .Values.config.gerritBranch }} --single-branch {{ .Values.config.gerritProject }} /tmp/gerrit;
43           echo "Clone complete. Copying from /tmp/gerrit/oom-projects/data-kafka/kafka-logs/* to /tmp/topics";
44           cp -var /tmp/gerrit/oom-topics/data-kafka/kafka-logs/* /tmp/topics;
45           echo "Done.";
46           fi
47         image: "{{ .Values.global.ubuntuInitRepository }}/{{ .Values.ubuntuInitImage }}"
48         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
49         volumeMounts:
50         - mountPath: /tmp/topics
51           name: kafka-data
52       - command:
53         - /root/ready.py
54         args:
55         - --container-name
56         - {{ .Values.zookeeper.name }}
57         env:
58         - name: NAMESPACE
59           valueFrom:
60             fieldRef:
61               apiVersion: v1
62               fieldPath: metadata.namespace
63         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
64         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
65         name: {{ include "common.name" . }}-readiness
66       containers:
67       - name: {{ include "common.name" .  }}
68         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
69         imagePullPolicy:  {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
70         ports:
71         - containerPort: {{ .Values.service.internalPort }}
72         {{ if eq .Values.liveness.enabled true }}
73         livenessProbe:
74           tcpSocket:
75             port: {{ .Values.service.internalPort }}
76           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
77           periodSeconds: {{ .Values.liveness.periodSeconds }}
78         {{ end }}
79         readinessProbe:
80           tcpSocket:
81             port: {{ .Values.service.internalPort }}
82           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
83           periodSeconds: {{ .Values.readiness.periodSeconds }}
84         env:
85         - name: KAFKA_ZOOKEEPER_CONNECT
86           value: "{{.Values.zookeeper.name}}:{{.Values.zookeeper.port}}"
87         - name: KAFKA_ADVERTISED_HOST_NAME
88           value: "{{ include "common.servicename" .  }}"
89         - name: KAFKA_BROKER_ID
90           value: "0"
91         - name: KAFKA_ADVERTISED_LISTENERS
92           value: PLAINTEXT://{{ include "common.name" .  }}:{{.Values.service.internalPort}}
93         - name: KAFKA_ADVERTISED_PORT
94           value: "{{.Values.service.internalPort}}"
95         - name: KAFKA_PORT
96           value: "{{.Values.service.internalPort}}"
97         volumeMounts:
98         - mountPath: /etc/localtime
99           name: localtime
100           readOnly: true
101         - mountPath: /var/run/docker.sock
102           name: docker-socket
103         - mountPath: /kafka
104           name: kafka-data
105       volumes:
106       - name: localtime
107         hostPath:
108           path: /etc/localtime
109       - name: docker-socket
110         hostPath:
111           path: /var/run/docker.sock
112       - name: kafka-data
113         persistentVolumeClaim:
114           claimName: {{ include "common.fullname" . }}
115       imagePullSecrets:
116       - name: "{{ include "common.namespace" . }}-docker-registry-key"