Set up MQTT Broker Optional

In this lab, we will use EMQX as the broker infrastructure. Learn full steps.

  1. Add EMQX Helm Chart repository

    helm repo add emqx https://repos.emqx.io/charts
    helm repo update
  2. Search available charts of EMQX

    helm search repo emqx
    
    NAME               CHART VERSION APP VERSION DESCRIPTION
    emqx/emqx          4.4.3         4.4.3       A Helm chart for EMQX
    emqx/emqx-ee       4.4.3         4.4.3       A Helm chart for EMQ X
  3. Deploy single replica of EMQX, and expose NodePort service

    helm install emqx emqx/emqx --set replicaCount=1 --set service.type=NodePort