├── .gitignore ├── LICENSE ├── README.md └── tbmq ├── .helmignore ├── Chart.yaml ├── README.md ├── templates ├── NOTES.txt ├── _helpers.tpl ├── install │ ├── install-configmap.yaml │ ├── post-install-job.yaml │ └── pre-upgrade-job.yaml ├── kafka │ └── kafka-configmap.yaml ├── loadbalancer │ ├── aws │ │ ├── http-load-balancer.yaml │ │ └── mqtt-load-balancer.yaml │ ├── azure │ │ ├── http-load-balancer.yaml │ │ └── mqtt-load-balancer.yaml │ ├── default │ │ ├── http-load-balancer.yaml │ │ └── mqtt-load-balancer.yaml │ └── gcp │ │ ├── http-load-balancer.yaml │ │ └── mqtt-load-balancer.yaml ├── postgres │ ├── postgres-configmap.yaml │ └── postgres-secret.yaml ├── redis │ ├── redis-configmap.yaml │ └── redis-secret.yaml ├── regcred.yaml ├── tbmq-ie │ ├── tbmq-ie-custom-env.yaml │ ├── tbmq-ie-default-configmap.yaml │ ├── tbmq-ie-default-logback-configmap.yaml │ ├── tbmq-ie-service.yaml │ └── tbmq-ie-statefulset.yaml └── tbmq │ ├── tbmq-custom-env.yaml │ ├── tbmq-default-configmap.yaml │ ├── tbmq-default-logback-configmap.yaml │ ├── tbmq-service.yaml │ └── tbmq-statefulset.yaml └── values.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /tbmq/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/.helmignore -------------------------------------------------------------------------------- /tbmq/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/Chart.yaml -------------------------------------------------------------------------------- /tbmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/README.md -------------------------------------------------------------------------------- /tbmq/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/NOTES.txt -------------------------------------------------------------------------------- /tbmq/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/_helpers.tpl -------------------------------------------------------------------------------- /tbmq/templates/install/install-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/install/install-configmap.yaml -------------------------------------------------------------------------------- /tbmq/templates/install/post-install-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/install/post-install-job.yaml -------------------------------------------------------------------------------- /tbmq/templates/install/pre-upgrade-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/install/pre-upgrade-job.yaml -------------------------------------------------------------------------------- /tbmq/templates/kafka/kafka-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/kafka/kafka-configmap.yaml -------------------------------------------------------------------------------- /tbmq/templates/loadbalancer/aws/http-load-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/loadbalancer/aws/http-load-balancer.yaml -------------------------------------------------------------------------------- /tbmq/templates/loadbalancer/aws/mqtt-load-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/loadbalancer/aws/mqtt-load-balancer.yaml -------------------------------------------------------------------------------- /tbmq/templates/loadbalancer/azure/http-load-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/loadbalancer/azure/http-load-balancer.yaml -------------------------------------------------------------------------------- /tbmq/templates/loadbalancer/azure/mqtt-load-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/loadbalancer/azure/mqtt-load-balancer.yaml -------------------------------------------------------------------------------- /tbmq/templates/loadbalancer/default/http-load-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/loadbalancer/default/http-load-balancer.yaml -------------------------------------------------------------------------------- /tbmq/templates/loadbalancer/default/mqtt-load-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/loadbalancer/default/mqtt-load-balancer.yaml -------------------------------------------------------------------------------- /tbmq/templates/loadbalancer/gcp/http-load-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/loadbalancer/gcp/http-load-balancer.yaml -------------------------------------------------------------------------------- /tbmq/templates/loadbalancer/gcp/mqtt-load-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/loadbalancer/gcp/mqtt-load-balancer.yaml -------------------------------------------------------------------------------- /tbmq/templates/postgres/postgres-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/postgres/postgres-configmap.yaml -------------------------------------------------------------------------------- /tbmq/templates/postgres/postgres-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/postgres/postgres-secret.yaml -------------------------------------------------------------------------------- /tbmq/templates/redis/redis-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/redis/redis-configmap.yaml -------------------------------------------------------------------------------- /tbmq/templates/redis/redis-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/redis/redis-secret.yaml -------------------------------------------------------------------------------- /tbmq/templates/regcred.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/regcred.yaml -------------------------------------------------------------------------------- /tbmq/templates/tbmq-ie/tbmq-ie-custom-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/tbmq-ie/tbmq-ie-custom-env.yaml -------------------------------------------------------------------------------- /tbmq/templates/tbmq-ie/tbmq-ie-default-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/tbmq-ie/tbmq-ie-default-configmap.yaml -------------------------------------------------------------------------------- /tbmq/templates/tbmq-ie/tbmq-ie-default-logback-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/tbmq-ie/tbmq-ie-default-logback-configmap.yaml -------------------------------------------------------------------------------- /tbmq/templates/tbmq-ie/tbmq-ie-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/tbmq-ie/tbmq-ie-service.yaml -------------------------------------------------------------------------------- /tbmq/templates/tbmq-ie/tbmq-ie-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/tbmq-ie/tbmq-ie-statefulset.yaml -------------------------------------------------------------------------------- /tbmq/templates/tbmq/tbmq-custom-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/tbmq/tbmq-custom-env.yaml -------------------------------------------------------------------------------- /tbmq/templates/tbmq/tbmq-default-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/tbmq/tbmq-default-configmap.yaml -------------------------------------------------------------------------------- /tbmq/templates/tbmq/tbmq-default-logback-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/tbmq/tbmq-default-logback-configmap.yaml -------------------------------------------------------------------------------- /tbmq/templates/tbmq/tbmq-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/tbmq/tbmq-service.yaml -------------------------------------------------------------------------------- /tbmq/templates/tbmq/tbmq-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/templates/tbmq/tbmq-statefulset.yaml -------------------------------------------------------------------------------- /tbmq/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingsboard/helm-charts/HEAD/tbmq/values.yaml --------------------------------------------------------------------------------