blob: d52805b52086f8671fcc4a51830efe501ddff4f9 [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
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
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"
67 volumeMounts:
68 - name: socket
69 mountPath: /var/run/docker.sock
70 volumes:
71 - name: socket
72 hostPath:
73 path: /var/run/docker.sock