| vijaynag | 8339ed2 | 2019-07-25 17:10:58 +0530 | [diff] [blame] | 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 |
| romeromonser | e366b1a | 2019-11-19 19:49:26 +0100 | [diff] [blame] | 60 | value: kafka.osm |
| vijaynag | 8339ed2 | 2019-07-25 17:10:58 +0530 | [diff] [blame] | 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" |
| garciadeblas | 9e63737 | 2020-06-12 14:29:48 +0000 | [diff] [blame] | 67 | - name: KAFKA_BROKER_ID |
| 68 | value: "1" |
| 69 | - name: KAFKA_ADVERTISED_LISTENERS |
| 70 | value: "PLAINTEXT://:9092" |
| bravof | e06f72c | 2020-06-22 16:59:49 -0400 | [diff] [blame] | 71 | - name: KAFKA_LISTENERS |
| garciadeblas | 9e63737 | 2020-06-12 14:29:48 +0000 | [diff] [blame] | 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 | - name: KAFKA_AUTO_CREATE_TOPICS_ENABLE |
| 78 | value: "false" |
| bravof | e06f72c | 2020-06-22 16:59:49 -0400 | [diff] [blame] | 79 | - name: KAFKA_CREATE_TOPICS |
| garciadeblas | 9e63737 | 2020-06-12 14:29:48 +0000 | [diff] [blame] | 80 | value: "admin:1:1,users:1:1,projects:1:1,vim_account:1:1,wim_account:1:1,sdn:1:1,k8scluster:1:1,k8srepo:1:1,osmrepos:1:1,vnfd:1:1,nsd:1:1,nst:1:1,pdu:1:1,ns:1:1,nsi:1:1,alarm_request:1:1,alarm_response:1:1" |
| vijaynag | 8339ed2 | 2019-07-25 17:10:58 +0530 | [diff] [blame] | 81 | volumeMounts: |
| 82 | - name: socket |
| 83 | mountPath: /var/run/docker.sock |
| 84 | volumes: |
| 85 | - name: socket |
| 86 | hostPath: |
| 87 | path: /var/run/docker.sock |