├── .asf.yaml ├── .ci ├── auth │ ├── keycloak │ │ ├── 0-realm-pulsar-partial-export.json │ │ ├── 1-client-template.json │ │ ├── README.md │ │ └── values.yaml │ └── oauth2 │ │ └── credentials_file.json ├── chart_test.sh ├── clusters │ ├── values-bk-tls.yaml │ ├── values-broker-tls.yaml │ ├── values-cacerts.yaml │ ├── values-dekaf.yaml │ ├── values-jwt-asymmetric.yaml │ ├── values-jwt-symmetric.yaml │ ├── values-openid.yaml │ ├── values-oxia.yaml │ ├── values-pulsar-manager.yaml │ ├── values-pulsar-previous-lts.yaml │ ├── values-tls.yaml │ ├── values-upgrade.yaml │ ├── values-victoria-metrics-grafana.yaml │ ├── values-zk-tls.yaml │ └── values-zkbk-tls.yaml ├── configure_ci_runner_for_debugging.sh ├── helm.sh ├── kustomization.yaml ├── metallb │ └── metallb-config.yaml └── values-common.yaml ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── chart-testing-action │ │ ├── README.md │ │ ├── action.yml │ │ └── ct.sh │ ├── ssh-access │ │ └── action.yml │ └── tune-runner-vm │ │ └── action.yml ├── changes-filter.yaml └── workflows │ └── pulsar-helm-chart-ci.yaml ├── .gitignore ├── .rat-excludes ├── LICENSE ├── NOTICE ├── README.md ├── RELEASE.md ├── Vagrantfile ├── charts └── pulsar │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE │ ├── NOTICE │ ├── templates │ ├── NOTES.txt │ ├── _autorecovery.tpl │ ├── _bookkeeper.tpl │ ├── _broker.tpl │ ├── _certs.tpl │ ├── _configurationstore.tpl │ ├── _dekaf.tpl │ ├── _helpers.tpl │ ├── _monitor.tpl │ ├── _oxia.tpl │ ├── _proxy.tpl │ ├── _toolset.tpl │ ├── _tplvalues.tpl │ ├── _values_validation.tpl │ ├── _zookeeper.tpl │ ├── autorecovery-configmap.yaml │ ├── autorecovery-podmonitor.yaml │ ├── autorecovery-service-account.yaml │ ├── autorecovery-service.yaml │ ├── autorecovery-statefulset.yaml │ ├── bookkeeper-cluster-initialize.yaml │ ├── bookkeeper-configmap.yaml │ ├── bookkeeper-pdb.yaml │ ├── bookkeeper-podmonitor.yaml │ ├── bookkeeper-service-account.yaml │ ├── bookkeeper-service.yaml │ ├── bookkeeper-statefulset.yaml │ ├── bookkeeper-storageclass.yaml │ ├── broker-cluster-role-binding.yaml │ ├── broker-configmap.yaml │ ├── broker-hpa.yaml │ ├── broker-pdb.yaml │ ├── broker-podmonitor.yaml │ ├── broker-rbac.yaml │ ├── broker-service-account.yaml │ ├── broker-service.yaml │ ├── broker-statefulset.yaml │ ├── certs-scripts-configmap.yaml │ ├── check_helm_version.yaml │ ├── dekaf-deployment.yaml │ ├── dekaf-persistence.yaml │ ├── dekaf-service.yaml │ ├── extra-list.yaml │ ├── namespace.yaml │ ├── oxia-coordinator-configmap.yaml │ ├── oxia-coordinator-deployment.yaml │ ├── oxia-coordinator-podmonitor.yaml │ ├── oxia-coordinator-role.yaml │ ├── oxia-coordinator-rolebinding.yaml │ ├── oxia-coordinator-service.yaml │ ├── oxia-coordinator-serviceaccount.yaml │ ├── oxia-server-podmonitor.yaml │ ├── oxia-server-service-public.yaml │ ├── oxia-server-service.yaml │ ├── oxia-server-serviceaccount.yaml │ ├── oxia-server-statefulset.yaml │ ├── proxy-configmap.yaml │ ├── proxy-hpa.yaml │ ├── proxy-ingress.yaml │ ├── proxy-pdb.yaml │ ├── proxy-podmonitor.yaml │ ├── proxy-service-account.yaml │ ├── proxy-service.yaml │ ├── proxy-statefulset.yaml │ ├── pulsar-cluster-initialize.yaml │ ├── pulsar-manager-admin-secret.yaml │ ├── pulsar-manager-cluster-initialize.yaml │ ├── pulsar-manager-configmap.yaml │ ├── pulsar-manager-ingress.yaml │ ├── pulsar-manager-service.yaml │ ├── pulsar-manager-statefulset.yaml │ ├── tls-cert-internal-issuer.yaml │ ├── tls-certs-internal.yaml │ ├── toolset-configmap.yaml │ ├── toolset-service-account.yaml │ ├── toolset-service.yaml │ ├── toolset-statefulset.yaml │ ├── zookeeper-configmap.yaml │ ├── zookeeper-pdb.yaml │ ├── zookeeper-podmonitor.yaml │ ├── zookeeper-service-account.yaml │ ├── zookeeper-service.yaml │ ├── zookeeper-statefulset.yaml │ └── zookeeper-storageclass.yaml │ └── values.yaml ├── examples ├── values-bookkeeper-aws.yaml ├── values-cs.yaml ├── values-disable-monitoring.yaml ├── values-init-containers.yaml ├── values-jwt-asymmetric.yaml ├── values-jwt-symmetric.yaml ├── values-local-cluster.yaml ├── values-local-pv.yaml ├── values-minikube.yaml ├── values-no-persistence.yaml ├── values-one-node.yaml ├── values-oxia.yaml ├── values-testing.yaml ├── values-tls-ca.yaml ├── values-tls-selfsigned.yaml └── values-zookeeper-aws.yaml ├── hack ├── common.sh └── kind-cluster-build.sh ├── license_test.go └── scripts ├── cert-manager └── install-cert-manager.sh ├── kube-prometheus-stack └── upgrade_prometheus_operator_crds.sh ├── pulsar ├── cleanup_helm_release.sh ├── common.sh ├── common_auth.sh ├── generate_token.sh ├── generate_token_secret_key.sh ├── get_token.sh └── prepare_helm_release.sh ├── set-pulsar-version.sh ├── sign.sh └── victoria-metrics-k8s-stack └── upgrade_vm_operator_crds.sh /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.ci/auth/keycloak/0-realm-pulsar-partial-export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/auth/keycloak/0-realm-pulsar-partial-export.json -------------------------------------------------------------------------------- /.ci/auth/keycloak/1-client-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/auth/keycloak/1-client-template.json -------------------------------------------------------------------------------- /.ci/auth/keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/auth/keycloak/README.md -------------------------------------------------------------------------------- /.ci/auth/keycloak/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/auth/keycloak/values.yaml -------------------------------------------------------------------------------- /.ci/auth/oauth2/credentials_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/auth/oauth2/credentials_file.json -------------------------------------------------------------------------------- /.ci/chart_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/chart_test.sh -------------------------------------------------------------------------------- /.ci/clusters/values-bk-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-bk-tls.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-broker-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-broker-tls.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-cacerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-cacerts.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-dekaf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-dekaf.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-jwt-asymmetric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-jwt-asymmetric.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-jwt-symmetric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-jwt-symmetric.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-openid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-openid.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-oxia.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-oxia.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-pulsar-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-pulsar-manager.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-pulsar-previous-lts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-pulsar-previous-lts.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-tls.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-upgrade.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-upgrade.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-victoria-metrics-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-victoria-metrics-grafana.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-zk-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-zk-tls.yaml -------------------------------------------------------------------------------- /.ci/clusters/values-zkbk-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/clusters/values-zkbk-tls.yaml -------------------------------------------------------------------------------- /.ci/configure_ci_runner_for_debugging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/configure_ci_runner_for_debugging.sh -------------------------------------------------------------------------------- /.ci/helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/helm.sh -------------------------------------------------------------------------------- /.ci/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/kustomization.yaml -------------------------------------------------------------------------------- /.ci/metallb/metallb-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/metallb/metallb-config.yaml -------------------------------------------------------------------------------- /.ci/values-common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.ci/values-common.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/chart-testing-action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.github/actions/chart-testing-action/README.md -------------------------------------------------------------------------------- /.github/actions/chart-testing-action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.github/actions/chart-testing-action/action.yml -------------------------------------------------------------------------------- /.github/actions/chart-testing-action/ct.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.github/actions/chart-testing-action/ct.sh -------------------------------------------------------------------------------- /.github/actions/ssh-access/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.github/actions/ssh-access/action.yml -------------------------------------------------------------------------------- /.github/actions/tune-runner-vm/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.github/actions/tune-runner-vm/action.yml -------------------------------------------------------------------------------- /.github/changes-filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.github/changes-filter.yaml -------------------------------------------------------------------------------- /.github/workflows/pulsar-helm-chart-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.github/workflows/pulsar-helm-chart-ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.gitignore -------------------------------------------------------------------------------- /.rat-excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/.rat-excludes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/RELEASE.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/Vagrantfile -------------------------------------------------------------------------------- /charts/pulsar/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/.helmignore -------------------------------------------------------------------------------- /charts/pulsar/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/Chart.yaml -------------------------------------------------------------------------------- /charts/pulsar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/LICENSE -------------------------------------------------------------------------------- /charts/pulsar/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/NOTICE -------------------------------------------------------------------------------- /charts/pulsar/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/pulsar/templates/_autorecovery.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_autorecovery.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_bookkeeper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_bookkeeper.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_broker.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_broker.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_certs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_certs.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_configurationstore.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_configurationstore.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_dekaf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_dekaf.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_monitor.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_monitor.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_oxia.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_oxia.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_proxy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_proxy.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_toolset.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_toolset.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_tplvalues.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_values_validation.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_values_validation.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/_zookeeper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/_zookeeper.tpl -------------------------------------------------------------------------------- /charts/pulsar/templates/autorecovery-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/autorecovery-configmap.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/autorecovery-podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/autorecovery-podmonitor.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/autorecovery-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/autorecovery-service-account.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/autorecovery-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/autorecovery-service.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/autorecovery-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/autorecovery-statefulset.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/bookkeeper-cluster-initialize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/bookkeeper-cluster-initialize.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/bookkeeper-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/bookkeeper-configmap.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/bookkeeper-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/bookkeeper-pdb.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/bookkeeper-podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/bookkeeper-podmonitor.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/bookkeeper-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/bookkeeper-service-account.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/bookkeeper-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/bookkeeper-service.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/bookkeeper-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/bookkeeper-statefulset.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/bookkeeper-storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/bookkeeper-storageclass.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/broker-cluster-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/broker-cluster-role-binding.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/broker-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/broker-configmap.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/broker-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/broker-hpa.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/broker-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/broker-pdb.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/broker-podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/broker-podmonitor.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/broker-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/broker-rbac.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/broker-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/broker-service-account.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/broker-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/broker-service.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/broker-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/broker-statefulset.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/certs-scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/certs-scripts-configmap.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/check_helm_version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/check_helm_version.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/dekaf-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/dekaf-deployment.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/dekaf-persistence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/dekaf-persistence.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/dekaf-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/dekaf-service.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/extra-list.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/namespace.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/oxia-coordinator-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/oxia-coordinator-configmap.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/oxia-coordinator-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/oxia-coordinator-deployment.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/oxia-coordinator-podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/oxia-coordinator-podmonitor.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/oxia-coordinator-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/oxia-coordinator-role.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/oxia-coordinator-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/oxia-coordinator-rolebinding.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/oxia-coordinator-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/oxia-coordinator-service.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/oxia-coordinator-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/oxia-coordinator-serviceaccount.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/oxia-server-podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/oxia-server-podmonitor.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/oxia-server-service-public.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/oxia-server-service-public.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/oxia-server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/oxia-server-service.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/oxia-server-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/oxia-server-serviceaccount.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/oxia-server-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/oxia-server-statefulset.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/proxy-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/proxy-configmap.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/proxy-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/proxy-hpa.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/proxy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/proxy-ingress.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/proxy-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/proxy-pdb.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/proxy-podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/proxy-podmonitor.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/proxy-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/proxy-service-account.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/proxy-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/proxy-service.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/proxy-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/proxy-statefulset.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/pulsar-cluster-initialize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/pulsar-cluster-initialize.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/pulsar-manager-admin-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/pulsar-manager-admin-secret.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/pulsar-manager-cluster-initialize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/pulsar-manager-cluster-initialize.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/pulsar-manager-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/pulsar-manager-configmap.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/pulsar-manager-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/pulsar-manager-ingress.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/pulsar-manager-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/pulsar-manager-service.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/pulsar-manager-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/pulsar-manager-statefulset.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/tls-cert-internal-issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/tls-cert-internal-issuer.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/tls-certs-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/tls-certs-internal.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/toolset-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/toolset-configmap.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/toolset-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/toolset-service-account.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/toolset-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/toolset-service.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/toolset-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/toolset-statefulset.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/zookeeper-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/zookeeper-configmap.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/zookeeper-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/zookeeper-pdb.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/zookeeper-podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/zookeeper-podmonitor.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/zookeeper-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/zookeeper-service-account.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/zookeeper-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/zookeeper-service.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/zookeeper-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/zookeeper-statefulset.yaml -------------------------------------------------------------------------------- /charts/pulsar/templates/zookeeper-storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/templates/zookeeper-storageclass.yaml -------------------------------------------------------------------------------- /charts/pulsar/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/charts/pulsar/values.yaml -------------------------------------------------------------------------------- /examples/values-bookkeeper-aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-bookkeeper-aws.yaml -------------------------------------------------------------------------------- /examples/values-cs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-cs.yaml -------------------------------------------------------------------------------- /examples/values-disable-monitoring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-disable-monitoring.yaml -------------------------------------------------------------------------------- /examples/values-init-containers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-init-containers.yaml -------------------------------------------------------------------------------- /examples/values-jwt-asymmetric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-jwt-asymmetric.yaml -------------------------------------------------------------------------------- /examples/values-jwt-symmetric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-jwt-symmetric.yaml -------------------------------------------------------------------------------- /examples/values-local-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-local-cluster.yaml -------------------------------------------------------------------------------- /examples/values-local-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-local-pv.yaml -------------------------------------------------------------------------------- /examples/values-minikube.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-minikube.yaml -------------------------------------------------------------------------------- /examples/values-no-persistence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-no-persistence.yaml -------------------------------------------------------------------------------- /examples/values-one-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-one-node.yaml -------------------------------------------------------------------------------- /examples/values-oxia.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-oxia.yaml -------------------------------------------------------------------------------- /examples/values-testing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-testing.yaml -------------------------------------------------------------------------------- /examples/values-tls-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-tls-ca.yaml -------------------------------------------------------------------------------- /examples/values-tls-selfsigned.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-tls-selfsigned.yaml -------------------------------------------------------------------------------- /examples/values-zookeeper-aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/examples/values-zookeeper-aws.yaml -------------------------------------------------------------------------------- /hack/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/hack/common.sh -------------------------------------------------------------------------------- /hack/kind-cluster-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/hack/kind-cluster-build.sh -------------------------------------------------------------------------------- /license_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/license_test.go -------------------------------------------------------------------------------- /scripts/cert-manager/install-cert-manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/scripts/cert-manager/install-cert-manager.sh -------------------------------------------------------------------------------- /scripts/kube-prometheus-stack/upgrade_prometheus_operator_crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/scripts/kube-prometheus-stack/upgrade_prometheus_operator_crds.sh -------------------------------------------------------------------------------- /scripts/pulsar/cleanup_helm_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/scripts/pulsar/cleanup_helm_release.sh -------------------------------------------------------------------------------- /scripts/pulsar/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/scripts/pulsar/common.sh -------------------------------------------------------------------------------- /scripts/pulsar/common_auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/scripts/pulsar/common_auth.sh -------------------------------------------------------------------------------- /scripts/pulsar/generate_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/scripts/pulsar/generate_token.sh -------------------------------------------------------------------------------- /scripts/pulsar/generate_token_secret_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/scripts/pulsar/generate_token_secret_key.sh -------------------------------------------------------------------------------- /scripts/pulsar/get_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/scripts/pulsar/get_token.sh -------------------------------------------------------------------------------- /scripts/pulsar/prepare_helm_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/scripts/pulsar/prepare_helm_release.sh -------------------------------------------------------------------------------- /scripts/set-pulsar-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/scripts/set-pulsar-version.sh -------------------------------------------------------------------------------- /scripts/sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/scripts/sign.sh -------------------------------------------------------------------------------- /scripts/victoria-metrics-k8s-stack/upgrade_vm_operator_crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/pulsar-helm-chart/HEAD/scripts/victoria-metrics-k8s-stack/upgrade_vm_operator_crds.sh --------------------------------------------------------------------------------