├── .github ├── labeler.yaml ├── pr-title-checker-config.json └── workflows │ ├── build-debug-pod-image.yaml │ ├── ci.yaml │ ├── e2e.yaml │ ├── pr-labeling.yaml │ ├── pr-title-checker.yaml │ ├── release.yaml │ └── update-dashboards.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── charts ├── greptimedb-cluster │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── dashboards │ │ ├── greptimedb-cluster-logs.json │ │ ├── greptimedb-cluster-metrics.json │ │ └── greptimedb-cluster-traces.json │ ├── scripts │ │ └── pre-check │ │ │ ├── disk.sh │ │ │ ├── kafka.sh │ │ │ └── s3.sh │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cluster.yaml │ │ ├── custom-image-pull-secret.yaml │ │ ├── debug-depoyment.yaml │ │ ├── grafana-dashboards-configmap.yaml │ │ ├── license-secret.yaml │ │ ├── meta-mysql-secret.yaml │ │ ├── meta-postgresql-secret.yaml │ │ ├── object-storage-secret.yaml │ │ ├── pre-check │ │ │ ├── configmap.yaml │ │ │ ├── job.yaml │ │ │ └── pvc.yaml │ │ ├── prometheusrule.yaml │ │ ├── serviceaccount-datanode.yaml │ │ ├── serviceaccount-flownode.yaml │ │ ├── serviceaccount-frontend.yaml │ │ ├── serviceaccount-meta.yaml │ │ └── users-auth-secret.yaml │ ├── tests │ │ ├── cluster-test.yaml │ │ ├── license-secret-test.yaml │ │ ├── object-storage-secret-test.yaml │ │ └── users-auth-secret-test.yaml │ └── values.yaml ├── greptimedb-enterprise-dashboard │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── greptimedb-operator │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cert-manager.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── crds │ │ │ ├── crd-greptimedbcluster.yaml │ │ │ └── crd-greptimedbstandalone.yaml │ │ ├── deployment.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── validating-webhook.yaml │ └── values.yaml ├── greptimedb-remote-compaction │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ │ ├── _helpers.tpl │ │ ├── compactor │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── secret.yaml │ │ │ └── serviceaccount.yaml │ │ └── scheduler │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ └── values.yaml └── greptimedb-standalone │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── podmonitor.yaml │ ├── secret.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── statefulset.yaml │ └── users-auth-secret.yaml │ ├── tests │ ├── secret-test.yaml │ ├── statefulset-test.yaml │ └── users-auth-secret-test.yaml │ └── values.yaml ├── docker └── debug-pod │ ├── Dockerfile │ └── README.md └── scripts ├── crds ├── templates │ ├── crd-greptimedbcluster.tmpl │ └── crd-greptimedbstandalone.tmpl ├── update-crds.sh └── upgrade-crds.sh ├── e2e ├── greptimedb-cluster.sh └── greptimedb-standalone.sh ├── release ├── release-charts-to-acr.sh └── release-charts-to-s3.sh └── update ├── update-grafana-dashboard.sh └── update-version.sh /.github/labeler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/.github/labeler.yaml -------------------------------------------------------------------------------- /.github/pr-title-checker-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/.github/pr-title-checker-config.json -------------------------------------------------------------------------------- /.github/workflows/build-debug-pod-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/.github/workflows/build-debug-pod-image.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/.github/workflows/e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-labeling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/.github/workflows/pr-labeling.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-title-checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/.github/workflows/pr-title-checker.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/update-dashboards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/.github/workflows/update-dashboards.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/greptimedb-cluster/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/.helmignore -------------------------------------------------------------------------------- /charts/greptimedb-cluster/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/Chart.lock -------------------------------------------------------------------------------- /charts/greptimedb-cluster/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/Chart.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/README.md -------------------------------------------------------------------------------- /charts/greptimedb-cluster/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/README.md.gotmpl -------------------------------------------------------------------------------- /charts/greptimedb-cluster/dashboards/greptimedb-cluster-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/dashboards/greptimedb-cluster-logs.json -------------------------------------------------------------------------------- /charts/greptimedb-cluster/dashboards/greptimedb-cluster-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/dashboards/greptimedb-cluster-metrics.json -------------------------------------------------------------------------------- /charts/greptimedb-cluster/dashboards/greptimedb-cluster-traces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/dashboards/greptimedb-cluster-traces.json -------------------------------------------------------------------------------- /charts/greptimedb-cluster/scripts/pre-check/disk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/scripts/pre-check/disk.sh -------------------------------------------------------------------------------- /charts/greptimedb-cluster/scripts/pre-check/kafka.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/scripts/pre-check/kafka.sh -------------------------------------------------------------------------------- /charts/greptimedb-cluster/scripts/pre-check/s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/scripts/pre-check/s3.sh -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/cluster.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/custom-image-pull-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/custom-image-pull-secret.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/debug-depoyment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/debug-depoyment.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/grafana-dashboards-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/grafana-dashboards-configmap.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/license-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/license-secret.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/meta-mysql-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/meta-mysql-secret.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/meta-postgresql-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/meta-postgresql-secret.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/object-storage-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/object-storage-secret.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/pre-check/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/pre-check/configmap.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/pre-check/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/pre-check/job.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/pre-check/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/pre-check/pvc.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/serviceaccount-datanode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/serviceaccount-datanode.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/serviceaccount-flownode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/serviceaccount-flownode.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/serviceaccount-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/serviceaccount-frontend.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/serviceaccount-meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/serviceaccount-meta.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/templates/users-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/templates/users-auth-secret.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/tests/cluster-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/tests/cluster-test.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/tests/license-secret-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/tests/license-secret-test.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/tests/object-storage-secret-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/tests/object-storage-secret-test.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/tests/users-auth-secret-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/tests/users-auth-secret-test.yaml -------------------------------------------------------------------------------- /charts/greptimedb-cluster/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-cluster/values.yaml -------------------------------------------------------------------------------- /charts/greptimedb-enterprise-dashboard/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-enterprise-dashboard/.helmignore -------------------------------------------------------------------------------- /charts/greptimedb-enterprise-dashboard/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-enterprise-dashboard/Chart.yaml -------------------------------------------------------------------------------- /charts/greptimedb-enterprise-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-enterprise-dashboard/README.md -------------------------------------------------------------------------------- /charts/greptimedb-enterprise-dashboard/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-enterprise-dashboard/README.md.gotmpl -------------------------------------------------------------------------------- /charts/greptimedb-enterprise-dashboard/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-enterprise-dashboard/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/greptimedb-enterprise-dashboard/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-enterprise-dashboard/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/greptimedb-enterprise-dashboard/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-enterprise-dashboard/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/greptimedb-enterprise-dashboard/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-enterprise-dashboard/templates/service.yaml -------------------------------------------------------------------------------- /charts/greptimedb-enterprise-dashboard/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-enterprise-dashboard/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/greptimedb-enterprise-dashboard/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-enterprise-dashboard/values.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/.helmignore -------------------------------------------------------------------------------- /charts/greptimedb-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/Chart.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/README.md -------------------------------------------------------------------------------- /charts/greptimedb-operator/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/README.md.gotmpl -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/cert-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/cert-manager.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/crds/crd-greptimedbcluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/crds/crd-greptimedbcluster.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/crds/crd-greptimedbstandalone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/crds/crd-greptimedbstandalone.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/role.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/rolebinding.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/service.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/templates/validating-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/templates/validating-webhook.yaml -------------------------------------------------------------------------------- /charts/greptimedb-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-operator/values.yaml -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/.helmignore -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/Chart.yaml -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/README.md -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/README.md.gotmpl -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/templates/compactor/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/templates/compactor/configmap.yaml -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/templates/compactor/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/templates/compactor/deployment.yaml -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/templates/compactor/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/templates/compactor/secret.yaml -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/templates/compactor/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/templates/compactor/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/templates/scheduler/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/templates/scheduler/configmap.yaml -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/templates/scheduler/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/templates/scheduler/deployment.yaml -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/templates/scheduler/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/templates/scheduler/service.yaml -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/templates/scheduler/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/templates/scheduler/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/greptimedb-remote-compaction/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-remote-compaction/values.yaml -------------------------------------------------------------------------------- /charts/greptimedb-standalone/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/.helmignore -------------------------------------------------------------------------------- /charts/greptimedb-standalone/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/Chart.yaml -------------------------------------------------------------------------------- /charts/greptimedb-standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/README.md -------------------------------------------------------------------------------- /charts/greptimedb-standalone/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/README.md.gotmpl -------------------------------------------------------------------------------- /charts/greptimedb-standalone/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/greptimedb-standalone/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/greptimedb-standalone/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/greptimedb-standalone/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/templates/podmonitor.yaml -------------------------------------------------------------------------------- /charts/greptimedb-standalone/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/templates/secret.yaml -------------------------------------------------------------------------------- /charts/greptimedb-standalone/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/templates/service.yaml -------------------------------------------------------------------------------- /charts/greptimedb-standalone/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/greptimedb-standalone/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/greptimedb-standalone/templates/users-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/templates/users-auth-secret.yaml -------------------------------------------------------------------------------- /charts/greptimedb-standalone/tests/secret-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/tests/secret-test.yaml -------------------------------------------------------------------------------- /charts/greptimedb-standalone/tests/statefulset-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/tests/statefulset-test.yaml -------------------------------------------------------------------------------- /charts/greptimedb-standalone/tests/users-auth-secret-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/tests/users-auth-secret-test.yaml -------------------------------------------------------------------------------- /charts/greptimedb-standalone/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/charts/greptimedb-standalone/values.yaml -------------------------------------------------------------------------------- /docker/debug-pod/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/docker/debug-pod/Dockerfile -------------------------------------------------------------------------------- /docker/debug-pod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/docker/debug-pod/README.md -------------------------------------------------------------------------------- /scripts/crds/templates/crd-greptimedbcluster.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/scripts/crds/templates/crd-greptimedbcluster.tmpl -------------------------------------------------------------------------------- /scripts/crds/templates/crd-greptimedbstandalone.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/scripts/crds/templates/crd-greptimedbstandalone.tmpl -------------------------------------------------------------------------------- /scripts/crds/update-crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/scripts/crds/update-crds.sh -------------------------------------------------------------------------------- /scripts/crds/upgrade-crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/scripts/crds/upgrade-crds.sh -------------------------------------------------------------------------------- /scripts/e2e/greptimedb-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/scripts/e2e/greptimedb-cluster.sh -------------------------------------------------------------------------------- /scripts/e2e/greptimedb-standalone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/scripts/e2e/greptimedb-standalone.sh -------------------------------------------------------------------------------- /scripts/release/release-charts-to-acr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/scripts/release/release-charts-to-acr.sh -------------------------------------------------------------------------------- /scripts/release/release-charts-to-s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/scripts/release/release-charts-to-s3.sh -------------------------------------------------------------------------------- /scripts/update/update-grafana-dashboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/scripts/update/update-grafana-dashboard.sh -------------------------------------------------------------------------------- /scripts/update/update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreptimeTeam/helm-charts/HEAD/scripts/update/update-version.sh --------------------------------------------------------------------------------