License addition in all yamls
[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         - /root/ready.py
35         args:
36         - --container-name
37         - zookeeper
38         env:
39         - name: NAMESPACE
40           valueFrom:
41             fieldRef:
42               apiVersion: v1
43               fieldPath: metadata.namespace
44         image: {{ .Values.image.readiness }}
45         imagePullPolicy: {{ .Values.pullPolicy }}
46         name: kafka-readiness
47       containers:
48       - image: {{ .Values.image.kafka }}
49         imagePullPolicy: {{ .Values.pullPolicy }}
50         name: global-kafka
51         ports:
52         - containerPort: 9092
53         readinessProbe:
54           tcpSocket:
55             port: 9092
56           initialDelaySeconds: 5
57           periodSeconds: 10
58         env:
59         - name: KAFKA_ZOOKEEPER_CONNECT
60           value: "zookeeper.{{ .Values.nsPrefix }}:2181"
61         - name: KAFKA_ADVERTISED_HOST_NAME
62           value: "global-kafka"
63         - name: KAFKA_BROKER_ID
64           value: "1"
65         - name: KAFKA_ADVERTISED_PORT
66           value: "9092"
67         - name: KAFKA_PORT
68           value: "9092"
69         volumeMounts:
70         - mountPath: /etc/localtime
71           name: localtime
72           readOnly: true
73         - mountPath: /var/run/docker.sock
74           name: docker-socket
75         - mountPath: /kafka
76           name: kafka-data
77       restartPolicy: Always
78       volumes:
79       - name: localtime
80         hostPath:
81           path: /etc/localtime
82       - name: docker-socket
83         hostPath:
84           path: /var/run/docker.sock
85       - name: kafka-data
86         persistentVolumeClaim:
87           claimName: message-router-kafka
88       imagePullSecrets:
89       - name: "{{ .Values.nsPrefix }}-docker-registry-key"
90 #{{ end }}