This is an automated email from the ASF dual-hosted git repository. sijie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pulsar-helm-chart.git
commit f38711d581df35c577bfbf728183f35e19940cc2 Merge: 8410c0d 977999f Author: Sijie Guo <si...@apache.org> AuthorDate: Mon Apr 20 22:55:34 2020 -0700 Merge branch 'master' of https://github.com/apache/pulsar README.md | 24 +- examples/values-cs.yaml | 45 + examples/values-jwt-asymmetric.yaml | 37 + examples/values-jwt-symmetric.yaml | 37 + examples/values-local-cluster.yaml | 37 + examples/values-local-pv.yaml | 21 + examples/values-minikube.yaml | 50 ++ examples/values-no-persistence.yaml | 28 + examples/values-one-node.yaml | 54 ++ examples/values-pulsar.yaml | 50 ++ examples/values-tls.yaml | 34 + hack/common.sh | 135 +++ hack/kind-cluster-build.sh | 251 ++++++ pulsar/.helmignore | 21 + pulsar/Chart.yaml | 31 + pulsar/templates/_autorecovery.tpl | 80 ++ pulsar/templates/_bookkeeper.tpl | 121 +++ pulsar/templates/_broker.tpl | 76 ++ pulsar/templates/_helpers.tpl | 68 ++ pulsar/templates/_toolset.tpl | 69 ++ pulsar/templates/_zookeeper.tpl | 34 + pulsar/templates/autorecovery-configmap.yaml | 33 + pulsar/templates/autorecovery-service.yaml | 39 + pulsar/templates/autorecovery-statefulset.yaml | 124 +++ .../templates/bookkeeper-cluster-initialize.yaml | 71 ++ pulsar/templates/bookkeeper-configmap.yaml | 44 + pulsar/templates/bookkeeper-pdb.yaml | 37 + pulsar/templates/bookkeeper-service.yaml | 41 + pulsar/templates/bookkeeper-statefulset.yaml | 192 +++++ pulsar/templates/bookkeeper-storageclass.yaml | 54 ++ pulsar/templates/broker-cluster-role-binding.yaml | 66 ++ pulsar/templates/broker-configmap.yaml | 146 ++++ pulsar/templates/broker-pdb.yaml | 37 + pulsar/templates/broker-rbac.yaml | 60 ++ pulsar/templates/broker-service-account.yaml | 29 + pulsar/templates/broker-service.yaml | 51 ++ pulsar/templates/broker-statefulset.yaml | 236 ++++++ pulsar/templates/dashboard-deployment.yaml | 73 ++ pulsar/templates/dashboard-ingress.yaml | 55 ++ pulsar/templates/dashboard-service.yaml | 43 + pulsar/templates/function-worker-configmap.yaml | 32 + pulsar/templates/grafana-deployment.yaml | 84 ++ pulsar/templates/grafana-ingress.yaml | 50 ++ pulsar/templates/grafana-service.yaml | 43 + pulsar/templates/keytool.yaml | 98 +++ pulsar/templates/namespace.yaml | 25 + pulsar/templates/prometheus-configmap.yaml | 66 ++ pulsar/templates/prometheus-deployment.yaml | 84 ++ pulsar/templates/prometheus-pvc.yaml | 40 + pulsar/templates/prometheus-rbac.yaml | 59 ++ pulsar/templates/prometheus-service.yaml | 40 + pulsar/templates/prometheus-storageclass.yaml | 37 + pulsar/templates/proxy-configmap.yaml | 83 ++ pulsar/templates/proxy-pdb.yaml | 37 + pulsar/templates/proxy-service.yaml | 56 ++ pulsar/templates/proxy-statefulset.yaml | 234 ++++++ pulsar/templates/pulsar-cluster-initialize.yaml | 102 +++ pulsar/templates/pulsar-manager-admin-secret.yaml | 39 + pulsar/templates/pulsar-manager-configmap.yaml | 31 + pulsar/templates/pulsar-manager-deployment.yaml | 85 ++ pulsar/templates/pulsar-manager-service.yaml | 41 + pulsar/templates/tls-cert-internal-issuer.yaml | 62 ++ pulsar/templates/tls-certs-internal.yaml | 247 ++++++ pulsar/templates/toolset-configmap.yaml | 70 ++ pulsar/templates/toolset-service.yaml | 34 + pulsar/templates/toolset-statefulset.yaml | 108 +++ pulsar/templates/zookeeper-configmap.yaml | 40 + pulsar/templates/zookeeper-pdb.yaml | 38 + pulsar/templates/zookeeper-service.yaml | 48 ++ pulsar/templates/zookeeper-statefulset.yaml | 195 +++++ pulsar/templates/zookeeper-storageclass.yaml | 40 + pulsar/values.yaml | 901 +++++++++++++++++++++ scripts/cert-manager/install-cert-manager.sh | 55 ++ scripts/pulsar/clean_tls.sh | 115 +++ scripts/pulsar/cleanup_helm_release.sh | 87 ++ scripts/pulsar/common.sh | 73 ++ scripts/pulsar/common_auth.sh | 66 ++ scripts/pulsar/generate_token.sh | 121 +++ scripts/pulsar/generate_token_secret_key.sh | 109 +++ scripts/pulsar/get_token.sh | 95 +++ scripts/pulsar/prepare_helm_release.sh | 155 ++++ scripts/pulsar/upload_tls.sh | 135 +++ 82 files changed, 6893 insertions(+), 1 deletion(-) diff --cc README.md index cba07e2,b88f477..505d44a --- a/README.md +++ b/README.md @@@ -1,3 -1,22 +1,25 @@@ + <!-- + + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + + --> +# Official Apache Pulsar Helm Chart + - This is the officially supported Helm Chart for installing Apache Pulsar on Kubernetes. ++This is the officially supported Helm Chart for installing Apache Pulsar on Kubernetes. + + Read [Deploying Pulsar on Kubernetes](http://pulsar.apache.org/docs/en/deploy-kubernetes/) for more details.