iT邦幫忙

2021 iThome 鐵人賽

DAY 18
0
DevOps

玩耍開源k8s30天系列 第 18

day18 : kafka服務應用 on K8S (下)

  • 分享至 

  • xImage
  •  

昨天介紹了kafka的機制,今天將會透過strimzi的方式配置kafka cluster,同樣的會介紹用operator的方式進行佈署,strimzi可以管理kafka的叢集、user、topic跟bridge連線,那麼就來嘗試玩看看吧。

首先創建一個kafka的namespaces

kubectl create ns strimzi
#下載yaml 
wget https://strimzi.io/install/latest?namespace=strimzi
kubectl apply -f yaml -n strimzi

https://ithelp.ithome.com.tw/upload/images/20210918/20139661QucwtDWO9h.png
完成crd後就可以創建kafka cluster的instance囉

apiVersion: kafka.strimzi.io/v1beta2
kind: Kafka
metadata:
  name: lab1-kafka
spec:
  kafka:
    version: 2.8.0
    replicas: 1
    listeners:
      - name: plain
        port: 9092
        type: internal
        tls: false
      - name: tls
        port: 9093
        type: internal
        tls: true
    config:
      offsets.topic.replication.factor: 1
      transaction.state.log.replication.factor: 1
      transaction.state.log.min.isr: 1
      log.message.format.version: "2.8"
      inter.broker.protocol.version: "2.8"
    storage:
      type: jbod
      volumes:
      - id: 0
        type: persistent-claim
        size: 20Gi
        deleteClaim: false
    template:
      pod:
        securityContext:
          runAsUser: 0
          fsGroup: 0
  zookeeper:
    replicas: 1
    storage:
      type: persistent-claim
      size: 20Gi
      deleteClaim: false
    template:
      pod:
        securityContext:
          runAsUser: 0
          fsGroup: 0
  entityOperator:
    topicOperator: {}
    userOperator: {}

https://ithelp.ithome.com.tw/upload/images/20210918/20139661n61N60nvU1.png
這樣就會建出kafka囉,那就來使用看看吧

kubectl -n strimzi run kafka-producer -ti --image=quay.io/strimzi/kafka:0.25.0-kafka-2.8.0 --rm=true --restart=Never -- bin/kafka-console-producer.sh --broker-list my-cluster-kafka-bootstrap:9092 --topic my-topic

https://ithelp.ithome.com.tw/upload/images/20210918/20139661oFglrmu06j.png

kubectl -n strimzi run kafka-consumer-2 -ti --image=quay.io/strimzi/kafka:0.25.0-kafka-2.8.0 --rm=true --restart=Never -- bin/kafka-console-consumer.sh --bootstrap-server my-cluster-kafka-bootstrap:9092 --topic my-topic --from-beginning

https://ithelp.ithome.com.tw/upload/images/20210918/20139661kkKVKRKIdo.png

看起來沒什麼問題呢,那麼要從外部使用kafka的話,strimzi有開發kafka-bridge讓外部使用http或是amqp的方式連線進去使用kafka,而topic也可以用crd進行控管。


上一篇
day17 : kafka服務應用 on K8S (上)
下一篇
day19 : redisDB keyDB on K8S (上)
系列文
玩耍開源k8s30天31
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言