Enable autocreation topic in kafka for POL and MON
[osm/devops.git] / installers / docker / osm_pods / kafka.yaml
1 # Copyright 2019 TATA ELXSI
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
12 # implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License
15 # Author: Vijay Nag B S (vijaynag.bs@tataelxsi.co.in)
16
17 apiVersion: v1
18 kind: Service
19 metadata:
20   name: kafka
21 spec:
22   clusterIP: None
23   ports:
24   - port: 9092
25     protocol: TCP
26     targetPort: 9092
27   selector:
28     app: kafka
29   type: ClusterIP
30 ---
31 apiVersion: apps/v1
32 kind: StatefulSet
33 metadata:
34   name: kafka
35   labels:
36     app: kafka
37 spec:
38   replicas: 1
39   serviceName: kafka
40   selector:
41     matchLabels:
42       app: kafka
43   template:
44     metadata:
45       labels:
46         app: kafka
47     spec:
48       initContainers:
49       - name: zookeeper-test
50         image: alpine:latest
51         command: ["sh", "-c", "until nc -zvw1 zookeeper 2181; do sleep3; done; exit 0"]
52       containers:
53       - name: kafka
54         image: wurstmeister/kafka:2.11-1.0.2
55         ports:
56         - containerPort: 9092
57           protocol: TCP
58         env:
59          - name: KAFKA_ADVERTISED_HOST_NAME
60            value: kafka.osm
61          - name: KAFKA_ADVERTISED_PORT
62            value: "9092"
63          - name: KAFKA_ZOOKEEPER_CONNECT
64            value: zookeeper:2181
65          - name: KAFKA_LOG_RETENTION_HOURS
66            value: "24"
67          - name: KAFKA_BROKER_ID
68            value: "1"
69          - name: KAFKA_ADVERTISED_LISTENERS
70            value: "PLAINTEXT://:9092"
71          - name: KAFKA_LISTENERS
72            value: "PLAINTEXT://:9092"
73          - name: KAFKA_INTER_BROKER_LISTENER_NAME
74            value: "PLAINTEXT"
75          - name: KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR
76            value: "1"
77         volumeMounts:
78         - name: socket
79           mountPath: /var/run/docker.sock
80       volumes:
81       - name: socket
82         hostPath:
83          path: /var/run/docker.sock