blob: 69b56bfebb213362ff6a34021b77721934e64730 [file] [log] [blame]
vijaynag8339ed22019-07-25 17:10:58 +05301# 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
17apiVersion: v1
18kind: Service
19metadata:
20 name: kafka
21spec:
22 clusterIP: None
23 ports:
24 - port: 9092
25 protocol: TCP
26 targetPort: 9092
27 selector:
28 app: kafka
29 type: ClusterIP
30---
31apiVersion: apps/v1
32kind: StatefulSet
33metadata:
34 name: kafka
35 labels:
36 app: kafka
37spec:
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
garciadeblas33f93152021-03-26 13:26:20 +010051 command: ["sh", "-c", "until nc -zvw1 zookeeper 2181; do sleep 3; done; exit 0"]
vijaynag8339ed22019-07-25 17:10:58 +053052 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
romeromonsere366b1a2019-11-19 19:49:26 +010060 value: kafka.osm
vijaynag8339ed22019-07-25 17:10:58 +053061 - 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"
garciadeblas9e637372020-06-12 14:29:48 +000067 - name: KAFKA_BROKER_ID
68 value: "1"
69 - name: KAFKA_ADVERTISED_LISTENERS
70 value: "PLAINTEXT://:9092"
bravofe06f72c2020-06-22 16:59:49 -040071 - name: KAFKA_LISTENERS
garciadeblas9e637372020-06-12 14:29:48 +000072 value: "PLAINTEXT://:9092"
73 - name: KAFKA_INTER_BROKER_LISTENER_NAME
74 value: "PLAINTEXT"
75 - name: KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR
76 value: "1"
vijaynag8339ed22019-07-25 17:10:58 +053077 volumeMounts:
78 - name: socket
79 mountPath: /var/run/docker.sock
80 volumes:
81 - name: socket
82 hostPath:
83 path: /var/run/docker.sock