Message-router parameterization
[oom.git] / kubernetes / message-router / templates / message-router-kafka.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 #{{ if not .Values.disableMessageRouterGlobalKafka }}
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: message-router-global-kafka
20   namespace: "{{ .Values.nsPrefix }}"
21 spec:
22   replicas: {{ .Values.kafkaReplicas }}
23   selector:
24     matchLabels:
25       app: global-kafka
26   template:
27     metadata:
28       labels:
29         app: global-kafka
30       name: message-router-global-kafka
31     spec:
32       initContainers:
33       - command:
34         - bash
35         args:
36         - -c
37         - "if [ -d /var/tmp/SDC-DISTR-NOTIF-TOPIC-SDC-OPENSOURCE-ENV1-0 ]; then echo nothing to do; else cp -a /opt/config/src/message-router/dcae-startup-vm-message-router/docker_files/data-kafka/* /var/tmp/; fi"
38         image: {{ .Values.image.config }}
39         imagePullPolicy: {{ .Values.pullPolicy }}
40         volumeMounts:
41         - mountPath: /var/tmp
42           name: kafka-data
43         name: kafka-primer
44       - command:
45         - /root/ready.py
46         args:
47         - --container-name
48         - zookeeper
49         env:
50         - name: NAMESPACE
51           valueFrom:
52             fieldRef:
53               apiVersion: v1
54               fieldPath: metadata.namespace
55         image: {{ .Values.image.readiness }}
56         imagePullPolicy: {{ .Values.pullPolicy }}
57         name: kafka-readiness
58       containers:
59       - image: {{ .Values.image.kafka }}
60         imagePullPolicy: {{ .Values.pullPolicy }}
61         name: global-kafka
62         ports:
63         - containerPort: 9092
64         readinessProbe:
65           tcpSocket:
66             port: 9092
67           initialDelaySeconds: 5
68           periodSeconds: 10
69         env:
70         - name: KAFKA_ZOOKEEPER_CONNECT
71           value: "zookeeper.{{ .Values.nsPrefix }}:2181"
72         - name: KAFKA_ADVERTISED_HOST_NAME
73           value: "global-kafka"
74         - name: KAFKA_BROKER_ID
75           value: "1"
76         - name: KAFKA_ADVERTISED_PORT
77           value: "9092"
78         - name: KAFKA_PORT
79           value: "9092"
80         volumeMounts:
81         - mountPath: /etc/localtime
82           name: localtime
83           readOnly: true
84         - mountPath: /var/run/docker.sock
85           name: docker-socket
86         - mountPath: /kafka
87           name: kafka-data
88       restartPolicy: Always
89       volumes:
90       - name: localtime
91         hostPath:
92           path: /etc/localtime
93       - name: docker-socket
94         hostPath:
95           path: /var/run/docker.sock
96       - name: kafka-data
97         persistentVolumeClaim:
98           claimName: message-router-kafka
99       imagePullSecrets:
100       - name: "{{ .Values.nsPrefix }}-docker-registry-key"
101 #{{ end }}
102