├── .github ├── placeholder └── workflows │ └── lint.yml ├── .gitignore ├── LICENSE ├── README.md ├── community └── placeholder ├── deprecated └── placeholder ├── icons ├── bigdl.png ├── colocation-on-tke.png ├── elastic-jupyter-operator-on-tke.svg ├── flink-on-tke.png ├── fluid-on-tke.jpg ├── jmeter-suite.png ├── k8s-big-data-suite.jpg ├── k8s.png ├── logo-olm.svg ├── monkey.png ├── mpi-operator-on-tke.png ├── nocalhost.png ├── pytorch-operator-on-tke.png ├── seldon-core-on-tke.jpg ├── spark-on-tke.png ├── tf-operator-on-tke.png ├── tke-autoscaling-placeholder.png ├── tke-resilience.png ├── tke-sgx-plugin.png └── tke-spot-agent.jpg ├── incubator ├── aerospike │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.yaml │ ├── README.md │ ├── files │ │ ├── aerospike.template.conf │ │ ├── aerospike_rules.yaml │ │ ├── alertmanager.yaml │ │ └── ape.toml.template │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── alertmanager-configmap.yaml │ │ ├── alertmanager-operated-service.yaml │ │ ├── alertmanager-service.yaml │ │ ├── alertmanager-statefulset.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── externalipservices.yaml │ │ ├── grafana-configmap.yaml │ │ ├── grafana-service.yaml │ │ ├── grafana-statefulset.yaml │ │ ├── loadbalancerservices.yaml │ │ ├── nodeportservices.yaml │ │ ├── prometheus-configmap.yaml │ │ ├── prometheus-service.yaml │ │ ├── prometheus-statefulset.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── statefulset.yaml │ └── values.yaml ├── agones │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── certs │ │ ├── allocator │ │ │ ├── client-ca │ │ │ │ └── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ ├── cert.sh │ │ ├── server.crt │ │ └── server.key │ ├── defaultfeaturegates.yaml │ ├── scripts │ │ └── delete_agones_resources.sh │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── controller-metrics-service.yaml │ │ ├── controller.yaml │ │ ├── crds │ │ │ ├── _fleetautoscalerpolicy.yaml │ │ │ ├── _gameserverspecschema.yaml │ │ │ ├── _gameserverstatus.yaml │ │ │ ├── fleet.yaml │ │ │ ├── fleetautoscaler.yaml │ │ │ ├── gameserver.yaml │ │ │ ├── gameserverallocationpolicy.yaml │ │ │ ├── gameserverset.yaml │ │ │ └── k8s │ │ │ │ ├── _io.k8s.api.core.v1.PodTemplateSpec.yaml │ │ │ │ └── _io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.yaml │ │ ├── extensions-deployment.yaml │ │ ├── extensions-metrics-service.yaml │ │ ├── extensions.yaml │ │ ├── hooks │ │ │ ├── pre_delete_hook.yaml │ │ │ ├── sa.yaml │ │ │ └── scripts.yaml │ │ ├── pdb.yaml │ │ ├── ping.yaml │ │ ├── priority-class.yaml │ │ ├── service-monitor.yaml │ │ ├── service.yaml │ │ ├── service │ │ │ └── allocation.yaml │ │ ├── serviceaccounts │ │ │ ├── controller.yaml │ │ │ └── sdk.yaml │ │ └── tests │ │ │ └── test-runner.yaml │ ├── values.schema.json │ └── values.yaml ├── airflow │ ├── .helmignore │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── charts │ │ ├── postgresql │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── default-values.yaml │ │ │ │ └── shmvolume-disabled-values.yaml │ │ │ ├── files │ │ │ │ ├── README.md │ │ │ │ ├── conf.d │ │ │ │ │ └── README.md │ │ │ │ └── docker-entrypoint-initdb.d │ │ │ │ │ └── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── extended-config-configmap.yaml │ │ │ │ ├── initialization-configmap.yaml │ │ │ │ ├── metrics-configmap.yaml │ │ │ │ ├── metrics-svc.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── statefulset-slaves.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ ├── svc-headless.yaml │ │ │ │ ├── svc-read.yaml │ │ │ │ └── svc.yaml │ │ │ ├── values-production.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ └── redis │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ ├── default-values.yaml │ │ │ ├── dev-values.yaml │ │ │ ├── extra-flags-values.yaml │ │ │ ├── insecure-sentinel-values.yaml │ │ │ ├── production-sentinel-values.yaml │ │ │ ├── production-values.yaml │ │ │ ├── redis-lib-values.yaml │ │ │ └── redisgraph-module-values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── headless-svc.yaml │ │ │ ├── health-configmap.yaml │ │ │ ├── metrics-prometheus.yaml │ │ │ ├── metrics-svc.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── psp.yaml │ │ │ ├── redis-master-statefulset.yaml │ │ │ ├── redis-master-svc.yaml │ │ │ ├── redis-role.yaml │ │ │ ├── redis-rolebinding.yaml │ │ │ ├── redis-serviceaccount.yaml │ │ │ ├── redis-slave-statefulset.yaml │ │ │ ├── redis-slave-svc.yaml │ │ │ ├── redis-with-sentinel-svc.yaml │ │ │ └── secret.yaml │ │ │ ├── values-production.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ ├── examples │ │ └── minikube-values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── autoscaler-workers.yaml │ │ ├── configmap-env.yaml │ │ ├── configmap-git-clone.yaml │ │ ├── configmap-scripts.yaml │ │ ├── configmap-variables-pools.yaml │ │ ├── deployments-flower.yaml │ │ ├── deployments-scheduler.yaml │ │ ├── deployments-web.yaml │ │ ├── extra-manifests.yaml │ │ ├── ingress-flower.yaml │ │ ├── ingress-web.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── prometheus-rule.yaml │ │ ├── pvc-logs.yaml │ │ ├── pvc.yaml │ │ ├── role-binding.yaml │ │ ├── role.yaml │ │ ├── secret-connections.yaml │ │ ├── service-account.yaml │ │ ├── service-flower.yaml │ │ ├── service-web.yaml │ │ ├── service-worker.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulsets-workers.yaml │ └── values.yaml ├── apache │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── ct-values.yaml │ ├── files │ │ ├── README.md │ │ └── vhosts │ │ │ └── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap-vhosts.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── svc.yaml │ ├── values.schema.json │ └── values.yaml ├── argo-cd │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── redis-ha │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _configs.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── redis-auth-secret.yaml │ │ │ ├── redis-ha-announce-service.yaml │ │ │ ├── redis-ha-configmap.yaml │ │ │ ├── redis-ha-exporter-script-configmap.yaml │ │ │ ├── redis-ha-health-configmap.yaml │ │ │ ├── redis-ha-network-policy.yaml │ │ │ ├── redis-ha-pdb.yaml │ │ │ ├── redis-ha-prometheus-rule.yaml │ │ │ ├── redis-ha-role.yaml │ │ │ ├── redis-ha-rolebinding.yaml │ │ │ ├── redis-ha-secret.yaml │ │ │ ├── redis-ha-service.yaml │ │ │ ├── redis-ha-serviceaccount.yaml │ │ │ ├── redis-ha-servicemonitor.yaml │ │ │ ├── redis-ha-statefulset.yaml │ │ │ ├── redis-haproxy-deployment.yaml │ │ │ ├── redis-haproxy-network-policy.yaml │ │ │ ├── redis-haproxy-pdb.yaml │ │ │ ├── redis-haproxy-role.yaml │ │ │ ├── redis-haproxy-rolebinding.yaml │ │ │ ├── redis-haproxy-service.yaml │ │ │ ├── redis-haproxy-serviceaccount.yaml │ │ │ ├── redis-haproxy-servicemonitor.yaml │ │ │ ├── redis-tls-secret.yaml │ │ │ ├── sentinel-auth-secret.yaml │ │ │ └── tests │ │ │ │ ├── test-redis-ha-configmap.yaml │ │ │ │ └── test-redis-ha-pod.yaml │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _common.tpl │ │ ├── _helpers.tpl │ │ ├── _versions.tpl │ │ ├── aggregate-roles.yaml │ │ ├── argocd-application-controller │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ ├── argocd-applicationset │ │ │ ├── certificate.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-commit-server │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ ├── argocd-configs │ │ │ ├── argocd-cm.yaml │ │ │ ├── argocd-cmd-params-cm.yaml │ │ │ ├── argocd-cmp-cm.yaml │ │ │ ├── argocd-dex-server-tls-secret.yaml │ │ │ ├── argocd-gpg-keys-cm.yaml │ │ │ ├── argocd-notifications-cm.yaml │ │ │ ├── argocd-notifications-secret.yaml │ │ │ ├── argocd-rbac-cm.yaml │ │ │ ├── argocd-repo-server-tls-secret.yaml │ │ │ ├── argocd-secret.yaml │ │ │ ├── argocd-server-tls-secret.yaml │ │ │ ├── argocd-ssh-known-hosts-cm.yaml │ │ │ ├── argocd-styles-cm.yaml │ │ │ ├── argocd-tls-certs-cm.yaml │ │ │ ├── cluster-secrets.yaml │ │ │ ├── externalredis-secret.yaml │ │ │ ├── repository-credentials-secret.yaml │ │ │ └── repository-secret.yaml │ │ ├── argocd-notifications │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-repo-server │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-server │ │ │ ├── aws │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ ├── certificate.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── gke │ │ │ │ ├── backendconfig.yaml │ │ │ │ ├── frontendconfig.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── managedcertificate.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress-grpc.yaml │ │ │ ├── ingress.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── openshift │ │ │ │ └── route.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── crds │ │ │ ├── crd-application.yaml │ │ │ ├── crd-applicationset.yaml │ │ │ └── crd-project.yaml │ │ ├── dex │ │ │ ├── deployment.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── extra-manifests.yaml │ │ ├── networkpolicy-default-deny.yaml │ │ ├── redis-secret-init │ │ │ ├── job.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ └── serviceaccount.yaml │ │ └── redis │ │ │ ├── deployment.yaml │ │ │ ├── health-configmap.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ └── values.yaml ├── argo-events │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── aggregate-roles.yaml │ │ ├── argo-events-controller │ │ │ ├── config.yaml │ │ │ ├── deployment.yaml │ │ │ ├── pdb.yaml │ │ │ ├── rbac.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argo-events-webhook │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── pdb.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ ├── crds │ │ │ ├── eventbus-crd.yml │ │ │ ├── eventsource-crd.yml │ │ │ └── sensor-crd.yml │ │ └── extra-manifests.yaml │ └── values.yaml ├── argo-rollouts │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── aggregate-roles.yaml │ │ ├── controller │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── metrics-service.yaml │ │ │ ├── notifications-configmap.yaml │ │ │ ├── notifications-secret.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── crds │ │ │ ├── analysis-run-crd.yaml │ │ │ ├── analysis-template-crd.yaml │ │ │ ├── cluster-analysis-template-crd.yaml │ │ │ ├── experiment-crd.yaml │ │ │ └── rollout-crd.yaml │ │ ├── dashboard │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── extra-manifests.yaml │ └── values.yaml ├── argo-workflows │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── controller │ │ │ ├── agent-rb.yaml │ │ │ ├── agent-role.yaml │ │ │ ├── artifact-gc-rb.yaml │ │ │ ├── artifact-gc-role.yaml │ │ │ ├── artifact-repository-ref-cm.yaml │ │ │ ├── workflow-aggregate-roles.yaml │ │ │ ├── workflow-controller-cluster-roles.yaml │ │ │ ├── workflow-controller-config-map.yaml │ │ │ ├── workflow-controller-crb.yaml │ │ │ ├── workflow-controller-deployment-pdb.yaml │ │ │ ├── workflow-controller-deployment.yaml │ │ │ ├── workflow-controller-sa.yaml │ │ │ ├── workflow-controller-service.yaml │ │ │ ├── workflow-controller-servicemonitor.yaml │ │ │ ├── workflow-rb.yaml │ │ │ ├── workflow-role.yaml │ │ │ └── workflow-sa.yaml │ │ ├── crds │ │ │ ├── argoproj.io_clusterworkflowtemplates.yaml │ │ │ ├── argoproj.io_cronworkflows.yaml │ │ │ ├── argoproj.io_workflowartifactgctasks.yaml │ │ │ ├── argoproj.io_workfloweventbindings.yaml │ │ │ ├── argoproj.io_workflows.yaml │ │ │ ├── argoproj.io_workflowtaskresults.yaml │ │ │ ├── argoproj.io_workflowtasksets.yaml │ │ │ └── argoproj.io_workflowtemplates.yaml │ │ ├── extra-manifests.yaml │ │ └── server │ │ │ ├── gke │ │ │ ├── backendconfig.yaml │ │ │ ├── frontendconfig.yaml │ │ │ └── managedcertificate.yaml │ │ │ ├── server-cluster-roles.yaml │ │ │ ├── server-crb.yaml │ │ │ ├── server-deployment-hpa.yaml │ │ │ ├── server-deployment-pdb.yaml │ │ │ ├── server-deployment.yaml │ │ │ ├── server-ingress.yaml │ │ │ ├── server-sa.yaml │ │ │ └── server-service.yaml │ └── values.yaml ├── argo │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── minio │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── ci │ │ │ └── distributed-values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helper_create_bucket.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── post-install-create-bucket-job.yaml │ │ │ ├── pvc.yaml │ │ │ ├── secrets.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ ├── crds │ │ ├── cron-workflow-crd.yaml │ │ ├── workflow-crd.yaml │ │ └── workflow-template-crd.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cron-workflow-crd.yaml │ │ ├── server-cluster-role.yaml │ │ ├── server-crb.yaml │ │ ├── server-deployment-pdb.yaml │ │ ├── server-deployment.yaml │ │ ├── server-ingress.yaml │ │ ├── server-sa.yaml │ │ ├── server-service.yaml │ │ ├── worfkflow-controller-secrets-access.yaml │ │ ├── workflow-aggregate-roles.yaml │ │ ├── workflow-controller-clusterrole.yaml │ │ ├── workflow-controller-config-map.yaml │ │ ├── workflow-controller-crb.yaml │ │ ├── workflow-controller-deployment-pdb.yaml │ │ ├── workflow-controller-deployment.yaml │ │ ├── workflow-controller-minio-secret-crb.yaml │ │ ├── workflow-controller-sa.yaml │ │ ├── workflow-controller-service.yaml │ │ ├── workflow-controller-servicemonitor.yaml │ │ ├── workflow-crd.yaml │ │ └── workflow-template-crd.yaml │ └── values.yaml ├── bigdl-trusted-big-data-ml │ ├── Chart.yaml │ ├── README.md │ ├── enclave-key-secret.yaml │ ├── enclave-key-to-secret.sh │ ├── scripts │ │ ├── generate-keys.sh │ │ └── generate-password.sh │ ├── submit-spark-k8s.sh │ ├── templates │ │ └── spark-job.yaml │ └── values.yaml ├── bigdl-trusted-fl │ ├── Chart.yaml │ ├── README.md │ ├── enclave-key-secret.yaml │ ├── enclave-key-to-secret.sh │ ├── scripts │ │ ├── generate-keys.sh │ │ └── generate-password.sh │ ├── templates │ │ ├── fl-client-deployment.yaml │ │ ├── fl-config.yaml │ │ ├── fl-server-deployment.yaml │ │ └── fl-server-service.yaml │ └── values.yaml ├── bigdl-trusted-realtime-ml │ ├── Chart.yaml │ ├── README.md │ ├── scripts │ │ ├── generate-keys.sh │ │ └── generate-password.sh │ ├── start-all-but-flink.sh │ ├── templates │ │ ├── flink-configuration-configmap.yaml │ │ ├── jobmanager-deployment.yaml │ │ ├── jobmanager-service.yaml │ │ ├── master-deployment.yaml │ │ ├── redis-service.yaml │ │ └── taskmanager-statefulset.yaml │ └── values.yaml ├── cassandra │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cassandra-secret.yaml │ │ ├── headless-svc.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── service.yaml │ │ └── statefulset.yaml │ ├── values-production.yaml │ └── values.yaml ├── cert-manager-webhook-dnspod │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── apiservice.yaml │ │ ├── deployment.yaml │ │ ├── pki.yaml │ │ ├── rbac.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ └── values.yaml ├── cert-manager │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cainjector-config.yaml │ │ ├── cainjector-deployment.yaml │ │ ├── cainjector-poddisruptionbudget.yaml │ │ ├── cainjector-psp-clusterrole.yaml │ │ ├── cainjector-psp-clusterrolebinding.yaml │ │ ├── cainjector-psp.yaml │ │ ├── cainjector-rbac.yaml │ │ ├── cainjector-service.yaml │ │ ├── cainjector-serviceaccount.yaml │ │ ├── controller-config.yaml │ │ ├── crds.yaml │ │ ├── deployment.yaml │ │ ├── extras-objects.yaml │ │ ├── networkpolicy-egress.yaml │ │ ├── networkpolicy-webhooks.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── podmonitor.yaml │ │ ├── psp-clusterrole.yaml │ │ ├── psp-clusterrolebinding.yaml │ │ ├── psp.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── startupapicheck-job.yaml │ │ ├── startupapicheck-psp-clusterrole.yaml │ │ ├── startupapicheck-psp-clusterrolebinding.yaml │ │ ├── startupapicheck-psp.yaml │ │ ├── startupapicheck-rbac.yaml │ │ ├── startupapicheck-serviceaccount.yaml │ │ ├── webhook-config.yaml │ │ ├── webhook-deployment.yaml │ │ ├── webhook-mutating-webhook.yaml │ │ ├── webhook-poddisruptionbudget.yaml │ │ ├── webhook-psp-clusterrole.yaml │ │ ├── webhook-psp-clusterrolebinding.yaml │ │ ├── webhook-psp.yaml │ │ ├── webhook-rbac.yaml │ │ ├── webhook-service.yaml │ │ ├── webhook-serviceaccount.yaml │ │ └── webhook-validating-webhook.yaml │ ├── values.schema.json │ └── values.yaml ├── colocation-on-tke │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── caelus-agent │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── grafana │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── offline-agent │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── prometheus │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-config.yaml │ │ │ │ ├── configmap-rule.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── persistentvolumeclaim.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── tke-controller │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── controller.clusterrole.yaml │ │ │ │ ├── controller.clusterrolebinding.yaml │ │ │ │ ├── controller.deployment.yaml │ │ │ │ ├── controller.service.yaml │ │ │ │ └── controller.serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── tke-coordinator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── coordinator.clusterrole.yaml │ │ │ │ ├── coordinator.clusterrolebinding.yaml │ │ │ │ ├── coordinator.deployment.yaml │ │ │ │ ├── coordinator.service.yaml │ │ │ │ └── coordinator.serviceaccount.yaml │ │ │ └── values.yaml │ │ └── tke-scheduler │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── crd.yaml │ │ │ ├── priority.yaml │ │ │ ├── scheduler.clusterrole.yaml │ │ │ ├── scheduler.clusterrolebinding.yaml │ │ │ ├── scheduler.deployment.yaml │ │ │ ├── scheduler.service.yaml │ │ │ └── scheduler.serviceaccount.yaml │ │ │ └── values.yaml │ ├── requirements.yaml │ ├── templates │ │ └── _helpers.tpl │ └── values.yaml ├── colocation │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── caelus-agent │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── grafana │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── offline-agent │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── prometheus │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-config.yaml │ │ │ │ ├── configmap-rule.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── persistentvolumeclaim.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── tke-controller │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── controller.clusterrole.yaml │ │ │ │ ├── controller.clusterrolebinding.yaml │ │ │ │ ├── controller.deployment.yaml │ │ │ │ ├── controller.service.yaml │ │ │ │ └── controller.serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── tke-coordinator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── coordinator.clusterrole.yaml │ │ │ │ ├── coordinator.clusterrolebinding.yaml │ │ │ │ ├── coordinator.deployment.yaml │ │ │ │ ├── coordinator.service.yaml │ │ │ │ └── coordinator.serviceaccount.yaml │ │ │ └── values.yaml │ │ └── tke-scheduler │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── crd.yaml │ │ │ ├── priority.yaml │ │ │ ├── scheduler.clusterrole.yaml │ │ │ ├── scheduler.clusterrolebinding.yaml │ │ │ ├── scheduler.deployment.yaml │ │ │ ├── scheduler.service.yaml │ │ │ └── scheduler.serviceaccount.yaml │ │ │ └── values.yaml │ ├── templates │ │ └── _helpers.tpl │ └── values.yaml ├── consul │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── basic-acls.yaml │ │ ├── consul-ingress.yaml │ │ ├── consul-service.yaml │ │ ├── consul-statefulset.yaml │ │ ├── consul-test-clusterrole.yaml │ │ ├── consul-test-clusterrolebinding.yaml │ │ ├── consul-test-serviceaccount.yaml │ │ ├── consul-test.yaml │ │ ├── gossip-secret.yaml │ │ ├── pod-dist-budget.yaml │ │ ├── test-config.yaml │ │ └── ui-service.yaml │ └── values.yaml ├── dex │ ├── .helmignore │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── config │ │ └── openssl.conf │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── config-openssl.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── job-grpc-certs.yaml │ │ ├── job-web-certs.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── dns-controller │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── serviceaccount.yaml │ │ └── webhook-service.yaml │ ├── values-example.yaml │ └── values.yaml ├── drupal │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── _capabilities.tpl │ │ │ │ ├── _errors.tpl │ │ │ │ ├── _images.tpl │ │ │ │ ├── _labels.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── _secrets.tpl │ │ │ │ ├── _storage.tpl │ │ │ │ ├── _tplvalues.tpl │ │ │ │ ├── _utils.tpl │ │ │ │ ├── _validations.tpl │ │ │ │ └── _warnings.tpl │ │ │ └── values.yaml │ │ └── mariadb │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ └── values-production-with-rbac.yaml │ │ │ ├── files │ │ │ └── docker-entrypoint-initdb.d │ │ │ │ └── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── initialization-configmap.yaml │ │ │ ├── master-configmap.yaml │ │ │ ├── master-pdb.yaml │ │ │ ├── master-statefulset.yaml │ │ │ ├── master-svc.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── secrets.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── slave-configmap.yaml │ │ │ ├── slave-pdb.yaml │ │ │ ├── slave-statefulset.yaml │ │ │ └── slave-svc.yaml │ │ │ ├── values-production.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ ├── ci │ │ └── ct-values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── drupal-pv.yaml │ │ ├── drupal-pvc.yaml │ │ ├── extra-list.yaml │ │ ├── ingress.yaml │ │ ├── secrets.yaml │ │ ├── svc.yaml │ │ └── tls-secrets.yaml │ ├── values.schema.json │ └── values.yaml ├── dynamo-on-tke │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── etcd │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ └── common │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ ├── _compatibility.tpl │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ ├── _images.tpl │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ ├── _names.tpl │ │ │ │ │ ├── _resources.tpl │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ └── validations │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── cronjob-defrag.yaml │ │ │ │ ├── cronjob-snapshotter.yaml │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── podmonitor.yaml │ │ │ │ ├── preupgrade-hook-job.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── snapshot-pvc.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ ├── svc-headless.yaml │ │ │ │ ├── svc.yaml │ │ │ │ └── token-secrets.yaml │ │ │ └── values.yaml │ │ └── nats │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── UPGRADING.md │ │ │ ├── files │ │ │ ├── config-map.yaml │ │ │ ├── config │ │ │ │ ├── cluster.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── gateway.yaml │ │ │ │ ├── jetstream.yaml │ │ │ │ ├── leafnodes.yaml │ │ │ │ ├── mqtt.yaml │ │ │ │ ├── protocol.yaml │ │ │ │ ├── resolver.yaml │ │ │ │ ├── tls.yaml │ │ │ │ └── websocket.yaml │ │ │ ├── headless-service.yaml │ │ │ ├── ingress.yaml │ │ │ ├── nats-box │ │ │ │ ├── contents-secret.yaml │ │ │ │ ├── contexts-secret │ │ │ │ │ ├── context.yaml │ │ │ │ │ └── contexts-secret.yaml │ │ │ │ ├── deployment │ │ │ │ │ ├── container.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── pod-template.yaml │ │ │ │ └── service-account.yaml │ │ │ ├── pod-disruption-budget.yaml │ │ │ ├── pod-monitor.yaml │ │ │ ├── service-account.yaml │ │ │ ├── service.yaml │ │ │ └── stateful-set │ │ │ │ ├── jetstream-pvc.yaml │ │ │ │ ├── nats-container.yaml │ │ │ │ ├── pod-template.yaml │ │ │ │ ├── prom-exporter-container.yaml │ │ │ │ ├── reloader-container.yaml │ │ │ │ ├── resolver-pvc.yaml │ │ │ │ └── stateful-set.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── _jsonpatch.tpl │ │ │ ├── _toPrettyRawJson.tpl │ │ │ ├── _tplYaml.tpl │ │ │ ├── config-map.yaml │ │ │ ├── extra-resources.yaml │ │ │ ├── headless-service.yaml │ │ │ ├── ingress.yaml │ │ │ ├── nats-box │ │ │ │ ├── contents-secret.yaml │ │ │ │ ├── contexts-secret.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service-account.yaml │ │ │ ├── pod-disruption-budget.yaml │ │ │ ├── pod-monitor.yaml │ │ │ ├── service-account.yaml │ │ │ ├── service.yaml │ │ │ ├── stateful-set.yaml │ │ │ └── tests │ │ │ │ └── request-reply.yaml │ │ │ └── values.yaml │ ├── multi-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configs.yaml │ │ ├── graphs.yaml │ │ ├── multinode.yaml │ │ └── single.yaml │ └── values.yaml ├── elastic-jupyter-operator-on-tke │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ ├── kubeflow.tkestack.io_jupytergateways.yaml │ │ ├── kubeflow.tkestack.io_jupyterkernels.yaml │ │ ├── kubeflow.tkestack.io_jupyterkernelspecs.yaml │ │ ├── kubeflow.tkestack.io_jupyterkerneltemplates.yaml │ │ └── kubeflow.tkestack.io_jupyternotebooks.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── elastic-jupyter-operator │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ ├── kubeflow.tkestack.io_jupytergateways.yaml │ │ ├── kubeflow.tkestack.io_jupyterkernels.yaml │ │ ├── kubeflow.tkestack.io_jupyterkernelspecs.yaml │ │ ├── kubeflow.tkestack.io_jupyterkerneltemplates.yaml │ │ └── kubeflow.tkestack.io_jupyternotebooks.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── elasticsearch │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── examples │ │ ├── 6.x │ │ │ ├── Makefile │ │ │ ├── test │ │ │ │ └── goss.yaml │ │ │ └── values.yaml │ │ ├── config │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── test │ │ │ │ └── goss.yaml │ │ │ ├── values.yaml │ │ │ └── watcher_encryption_key │ │ ├── default │ │ │ ├── Makefile │ │ │ ├── rolling_upgrade.sh │ │ │ └── test │ │ │ │ └── goss.yaml │ │ ├── docker-for-mac │ │ │ ├── Makefile │ │ │ └── values.yaml │ │ ├── kubernetes-kind │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── values.yaml │ │ ├── microk8s │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── values.yaml │ │ ├── migration │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── client.yml │ │ │ ├── data.yml │ │ │ └── master.yml │ │ ├── minikube │ │ │ ├── Makefile │ │ │ └── values.yaml │ │ ├── multi │ │ │ ├── Makefile │ │ │ ├── data.yml │ │ │ ├── master.yml │ │ │ └── test │ │ │ │ └── goss.yaml │ │ ├── openshift │ │ │ ├── Makefile │ │ │ ├── test │ │ │ │ └── goss.yaml │ │ │ └── values.yaml │ │ ├── oss │ │ │ ├── Makefile │ │ │ ├── test │ │ │ │ └── goss.yaml │ │ │ └── values.yaml │ │ ├── security │ │ │ ├── Makefile │ │ │ ├── security.yml │ │ │ └── test │ │ │ │ └── goss.yaml │ │ └── upgrade │ │ │ ├── Makefile │ │ │ └── test │ │ │ └── goss.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── ingress.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── podsecuritypolicy.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── statefulset.yaml │ │ └── test │ │ │ └── test-elasticsearch-health.yaml │ └── values.yaml ├── envoy │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── service.yaml │ │ ├── servicemonitor.yaml │ │ └── xds.configmap.yaml │ └── values.yaml ├── envoygateway │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ ├── gatewayapi-crds.yaml │ │ └── generated │ │ │ ├── gateway.envoyproxy.io_backends.yaml │ │ │ ├── gateway.envoyproxy.io_backendtrafficpolicies.yaml │ │ │ ├── gateway.envoyproxy.io_clienttrafficpolicies.yaml │ │ │ ├── gateway.envoyproxy.io_envoyextensionpolicies.yaml │ │ │ ├── gateway.envoyproxy.io_envoypatchpolicies.yaml │ │ │ ├── gateway.envoyproxy.io_envoyproxies.yaml │ │ │ ├── gateway.envoyproxy.io_httproutefilters.yaml │ │ │ └── gateway.envoyproxy.io_securitypolicies.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── _rbac.tpl │ │ ├── certgen-rbac.yaml │ │ ├── certgen.yaml │ │ ├── envoy-gateway-config.yaml │ │ ├── envoy-gateway-deployment.yaml │ │ ├── envoy-gateway-hpa.yaml │ │ ├── envoy-gateway-poddisruptionbudget.yaml │ │ ├── envoy-gateway-rbac.yaml │ │ ├── envoy-gateway-service.yaml │ │ ├── envoy-gateway-serviceaccount.yaml │ │ ├── envoy-proxy-topology-injector-webhook.yaml │ │ ├── infra-manager-rbac.yaml │ │ ├── leader-election-rbac.yaml │ │ ├── namespace.yaml │ │ └── namespaced-infra-manager-rbac.yaml │ └── values.yaml ├── etcd │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cronjob.yaml │ │ ├── pdb.yaml │ │ ├── scripts-configmap.yaml │ │ ├── secrets.yaml │ │ ├── servicemonitor.yaml │ │ ├── snapshot-pvc.yaml │ │ ├── statefulset.yaml │ │ ├── svc-headless.yaml │ │ └── svc.yaml │ ├── values-production.yaml │ └── values.yaml ├── filebeat │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── examples │ │ ├── default │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── test │ │ │ │ └── goss.yaml │ │ ├── oss │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── test │ │ │ │ └── goss.yaml │ │ │ └── values.yaml │ │ ├── security │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── test │ │ │ │ └── goss.yaml │ │ │ └── values.yaml │ │ └── upgrade │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── test │ │ │ └── goss.yaml │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── daemonset.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── flagger │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── crds │ │ └── crd.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── account.yaml │ │ ├── authorizationpolicy.yaml │ │ ├── crd.yaml │ │ ├── deployment.yaml │ │ ├── pdb.yaml │ │ ├── podmonitor.yaml │ │ ├── prometheus.yaml │ │ ├── psp.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ └── servicemonitor.yaml │ └── values.yaml ├── flink-on-tke │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── flink-cluster-crd.yaml │ │ ├── flink-operator.yaml │ │ ├── generate-cert.yaml │ │ └── serviceaccount.yaml │ ├── update_template.sh │ └── values.yaml ├── flink-operator │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── flink-cluster-crd.yaml │ │ ├── flink-operator.yaml │ │ ├── generate-cert.yaml │ │ └── serviceaccount.yaml │ ├── update_template.sh │ └── values.yaml ├── fluent-bit │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cluster-role.yaml │ │ ├── cluster-rolebinding.yaml │ │ ├── config.yaml │ │ ├── daemonset.yaml │ │ ├── psp.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ │ ├── test-configmap.yaml │ │ │ └── test.yaml │ └── values.yaml ├── fluentd │ ├── .helmignore │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ └── values.yaml ├── fluid-on-tke │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ ├── data.fluid.io_alluxioruntimes.yaml │ │ ├── data.fluid.io_databackups.yaml │ │ ├── data.fluid.io_dataloads.yaml │ │ ├── data.fluid.io_datasets.yaml │ │ └── data.fluid.io_goosefsruntimes.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── controller │ │ │ ├── alluxioruntime_controller.yaml │ │ │ ├── dataset_controller.yaml │ │ │ └── goosefsruntime_controller.yaml │ │ ├── csi │ │ │ ├── daemonset.yaml │ │ │ └── driver.yaml │ │ ├── namespace.yaml │ │ ├── role │ │ │ ├── alluxio │ │ │ │ └── rbac.yaml │ │ │ ├── csi │ │ │ │ └── rbac.yaml │ │ │ ├── dataset │ │ │ │ └── rbac.yaml │ │ │ ├── goosefs │ │ │ │ └── rbac.yaml │ │ │ └── webhook │ │ │ │ └── rabc.yaml │ │ └── webhook │ │ │ ├── service.yaml │ │ │ ├── webhook.yaml │ │ │ └── webhookconfiguration.yaml │ └── values.yaml ├── fluid │ ├── fluid-0.6.0 │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── crds │ │ │ ├── data.fluid.io_alluxioruntimes.yaml │ │ │ ├── data.fluid.io_databackups.yaml │ │ │ ├── data.fluid.io_dataloads.yaml │ │ │ ├── data.fluid.io_datasets.yaml │ │ │ └── data.fluid.io_goosefsruntimes.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── controller │ │ │ │ ├── alluxioruntime_controller.yaml │ │ │ │ ├── dataset_controller.yaml │ │ │ │ └── goosefsruntime_controller.yaml │ │ │ ├── csi │ │ │ │ ├── daemonset.yaml │ │ │ │ └── driver.yaml │ │ │ ├── namespace.yaml │ │ │ └── role │ │ │ │ ├── alluxio │ │ │ │ └── rbac.yaml │ │ │ │ ├── dataset │ │ │ │ └── rbac.yaml │ │ │ │ └── goosefs │ │ │ │ └── rbac.yaml │ │ └── values.yaml │ └── fluid-0.7.0 │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── crds │ │ ├── data.fluid.io_alluxioruntimes.yaml │ │ ├── data.fluid.io_databackups.yaml │ │ ├── data.fluid.io_dataloads.yaml │ │ ├── data.fluid.io_datasets.yaml │ │ └── data.fluid.io_goosefsruntimes.yaml │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── controller │ │ │ ├── alluxioruntime_controller.yaml │ │ │ ├── dataset_controller.yaml │ │ │ └── goosefsruntime_controller.yaml │ │ ├── csi │ │ │ ├── daemonset.yaml │ │ │ └── driver.yaml │ │ ├── namespace.yaml │ │ ├── role │ │ │ ├── alluxio │ │ │ │ └── rbac.yaml │ │ │ ├── csi │ │ │ │ └── rbac.yaml │ │ │ ├── dataset │ │ │ │ └── rbac.yaml │ │ │ ├── goosefs │ │ │ │ └── rbac.yaml │ │ │ └── webhook │ │ │ │ └── rabc.yaml │ │ └── webhook │ │ │ ├── service.yaml │ │ │ ├── webhook.yaml │ │ │ └── webhookconfiguration.yaml │ │ └── values.yaml ├── flux2 │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helper.tpl │ │ ├── aggregate-clusterroles.yaml │ │ ├── cluster-reconciler-clusterrolebinding.yaml │ │ ├── cluster-reconciler-impersonator-clusterrole.yaml │ │ ├── cluster-reconciler-impersonator-clusterrolebinding.yaml │ │ ├── crd-controller-clusterrole.yaml │ │ ├── crd-controller-clusterrolebinding.yaml │ │ ├── extra-manifests.yaml │ │ ├── helm-controller-sa.yaml │ │ ├── helm-controller.crds.yaml │ │ ├── helm-controller.yaml │ │ ├── image-automation-controller-sa.yaml │ │ ├── image-automation-controller.crds.yaml │ │ ├── image-automation-controller.yaml │ │ ├── image-reflector-controller-sa.yaml │ │ ├── image-reflector-controller.crds.yaml │ │ ├── image-reflector-controller.yaml │ │ ├── kustomize-controller-sa.yaml │ │ ├── kustomize-controller-secret.yaml │ │ ├── kustomize-controller.crds.yaml │ │ ├── kustomize-controller.yaml │ │ ├── notification-controller-ingress.yaml │ │ ├── notification-controller-sa.yaml │ │ ├── notification-controller-service.yaml │ │ ├── notification-controller-webhook-service.yaml │ │ ├── notification-controller.crds.yaml │ │ ├── notification-controller.yaml │ │ ├── podmonitor.yaml │ │ ├── policies.yaml │ │ ├── pre-install-job-serviceaccount.yaml │ │ ├── pre-install-job.yaml │ │ ├── source-controller-service.yaml │ │ ├── source-controller-serviceaccount.yaml │ │ ├── source-controller.crds.yaml │ │ └── source-controller.yaml │ └── values.yaml ├── gitlab │ ├── .markdownlint.yml │ ├── .rubocop.yml │ ├── .rubocop_todo.yml │ ├── .vale.ini │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Chart.yaml │ ├── LICENSE.md │ ├── README.md │ ├── Rakefile │ ├── charts │ │ ├── cert-manager │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── cainjector-deployment.yaml │ │ │ │ ├── cainjector-psp-clusterrole.yaml │ │ │ │ ├── cainjector-psp-clusterrolebinding.yaml │ │ │ │ ├── cainjector-psp.yaml │ │ │ │ ├── cainjector-rbac.yaml │ │ │ │ ├── cainjector-serviceaccount.yaml │ │ │ │ ├── crds.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── rbac.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── startupapicheck-job.yaml │ │ │ │ ├── startupapicheck-psp-clusterrole.yaml │ │ │ │ ├── startupapicheck-psp-clusterrolebinding.yaml │ │ │ │ ├── startupapicheck-psp.yaml │ │ │ │ ├── startupapicheck-rbac.yaml │ │ │ │ ├── startupapicheck-serviceaccount.yaml │ │ │ │ ├── webhook-deployment.yaml │ │ │ │ ├── webhook-mutating-webhook.yaml │ │ │ │ ├── webhook-psp-clusterrole.yaml │ │ │ │ ├── webhook-psp-clusterrolebinding.yaml │ │ │ │ ├── webhook-psp.yaml │ │ │ │ ├── webhook-rbac.yaml │ │ │ │ ├── webhook-service.yaml │ │ │ │ ├── webhook-serviceaccount.yaml │ │ │ │ └── webhook-validating-webhook.yaml │ │ │ └── values.yaml │ │ ├── certmanager-issuer │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _create_issuer.sh │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _issuer.yaml │ │ │ │ ├── cert-manager.yml │ │ │ │ ├── issuer-job.yaml │ │ │ │ └── rbac-config.yaml │ │ │ └── values.yaml │ │ ├── gitlab-runner │ │ │ ├── .gitlab-ci.yml │ │ │ ├── .gitlab │ │ │ │ ├── changelog.yml │ │ │ │ └── ci │ │ │ │ │ └── jh.gitlab-ci.yml │ │ │ ├── .helmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Chart.yaml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _cache.tpl │ │ │ │ ├── _env_vars.tpl │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── role-binding.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── service-account.yaml │ │ │ │ ├── service-session-server.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ │ ├── gitlab │ │ │ ├── Chart.yaml │ │ │ ├── charts │ │ │ │ ├── geo-logcursor │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitaly │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _configmap_spec.yaml │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── _pdb_spec.yaml │ │ │ │ │ │ ├── _service_spec.yaml │ │ │ │ │ │ ├── _statefulset_spec.yaml │ │ │ │ │ │ ├── configmap-with-praefect.yml │ │ │ │ │ │ ├── configmap.yml │ │ │ │ │ │ ├── pdb-with-praefect.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service-with-praefect.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ ├── statefulset-with-praefect.yml │ │ │ │ │ │ └── statefulset.yml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitlab-exporter │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitlab-grafana │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _import-secret.sh │ │ │ │ │ │ ├── datasource-configmap.yaml │ │ │ │ │ │ ├── import-secret-configmap.yaml │ │ │ │ │ │ └── ingress.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitlab-pages │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service-custom-domains.yaml │ │ │ │ │ │ ├── service-metrics.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitlab-shell │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── configmap-sshd.yml │ │ │ │ │ │ ├── configmap.yml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── nginx-tcp-configmap.yml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── values.schema.json │ │ │ │ │ └── values.yaml │ │ │ │ ├── kas │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _default-config.yaml │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── mailroom │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── migrations │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── _jobspec.yaml │ │ │ │ │ │ ├── _serviceaccountspec.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ └── job.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── praefect │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ └── statefulset.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── sidekiq │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── podmonitor.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── spamcheck │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── toolbox │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── backup-job.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── webservice │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ ├── _datamodel.tpl │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap.yml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── ingress_smartcard.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor-workhorse.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test-runner.yaml │ │ │ │ │ │ └── tests.yaml │ │ │ │ │ ├── values.schema.json │ │ │ │ │ └── values.yaml │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ │ ├── _artifacts.tpl │ │ │ │ ├── _ciSecureFiles.tpl │ │ │ │ ├── _configure.tpl │ │ │ │ ├── _contentSecurityPolicy.tpl │ │ │ │ ├── _database.yml.tpl │ │ │ │ ├── _databaseDatamodel.tpl │ │ │ │ ├── _defaultProjectsFeatures.tpl │ │ │ │ ├── _dependencyProxy.tpl │ │ │ │ ├── _externaldiffs.tpl │ │ │ │ ├── _geo.tpl │ │ │ │ ├── _gitaly.tpl │ │ │ │ ├── _gitlab.yaml.tpl │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _kas.tpl │ │ │ │ ├── _ldap.tpl │ │ │ │ ├── _lfs.tpl │ │ │ │ ├── _mailroom.tpl │ │ │ │ ├── _minio.tpl │ │ │ │ ├── _objectStorage.tpl │ │ │ │ ├── _omniauth.tpl │ │ │ │ ├── _packages.tpl │ │ │ │ ├── _pages.tpl │ │ │ │ ├── _postgresql.tpl │ │ │ │ ├── _praefect.tpl │ │ │ │ ├── _pseudonymizer.tpl │ │ │ │ ├── _rails.redis.tpl │ │ │ │ ├── _redis.tpl │ │ │ │ ├── _registry.tpl │ │ │ │ ├── _sentry.tpl │ │ │ │ ├── _serviceAccount.tpl │ │ │ │ ├── _sidekiq.tpl │ │ │ │ ├── _smartcard.tpl │ │ │ │ ├── _smtp.tpl │ │ │ │ ├── _spamcheck.tpl │ │ │ │ ├── _terraformState.tpl │ │ │ │ ├── _tracing.tpl │ │ │ │ ├── _uploads.tpl │ │ │ │ └── _workhorse.tpl │ │ │ └── values.yaml │ │ ├── grafana │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── default-values.yaml │ │ │ │ ├── with-dashboard-json-values.yaml │ │ │ │ ├── with-dashboard-values.yaml │ │ │ │ └── with-image-renderer-values.yaml │ │ │ ├── dashboards │ │ │ │ └── custom-dashboard.json │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _pod.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── headless-service.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── image-renderer-deployment.yaml │ │ │ │ ├── image-renderer-network-policy.yaml │ │ │ │ ├── image-renderer-service.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret-env.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ └── test.yaml │ │ │ └── values.yaml │ │ ├── minio │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helper_create_buckets.sh │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── create-buckets-job.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── minio_deployment.yaml │ │ │ │ ├── minio_networkpolicy.yaml │ │ │ │ ├── minio_pvc.yaml │ │ │ │ ├── minio_svc.yaml │ │ │ │ ├── minioconfig_configmap.yaml │ │ │ │ └── pdb.yaml │ │ │ └── values.yaml │ │ ├── nginx-ingress │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── admission-webhooks │ │ │ │ │ ├── job-patch │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── job-createSecret.yaml │ │ │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ │ │ ├── psp.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── validating-webhook.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── controller-configmap-addheaders.yaml │ │ │ │ ├── controller-configmap-proxyheaders.yaml │ │ │ │ ├── controller-configmap-tcp.yaml │ │ │ │ ├── controller-configmap-udp.yaml │ │ │ │ ├── controller-configmap.yaml │ │ │ │ ├── controller-daemonset.yaml │ │ │ │ ├── controller-deployment.yaml │ │ │ │ ├── controller-hpa.yaml │ │ │ │ ├── controller-ingressclass.yaml │ │ │ │ ├── controller-keda.yaml │ │ │ │ ├── controller-poddisruptionbudget.yaml │ │ │ │ ├── controller-prometheusrules.yaml │ │ │ │ ├── controller-psp.yaml │ │ │ │ ├── controller-role.yaml │ │ │ │ ├── controller-rolebinding.yaml │ │ │ │ ├── controller-service-internal.yaml │ │ │ │ ├── controller-service-metrics.yaml │ │ │ │ ├── controller-service-webhook.yaml │ │ │ │ ├── controller-service.yaml │ │ │ │ ├── controller-serviceaccount.yaml │ │ │ │ ├── controller-servicemonitor.yaml │ │ │ │ ├── default-backend-deployment.yaml │ │ │ │ ├── default-backend-hpa.yaml │ │ │ │ ├── default-backend-poddisruptionbudget.yaml │ │ │ │ ├── default-backend-psp.yaml │ │ │ │ ├── default-backend-role.yaml │ │ │ │ ├── default-backend-rolebinding.yaml │ │ │ │ ├── default-backend-service.yaml │ │ │ │ ├── default-backend-serviceaccount.yaml │ │ │ │ └── dh-param-secret.yaml │ │ │ └── values.yaml │ │ ├── postgresql │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── commonAnnotations.yaml │ │ │ │ ├── default-values.yaml │ │ │ │ └── shmvolume-disabled-values.yaml │ │ │ ├── files │ │ │ │ ├── README.md │ │ │ │ ├── conf.d │ │ │ │ │ └── README.md │ │ │ │ └── docker-entrypoint-initdb.d │ │ │ │ │ └── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── extended-config-configmap.yaml │ │ │ │ ├── initialization-configmap.yaml │ │ │ │ ├── metrics-configmap.yaml │ │ │ │ ├── metrics-svc.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── statefulset-slaves.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ ├── svc-headless.yaml │ │ │ │ ├── svc-read.yaml │ │ │ │ └── svc.yaml │ │ │ ├── values-production.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ ├── prometheus │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ └── kube-state-metrics │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── kubeconfig-secret.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ │ └── stsdiscovery-rolebinding.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── alertmanager │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── cm.yaml │ │ │ │ │ ├── deploy.yaml │ │ │ │ │ ├── headless-svc.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── netpol.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── sts.yaml │ │ │ │ ├── node-exporter │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── pushgateway │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deploy.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── netpol.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── vpa.yaml │ │ │ │ └── server │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── cm.yaml │ │ │ │ │ ├── deploy.yaml │ │ │ │ │ ├── headless-svc.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── netpol.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── sts.yaml │ │ │ │ │ └── vpa.yaml │ │ │ └── values.yaml │ │ ├── redis │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── extra-flags-values.yaml │ │ │ │ └── production-sentinel-values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap-scripts.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── headless-svc.yaml │ │ │ │ ├── health-configmap.yaml │ │ │ │ ├── metrics-prometheus.yaml │ │ │ │ ├── metrics-svc.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── redis-master-statefulset.yaml │ │ │ │ ├── redis-master-svc.yaml │ │ │ │ ├── redis-node-statefulset.yaml │ │ │ │ ├── redis-role.yaml │ │ │ │ ├── redis-rolebinding.yaml │ │ │ │ ├── redis-serviceaccount.yaml │ │ │ │ ├── redis-slave-statefulset.yaml │ │ │ │ ├── redis-slave-svc.yaml │ │ │ │ ├── redis-with-sentinel-svc.yaml │ │ │ │ └── secret.yaml │ │ │ ├── values-production.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ └── registry │ │ │ ├── CHANGELOG.md │ │ │ ├── Chart.yaml │ │ │ ├── index.md │ │ │ ├── templates │ │ │ ├── _database.tpl │ │ │ ├── _gc.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── _migration.tpl │ │ │ ├── _profiling.tpl │ │ │ ├── _storage_default.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── migrations-job.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ ├── deps.yml │ ├── icons │ │ └── helm-chart-icon.svg │ ├── requirements.lock │ ├── requirements.yaml │ ├── support │ │ └── crd.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _application.tpl │ │ ├── _boolean.tpl │ │ ├── _certificates.tpl │ │ ├── _checkConfig.tpl │ │ ├── _checkConfig_geo.tpl │ │ ├── _checkConfig_gitaly.tpl │ │ ├── _checkConfig_mailroom.tpl │ │ ├── _checkConfig_nginx.tpl │ │ ├── _checkConfig_object_storage.tpl │ │ ├── _checkConfig_postgresql.tpl │ │ ├── _checkConfig_registry.tpl │ │ ├── _checkConfig_sidekiq.tpl │ │ ├── _checkConfig_toolbox.tpl │ │ ├── _checkConfig_webservice.tpl │ │ ├── _deprecations.tpl │ │ ├── _geo.tpl │ │ ├── _gitaly.tpl │ │ ├── _helpers.tpl │ │ ├── _ingress.tpl │ │ ├── _kas.tpl │ │ ├── _migrations.tpl │ │ ├── _minio.tpl │ │ ├── _oauth.tpl │ │ ├── _pages.tpl │ │ ├── _praefect.tpl │ │ ├── _rails.tpl │ │ ├── _redis.tpl │ │ ├── _registry.tpl │ │ ├── _runcheck.tpl │ │ ├── _runner.tpl │ │ ├── _shell.tpl │ │ ├── _workhorse.tpl │ │ ├── application.yaml │ │ ├── chart-info.yaml │ │ ├── initdb-configmap.yaml │ │ ├── shared-secrets │ │ │ ├── _generate_secrets.sh.tpl │ │ │ ├── configmap.yaml │ │ │ ├── job.yaml │ │ │ ├── rbac-config.yaml │ │ │ └── self-signed-cert-job.yml │ │ └── upgrade_check_hook.yaml │ └── values.yaml ├── goosefs-on-tke │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ ├── data.fluid.io_databackups.yaml │ │ ├── data.fluid.io_dataloads.yaml │ │ ├── data.fluid.io_datasets.yaml │ │ └── data.fluid.io_goosefsruntimes.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── controller │ │ │ ├── dataset_controller.yaml │ │ │ └── goosefsruntime_controller.yaml │ │ ├── csi │ │ │ ├── daemonset.yaml │ │ │ └── driver.yaml │ │ ├── namespace.yaml │ │ ├── role │ │ │ ├── csi │ │ │ │ └── rbac.yaml │ │ │ ├── dataset │ │ │ │ └── rbac.yaml │ │ │ ├── goosefs │ │ │ │ └── rbac.yaml │ │ │ └── webhook │ │ │ │ └── rabc.yaml │ │ └── webhook │ │ │ ├── service.yaml │ │ │ ├── webhook.yaml │ │ │ └── webhookconfiguration.yaml │ └── values.yaml ├── grafana │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ ├── default-values.yaml │ │ ├── with-dashboard-json-values.yaml │ │ ├── with-dashboard-values.yaml │ │ └── with-image-renderer-values.yaml │ ├── dashboards │ │ └── custom-dashboard.json │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── _pod.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap-dashboard-provider.yaml │ │ ├── configmap.yaml │ │ ├── dashboards-json-configmap.yaml │ │ ├── deployment.yaml │ │ ├── headless-service.yaml │ │ ├── hpa.yaml │ │ ├── image-renderer-deployment.yaml │ │ ├── image-renderer-network-policy.yaml │ │ ├── image-renderer-service.yaml │ │ ├── ingress.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── podsecuritypolicy.yaml │ │ ├── pvc.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secret-env.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── statefulset.yaml │ │ └── tests │ │ │ ├── test-configmap.yaml │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ ├── test-role.yaml │ │ │ ├── test-rolebinding.yaml │ │ │ ├── test-serviceaccount.yaml │ │ │ └── test.yaml │ └── values.yaml ├── higress │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── README.md.gotmpl │ ├── README.zh.md │ └── charts │ │ ├── higress-console │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── certmanager.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── grafana.yaml │ │ │ ├── ingress.yaml │ │ │ ├── loki.yaml │ │ │ ├── prometheus.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ │ └── higress-core │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── crds │ │ ├── customresourcedefinitions.gen.yaml │ │ └── istio-envoyfilter.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── _pod.tpl │ │ ├── clusterrole.yaml │ │ ├── configmap.yaml │ │ ├── controller-clusterrole.yaml │ │ ├── controller-clusterrolebinding.yaml │ │ ├── controller-deployment.yaml │ │ ├── controller-role.yaml │ │ ├── controller-rolebinding.yaml │ │ ├── controller-service.yaml │ │ ├── controller-serviceaccont.yaml │ │ ├── daemonset.yaml │ │ ├── deployment.yaml │ │ ├── fallback-envoyfilter.yaml │ │ ├── hpa.yaml │ │ ├── ingressclass.yaml │ │ ├── podmonitor.yaml │ │ ├── promtail.yaml │ │ ├── role.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml ├── influxdb │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── files │ │ ├── conf │ │ │ └── README.md │ │ └── docker-entrypoint-initdb.d │ │ │ └── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── influxdb │ │ │ ├── configmap-backup.yaml │ │ │ ├── configmap-initdb-scripts.yaml │ │ │ ├── configmap.yaml │ │ │ ├── cronjob-backup.yaml │ │ │ ├── deployment-standalone.yaml │ │ │ ├── pvc-backup.yaml │ │ │ ├── pvc.yaml │ │ │ ├── secrets-backup.yaml │ │ │ ├── secrets.yaml │ │ │ ├── service-headless.yaml │ │ │ ├── service-metrics.yaml │ │ │ ├── service.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset-high-availability.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ └── relay │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ ├── values-production.yaml │ └── values.yaml ├── jaeger │ ├── .helmignore │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── charts │ │ ├── cassandra │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── sample │ │ │ │ └── create-storage-gce.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── backup │ │ │ │ │ ├── cronjob.yaml │ │ │ │ │ └── rbac.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ │ ├── elasticsearch │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── 6.x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── config │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ ├── values.yaml │ │ │ │ │ └── watcher_encryption_key │ │ │ │ ├── default │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── rolling_upgrade.sh │ │ │ │ │ └── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ ├── docker-for-mac │ │ │ │ │ ├── Makefile │ │ │ │ │ └── values.yaml │ │ │ │ ├── kubernetes-kind │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ └── values.yaml │ │ │ │ ├── microk8s │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ └── values.yaml │ │ │ │ ├── migration │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.yml │ │ │ │ │ ├── data.yml │ │ │ │ │ └── master.yml │ │ │ │ ├── minikube │ │ │ │ │ ├── Makefile │ │ │ │ │ └── values.yaml │ │ │ │ ├── multi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── data.yml │ │ │ │ │ ├── master.yml │ │ │ │ │ └── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ ├── openshift │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── oss │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── security │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── security.yml │ │ │ │ │ └── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ └── upgrade │ │ │ │ │ ├── Makefile │ │ │ │ │ └── test │ │ │ │ │ └── goss.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── test │ │ │ │ │ └── test-elasticsearch-health.yaml │ │ │ └── values.yaml │ │ └── kafka │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── charts │ │ │ └── zookeeper │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── config-jmx-exporter.yaml │ │ │ │ ├── config-script.yaml │ │ │ │ ├── job-chroots.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── service-headless.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── servicemonitors.yaml │ │ │ │ └── statefulset.yaml │ │ │ │ └── values.yaml │ │ │ ├── requirements.lock │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap-config.yaml │ │ │ ├── configmap-jmx.yaml │ │ │ ├── deployment-kafka-exporter.yaml │ │ │ ├── job-config.yaml │ │ │ ├── podisruptionbudget.yaml │ │ │ ├── prometheusrules.yaml │ │ │ ├── service-brokers-external.yaml │ │ │ ├── service-brokers.yaml │ │ │ ├── service-headless.yaml │ │ │ ├── servicemonitors.yaml │ │ │ ├── statefulset.yaml │ │ │ └── tests │ │ │ │ └── test_topic_create_consume_produce.yaml │ │ │ └── values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── agent-ds.yaml │ │ ├── agent-sa.yaml │ │ ├── agent-servicemonitor.yaml │ │ ├── agent-svc.yaml │ │ ├── cassandra-schema-job.yaml │ │ ├── cassandra-schema-sa.yaml │ │ ├── cassandra-secret.yaml │ │ ├── collector-configmap.yaml │ │ ├── collector-deploy.yaml │ │ ├── collector-hpa.yaml │ │ ├── collector-sa.yaml │ │ ├── collector-servicemonitor.yaml │ │ ├── collector-svc.yaml │ │ ├── elasticsearch-secret.yaml │ │ ├── es-index-cleaner-cronjob.yaml │ │ ├── es-index-cleaner-sa.yaml │ │ ├── hotrod-deploy.yaml │ │ ├── hotrod-ing.yaml │ │ ├── hotrod-sa.yaml │ │ ├── hotrod-svc.yaml │ │ ├── ingester-deploy.yaml │ │ ├── ingester-hpa.yaml │ │ ├── ingester-sa.yaml │ │ ├── ingester-servicemonitor.yaml │ │ ├── ingester-svc.yaml │ │ ├── query-deploy.yaml │ │ ├── query-ing.yaml │ │ ├── query-sa.yaml │ │ ├── query-servicemonitor.yaml │ │ ├── query-svc.yaml │ │ ├── spark-cronjob.yaml │ │ └── spark-sa.yaml │ └── values.yaml ├── jenkins │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.yaml │ ├── README.md │ ├── Tiltfile │ ├── VALUES_SUMMARY.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── config.yaml │ │ ├── deprecation.yaml │ │ ├── home-pvc.yaml │ │ ├── jcasc-config.yaml │ │ ├── jenkins-agent-svc.yaml │ │ ├── jenkins-backup-cronjob.yaml │ │ ├── jenkins-backup-rbac.yaml │ │ ├── jenkins-controller-alerting-rules.yaml │ │ ├── jenkins-controller-backendconfig.yaml │ │ ├── jenkins-controller-ingress.yaml │ │ ├── jenkins-controller-networkpolicy.yaml │ │ ├── jenkins-controller-route.yaml │ │ ├── jenkins-controller-secondary-ingress.yaml │ │ ├── jenkins-controller-servicemonitor.yaml │ │ ├── jenkins-controller-statefulset.yaml │ │ ├── jenkins-controller-svc.yaml │ │ ├── rbac.yaml │ │ ├── secret-https-jks.yaml │ │ ├── secret.yaml │ │ ├── service-account-agent.yaml │ │ ├── service-account.yaml │ │ └── tests │ │ │ ├── jenkins-test.yaml │ │ │ └── test-config.yaml │ ├── tests │ │ ├── config-test.yaml │ │ ├── home-pvc-test.yaml │ │ ├── jcasc-config-test.yaml │ │ ├── jenkins-agent-svc-test.yaml │ │ ├── jenkins-controller-alerting-rules-test.yaml │ │ ├── jenkins-controller-ingress-1.19-test.yaml │ │ ├── jenkins-controller-ingress-test.yaml │ │ ├── jenkins-controller-networkpolicy-test.yaml │ │ ├── jenkins-controller-secondary-ingress-1.19-test.yaml │ │ ├── jenkins-controller-secondary-ingress-test.yaml │ │ ├── jenkins-controller-servicemonitor_test.yaml │ │ ├── jenkins-controller-statefulset-test.yaml │ │ ├── jenkins-controller-svc-test.yaml │ │ ├── rbac-test.yaml │ │ ├── secret-test.yaml │ │ ├── service-account-agent-test.yaml │ │ └── service-account-test.yaml │ └── values.yaml ├── jmeter-suite │ ├── .helmignore │ ├── tke-jmeter-suite@v2.0-kona-non │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ │ ├── grafana │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── ci │ │ │ │ │ ├── default-values.yaml │ │ │ │ │ ├── with-dashboard-json-values.yaml │ │ │ │ │ └── with-dashboard-values.yaml │ │ │ │ ├── dashboards │ │ │ │ │ ├── Apache_JMeter_Dashboard.json │ │ │ │ │ ├── JMeter_Dashboard.json │ │ │ │ │ ├── custom-dashboard.json │ │ │ │ │ ├── jmeter-dashboard_rev2.json │ │ │ │ │ └── jmeter-trend-dashboard.json │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── _pod.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── headless-service.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── secret-env.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ │ └── test.yaml │ │ │ │ └── values.yaml │ │ │ ├── influxdb │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── backup-cronjob.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── init-config.yaml │ │ │ │ │ ├── meta-configmap.yaml │ │ │ │ │ ├── meta-service.yaml │ │ │ │ │ ├── meta-statefulset.yaml │ │ │ │ │ ├── post-install-set-auth.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── statefulset.yaml │ │ │ │ └── values.yaml │ │ │ └── jmeter │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── jmeter-master-deployment.yaml │ │ │ │ ├── jmeter-server-deployment.yaml │ │ │ │ └── jmeter-server-service.yaml │ │ │ │ └── values.yaml │ │ ├── demo │ │ │ └── Test.jmx │ │ ├── start_test.sh │ │ ├── stop_test.sh │ │ └── values.yaml │ └── tke-jmeter-suite@v2.0-kona │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ ├── grafana │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── default-values.yaml │ │ │ │ ├── with-dashboard-json-values.yaml │ │ │ │ └── with-dashboard-values.yaml │ │ │ ├── dashboards │ │ │ │ ├── custom-dashboard.json │ │ │ │ ├── jmeter-dashboard_rev2.json │ │ │ │ └── jmeter-trend-dashboard.json │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _pod.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── headless-service.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret-env.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ └── test.yaml │ │ │ └── values.yaml │ │ ├── influxdb │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── backup-cronjob.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── init-config.yaml │ │ │ │ ├── meta-configmap.yaml │ │ │ │ ├── meta-service.yaml │ │ │ │ ├── meta-statefulset.yaml │ │ │ │ ├── post-install-set-auth.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ │ └── jmeter │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── jmeter-master-deployment.yaml │ │ │ ├── jmeter-server-deployment.yaml │ │ │ └── jmeter-server-service.yaml │ │ │ └── values.yaml │ │ ├── demo │ │ └── Test.jmx │ │ ├── start_test.sh │ │ ├── stop_test.sh │ │ └── values.yaml ├── k8s-big-data-suite │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── airflow │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── UPGRADE.md │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── config │ │ │ │ │ ├── configmap-env.yaml │ │ │ │ │ ├── configmap-scripts-git.yaml │ │ │ │ │ ├── configmap-scripts.yaml │ │ │ │ │ ├── configmap-variables-pools.yaml │ │ │ │ │ └── secret-connections.yaml │ │ │ │ ├── extra-manifests.yaml │ │ │ │ ├── flower │ │ │ │ │ ├── flower-deployment.yaml │ │ │ │ │ ├── flower-ingress.yaml │ │ │ │ │ ├── flower-pdb.yaml │ │ │ │ │ └── flower-service.yaml │ │ │ │ ├── monitoring │ │ │ │ │ ├── prometheus-rule.yaml │ │ │ │ │ └── service-monitor.yaml │ │ │ │ ├── pvc-logs.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── rbac │ │ │ │ │ ├── airflow-role.yaml │ │ │ │ │ ├── airflow-rolebinding.yaml │ │ │ │ │ └── airflow-serviceaccount.yaml │ │ │ │ ├── scheduler │ │ │ │ │ ├── scheduler-deployment.yaml │ │ │ │ │ └── scheduler-pdb.yaml │ │ │ │ ├── webserver │ │ │ │ │ ├── webserver-deployment.yaml │ │ │ │ │ ├── webserver-ingress.yaml │ │ │ │ │ ├── webserver-pdb.yaml │ │ │ │ │ └── webserver-service.yaml │ │ │ │ └── worker │ │ │ │ │ ├── worker-hpa.yaml │ │ │ │ │ ├── worker-pdb.yaml │ │ │ │ │ ├── worker-service.yaml │ │ │ │ │ └── worker-statefulset.yaml │ │ │ └── values.yaml │ │ ├── client │ │ │ ├── Chart.yaml │ │ │ ├── file │ │ │ │ ├── hdfs-fsck.sh │ │ │ │ ├── k8s_client.py │ │ │ │ └── reset-connect.sh │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── client-configmap.yaml │ │ │ │ └── client-deployment.yaml │ │ │ └── values.yaml │ │ ├── cp-helm-charts │ │ │ ├── .gitignore │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ ├── cp-kafka-connect │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── jmx-configmap.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── cp-kafka │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── requirements.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── headless-service.yaml │ │ │ │ │ │ ├── jmx-configmap.yaml │ │ │ │ │ │ ├── nodeport-service.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── canary-pod.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── cp-schema-registry │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── jmx-configmap.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ └── grafana-configmap.yaml │ │ │ └── values.yaml │ │ ├── custom-config │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ └── hadoop-configmap.yaml │ │ │ └── values.yaml │ │ ├── elasticsearch │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── 5.x │ │ │ │ │ ├── Makefile │ │ │ │ │ └── values.yaml │ │ │ │ ├── default │ │ │ │ │ ├── Makefile │ │ │ │ │ └── rolling_upgrade.sh │ │ │ │ ├── minikube │ │ │ │ │ ├── Makefile │ │ │ │ │ └── values.yaml │ │ │ │ ├── multi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── data.yml │ │ │ │ │ └── master.yml │ │ │ │ └── security │ │ │ │ │ ├── Makefile │ │ │ │ │ └── security.yml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── ingress.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── test │ │ │ │ │ └── test-elasticsearch-health.yaml │ │ │ ├── tests │ │ │ │ └── elasticsearch_test.py │ │ │ └── values.yaml │ │ ├── flink-operator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── crds │ │ │ │ └── flink-cluster-crd.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── flink-operator.yaml │ │ │ │ ├── generate-cert.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── webhook-cleanup-job.yaml │ │ │ ├── update_template.sh │ │ │ └── values.yaml │ │ ├── grafana │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── default-values.yaml │ │ │ │ ├── with-dashboard-json-values.yaml │ │ │ │ └── with-dashboard-values.yaml │ │ │ ├── dashboards │ │ │ │ └── custom-dashboard.json │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _pod.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── headless-service.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret-env.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ └── test.yaml │ │ │ └── values.yaml │ │ ├── hadoop │ │ │ ├── .gitignore │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── charts │ │ │ │ ├── hdfs-config-k8s │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ └── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ └── configmap.yaml │ │ │ │ ├── hdfs-datanode-k8s │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── dashboards │ │ │ │ │ │ └── datanode.json │ │ │ │ │ └── templates │ │ │ │ │ │ ├── datanode-daemonset.yaml │ │ │ │ │ │ ├── grafana-configmap.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── hdfs-journalnode-k8s │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── dashboards │ │ │ │ │ │ └── journalnode.json │ │ │ │ │ └── templates │ │ │ │ │ │ ├── grafana-configmap.yaml │ │ │ │ │ │ ├── journalnode-statefulset.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── hdfs-krb5-k8s │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ └── templates │ │ │ │ │ │ └── statefulset.yaml │ │ │ │ └── hdfs-namenode-k8s │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── dashboards │ │ │ │ │ └── namenode.json │ │ │ │ │ └── templates │ │ │ │ │ ├── grafana-configmap.yaml │ │ │ │ │ ├── namenode-statefulset.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ └── jmx-configmap.yaml │ │ │ └── values.yaml │ │ ├── hbase │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.yaml │ │ │ │ ├── hbase-configmap.yaml │ │ │ │ ├── hbase-master-pdb.yaml │ │ │ │ ├── hbase-master-statefulset.yaml │ │ │ │ ├── hbase-master-svc.yaml │ │ │ │ ├── hbase-rs-pdb.yaml │ │ │ │ ├── hbase-rs-statefulset.yaml │ │ │ │ └── hbase-rs-svc.yaml │ │ │ └── values.yaml │ │ ├── hive │ │ │ ├── Chart.yaml │ │ │ ├── dashboards │ │ │ │ └── hive.json │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── grafana-configmap.yaml │ │ │ │ ├── hive-configmap.yaml │ │ │ │ ├── hive-metastore-service.yaml │ │ │ │ ├── hive-metastore-statefulset.yaml │ │ │ │ ├── hive-server-deployment.yaml │ │ │ │ ├── hive-server-service.yaml │ │ │ │ ├── jmx-configmap.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ │ ├── impala │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── catalogd.yaml │ │ │ │ ├── coord_exec.yaml │ │ │ │ ├── shell.yaml │ │ │ │ └── statestored.yaml │ │ │ └── values.yaml │ │ ├── kibana │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── 5.x │ │ │ │ │ ├── Makefile │ │ │ │ │ └── values.yml │ │ │ │ ├── default │ │ │ │ │ └── Makefile │ │ │ │ └── security │ │ │ │ │ ├── Makefile │ │ │ │ │ └── security.yml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ ├── tests │ │ │ │ └── kibana_test.py │ │ │ └── values.yaml │ │ ├── kube-state-metrics │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ │ ├── kudu │ │ │ ├── Chart.yaml │ │ │ ├── dashboards │ │ │ │ └── kudu.json │ │ │ ├── templates │ │ │ │ ├── _helmutils.tpl │ │ │ │ ├── kudu-local-pv.yaml │ │ │ │ ├── kudu-master-sts.yaml │ │ │ │ ├── kudu-master-svc.yaml │ │ │ │ ├── kudu-master-ui-svc.yaml │ │ │ │ ├── kudu-metrics.yaml │ │ │ │ ├── kudu-pdb.yaml │ │ │ │ ├── kudu-tserver-sts.yaml │ │ │ │ ├── kudu-tserver-svc.yaml │ │ │ │ ├── local-storage-class.yaml │ │ │ │ └── tests │ │ │ │ │ └── health-test.yaml │ │ │ └── values.yaml │ │ ├── loki │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── datasources-configmap.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service-headless.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ │ ├── mist │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── mist-pv.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── nginx-ingress │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── daemonset-customconfig-values.yaml │ │ │ │ ├── daemonset-customnodeport-values.yaml │ │ │ │ ├── daemonset-headers-values.yaml │ │ │ │ ├── daemonset-nodeport-values.yaml │ │ │ │ ├── daemonset-tcp-udp-configMapNamespace-values.yaml │ │ │ │ ├── daemonset-tcp-udp-values.yaml │ │ │ │ ├── daemonset-tcp-values.yaml │ │ │ │ ├── deamonset-default-values.yaml │ │ │ │ ├── deamonset-metrics-values.yaml │ │ │ │ ├── deamonset-psp-values.yaml │ │ │ │ ├── deamonset-webhook-and-psp-values.yaml │ │ │ │ ├── deamonset-webhook-values.yaml │ │ │ │ ├── deployment-autoscaling-values.yaml │ │ │ │ ├── deployment-customconfig-values.yaml │ │ │ │ ├── deployment-customnodeport-values.yaml │ │ │ │ ├── deployment-default-values.yaml │ │ │ │ ├── deployment-headers-values.yaml │ │ │ │ ├── deployment-metrics-values.yaml │ │ │ │ ├── deployment-nodeport-values.yaml │ │ │ │ ├── deployment-psp-values.yaml │ │ │ │ ├── deployment-tcp-udp-configMapNamespace-values.yaml │ │ │ │ ├── deployment-tcp-udp-values.yaml │ │ │ │ ├── deployment-tcp-values.yaml │ │ │ │ ├── deployment-webhook-and-psp-values.yaml │ │ │ │ └── deployment-webhook-values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── addheaders-configmap.yaml │ │ │ │ ├── admission-webhooks │ │ │ │ │ ├── job-patch │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── job-createSecret.yaml │ │ │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ │ │ ├── psp.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── validating-webhook.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── controller-configmap.yaml │ │ │ │ ├── controller-daemonset.yaml │ │ │ │ ├── controller-deployment.yaml │ │ │ │ ├── controller-hpa.yaml │ │ │ │ ├── controller-metrics-service.yaml │ │ │ │ ├── controller-poddisruptionbudget.yaml │ │ │ │ ├── controller-prometheusrules.yaml │ │ │ │ ├── controller-psp.yaml │ │ │ │ ├── controller-role.yaml │ │ │ │ ├── controller-rolebinding.yaml │ │ │ │ ├── controller-service.yaml │ │ │ │ ├── controller-serviceaccount.yaml │ │ │ │ ├── controller-servicemonitor.yaml │ │ │ │ ├── controller-webhook-service.yaml │ │ │ │ ├── default-backend-deployment.yaml │ │ │ │ ├── default-backend-poddisruptionbudget.yaml │ │ │ │ ├── default-backend-psp.yaml │ │ │ │ ├── default-backend-role.yaml │ │ │ │ ├── default-backend-rolebinding.yaml │ │ │ │ ├── default-backend-service.yaml │ │ │ │ ├── default-backend-serviceaccount.yaml │ │ │ │ ├── proxyheaders-configmap.yaml │ │ │ │ ├── tcp-configmap.yaml │ │ │ │ └── udp-configmap.yaml │ │ │ └── values.yaml │ │ ├── postgresql-ha │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── files │ │ │ │ ├── README.md │ │ │ │ ├── conf.d │ │ │ │ │ └── README.md │ │ │ │ ├── docker-entrypoint-initdb.d │ │ │ │ │ └── README.md │ │ │ │ └── pgpool-entrypoint-initdb.d │ │ │ │ │ └── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── ldap-secrets.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pgpool │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── initdb-scripts-configmap.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ └── service.yaml │ │ │ │ └── postgresql │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── extended-configmap.yaml │ │ │ │ │ ├── hooks-scripts-configmap.yaml │ │ │ │ │ ├── initdb-scripts-configmap.yaml │ │ │ │ │ ├── metrics-service.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── service-headless.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ │ ├── postgresql │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ └── svc.yaml │ │ │ └── values.yaml │ │ ├── prometheus-node-exporter │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── monitor.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── prometheus-operator │ │ │ ├── .helmignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── 01-provision-crds-values.yaml │ │ │ │ └── 02-test-without-crds-values.yaml │ │ │ ├── crds │ │ │ │ ├── crd-alertmanager.yaml │ │ │ │ ├── crd-podmonitor.yaml │ │ │ │ ├── crd-prometheus.yaml │ │ │ │ ├── crd-prometheusrules.yaml │ │ │ │ ├── crd-servicemonitor.yaml │ │ │ │ └── crd-thanosrulers.yaml │ │ │ ├── requirements.lock │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── alertmanager │ │ │ │ │ ├── alertmanager.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── ingressperreplica.yaml │ │ │ │ │ ├── podDisruptionBudget.yaml │ │ │ │ │ ├── psp-role.yaml │ │ │ │ │ ├── psp-rolebinding.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ └── serviceperreplica.yaml │ │ │ │ ├── exporters │ │ │ │ │ ├── core-dns │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-api-server │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-controller-manager │ │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-dns │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-etcd │ │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-proxy │ │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-scheduler │ │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── kube-state-metrics │ │ │ │ │ │ └── serviceMonitor.yaml │ │ │ │ │ ├── kubelet │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── node-exporter │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── spark │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── grafana │ │ │ │ │ ├── configmap-dashboards.yaml │ │ │ │ │ ├── configmaps-datasources.yaml │ │ │ │ │ ├── dashboards-1.14 │ │ │ │ │ │ ├── apiserver.yaml │ │ │ │ │ │ ├── cluster-total.yaml │ │ │ │ │ │ ├── controller-manager.yaml │ │ │ │ │ │ ├── etcd.yaml │ │ │ │ │ │ ├── k8s-coredns.yaml │ │ │ │ │ │ ├── k8s-resources-cluster.yaml │ │ │ │ │ │ ├── k8s-resources-namespace.yaml │ │ │ │ │ │ ├── k8s-resources-node.yaml │ │ │ │ │ │ ├── k8s-resources-pod.yaml │ │ │ │ │ │ ├── k8s-resources-workload.yaml │ │ │ │ │ │ ├── k8s-resources-workloads-namespace.yaml │ │ │ │ │ │ ├── kubelet.yaml │ │ │ │ │ │ ├── namespace-by-pod.yaml │ │ │ │ │ │ ├── namespace-by-workload.yaml │ │ │ │ │ │ ├── node-cluster-rsrc-use.yaml │ │ │ │ │ │ ├── node-rsrc-use.yaml │ │ │ │ │ │ ├── nodes.yaml │ │ │ │ │ │ ├── persistentvolumesusage.yaml │ │ │ │ │ │ ├── pod-total.yaml │ │ │ │ │ │ ├── prometheus-remote-write.yaml │ │ │ │ │ │ ├── prometheus.yaml │ │ │ │ │ │ ├── proxy.yaml │ │ │ │ │ │ ├── scheduler.yaml │ │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ │ └── workload-total.yaml │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── etcd.yaml │ │ │ │ │ │ ├── k8s-cluster-rsrc-use.yaml │ │ │ │ │ │ ├── k8s-node-rsrc-use.yaml │ │ │ │ │ │ ├── k8s-resources-cluster.yaml │ │ │ │ │ │ ├── k8s-resources-namespace.yaml │ │ │ │ │ │ ├── k8s-resources-pod.yaml │ │ │ │ │ │ ├── k8s-resources-workload.yaml │ │ │ │ │ │ ├── k8s-resources-workloads-namespace.yaml │ │ │ │ │ │ ├── nodes.yaml │ │ │ │ │ │ ├── persistentvolumesusage.yaml │ │ │ │ │ │ ├── pods.yaml │ │ │ │ │ │ └── statefulset.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── prometheus-operator │ │ │ │ │ ├── admission-webhooks │ │ │ │ │ │ ├── job-patch │ │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ │ ├── job-createSecret.yaml │ │ │ │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ │ │ │ ├── psp.yaml │ │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ │ ├── mutatingWebhookConfiguration.yaml │ │ │ │ │ │ └── validatingWebhookConfiguration.yaml │ │ │ │ │ ├── cleanup-crds.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── crds.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ └── prometheus │ │ │ │ │ ├── additionalAlertRelabelConfigs.yaml │ │ │ │ │ ├── additionalAlertmanagerConfigs.yaml │ │ │ │ │ ├── additionalPrometheusRules.yaml │ │ │ │ │ ├── additionalScrapeConfigs.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── ingressThanosSidecar.yaml │ │ │ │ │ ├── ingressperreplica.yaml │ │ │ │ │ ├── podDisruptionBudget.yaml │ │ │ │ │ ├── podmonitors.yaml │ │ │ │ │ ├── prometheus.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── rules-1.14 │ │ │ │ │ ├── alertmanager.rules.yaml │ │ │ │ │ ├── etcd.yaml │ │ │ │ │ ├── general.rules.yaml │ │ │ │ │ ├── k8s.rules.yaml │ │ │ │ │ ├── kube-apiserver-availability.rules.yaml │ │ │ │ │ ├── kube-apiserver-slos.yaml │ │ │ │ │ ├── kube-apiserver.rules.yaml │ │ │ │ │ ├── kube-prometheus-general.rules.yaml │ │ │ │ │ ├── kube-prometheus-node-recording.rules.yaml │ │ │ │ │ ├── kube-scheduler.rules.yaml │ │ │ │ │ ├── kube-state-metrics.yaml │ │ │ │ │ ├── kubelet.rules.yaml │ │ │ │ │ ├── kubernetes-apps.yaml │ │ │ │ │ ├── kubernetes-resources.yaml │ │ │ │ │ ├── kubernetes-storage.yaml │ │ │ │ │ ├── kubernetes-system-apiserver.yaml │ │ │ │ │ ├── kubernetes-system-controller-manager.yaml │ │ │ │ │ ├── kubernetes-system-kubelet.yaml │ │ │ │ │ ├── kubernetes-system-scheduler.yaml │ │ │ │ │ ├── kubernetes-system.yaml │ │ │ │ │ ├── node-exporter.rules.yaml │ │ │ │ │ ├── node-exporter.yaml │ │ │ │ │ ├── node-network.yaml │ │ │ │ │ ├── node.rules.yaml │ │ │ │ │ ├── prometheus-operator.yaml │ │ │ │ │ └── prometheus.yaml │ │ │ │ │ ├── rules │ │ │ │ │ ├── alertmanager.rules.yaml │ │ │ │ │ ├── etcd.yaml │ │ │ │ │ ├── general.rules.yaml │ │ │ │ │ ├── k8s.rules.yaml │ │ │ │ │ ├── kube-apiserver.rules.yaml │ │ │ │ │ ├── kube-prometheus-node-alerting.rules.yaml │ │ │ │ │ ├── kube-prometheus-node-recording.rules.yaml │ │ │ │ │ ├── kube-scheduler.rules.yaml │ │ │ │ │ ├── kubernetes-absent.yaml │ │ │ │ │ ├── kubernetes-apps.yaml │ │ │ │ │ ├── kubernetes-resources.yaml │ │ │ │ │ ├── kubernetes-storage.yaml │ │ │ │ │ ├── kubernetes-system.yaml │ │ │ │ │ ├── node-network.yaml │ │ │ │ │ ├── node-time.yaml │ │ │ │ │ ├── node.rules.yaml │ │ │ │ │ ├── prometheus-operator.yaml │ │ │ │ │ └── prometheus.rules.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── servicemonitors.yaml │ │ │ │ │ └── serviceperreplica.yaml │ │ │ └── values.yaml │ │ ├── promtail │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service-headless.yaml │ │ │ │ ├── service-syslog.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ │ ├── spark │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── files │ │ │ │ ├── configuration.xsl │ │ │ │ ├── interpreter-list │ │ │ │ ├── log4j_yarn_cluster.properties │ │ │ │ └── zeppelin-site.xml │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── spark-configmap.yaml │ │ │ │ ├── spark-history-deployment.yaml │ │ │ │ ├── spark-thriftserver-deployment.yaml │ │ │ │ ├── spark-thriftserver-rbac.yaml │ │ │ │ ├── spark-zeppelin-configmap.yaml │ │ │ │ ├── spark-zeppelin-deployment.yaml │ │ │ │ └── spark-zeppelin-pvc.yaml │ │ │ └── values.yaml │ │ ├── sparkoperator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── ci │ │ │ │ └── test-values.yaml │ │ │ ├── hack │ │ │ │ └── update-ci.sh │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── crd-cleanup-job.yaml │ │ │ │ ├── crds.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── spark-operator-deployment.yaml │ │ │ │ ├── spark-operator-rbac.yaml │ │ │ │ ├── spark-operator-service.yaml │ │ │ │ ├── spark-operator-serviceaccount.yaml │ │ │ │ ├── spark-rbac.yaml │ │ │ │ ├── spark-serviceaccount.yaml │ │ │ │ ├── webhook-cleanup-job.yaml │ │ │ │ ├── webhook-init-job.yaml │ │ │ │ └── webhook-service.yaml │ │ │ └── values.yaml │ │ ├── superset │ │ │ ├── .gitignore │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── init-job.yaml │ │ │ │ ├── secret-env.yaml │ │ │ │ ├── secret-superset-config.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── volcano │ │ │ ├── Chart.yaml │ │ │ ├── config │ │ │ │ ├── volcano-scheduler-ci.conf │ │ │ │ └── volcano-scheduler.conf │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── admission.yaml │ │ │ │ ├── batch_v1alpha1_job.yaml │ │ │ │ ├── bus_v1alpha1_command.yaml │ │ │ │ ├── controllers.yaml │ │ │ │ ├── scheduler.yaml │ │ │ │ ├── scheduling_v1beta1_podgroup.yaml │ │ │ │ └── scheduling_v1beta1_queue.yaml │ │ │ └── values.yaml │ │ └── zookeeper │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── config-jmx-exporter.yaml │ │ │ ├── grafana-configmap.yaml │ │ │ ├── job-chroots.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── service-headless.yaml │ │ │ ├── service.yaml │ │ │ ├── servicemonitors.yaml │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── ingress.yaml │ │ ├── nginx.yaml │ │ ├── spark-job-namespace.yaml │ │ └── storageclass.yaml │ └── values.yaml ├── kafka │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── zookeeper │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── metrics-svc.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── secrets.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── statefulset.yaml │ │ │ ├── svc-headless.yaml │ │ │ └── svc.yaml │ │ │ ├── values-production.yaml │ │ │ └── values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── jaas-secret.yaml │ │ ├── jmx-configmap.yaml │ │ ├── jmx-metrics-svc.yaml │ │ ├── kafka-metrics-deployment.yaml │ │ ├── kafka-metrics-svc.yaml │ │ ├── log4j-configmap.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── scripts-configmap.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor-jmx-metrics.yaml │ │ ├── servicemonitor-metrics.yaml │ │ ├── statefulset.yaml │ │ ├── svc-external-access.yaml │ │ ├── svc-headless.yaml │ │ └── svc.yaml │ ├── values-production.yaml │ └── values.yaml ├── karpenter │ └── release-0.1.4 │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── crds │ │ ├── karpenter.k8s.tke_tkemachinenodeclasses.yaml │ │ ├── karpenter.sh_nodeclaims.yaml │ │ └── karpenter.sh_nodepools.yaml │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── aggregate-clusterrole.yaml │ │ ├── clusterrole-core.yaml │ │ ├── clusterrole.yaml │ │ ├── deployment.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ │ └── values.yaml ├── keda-tencentcloud-clb-scaler │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── keda │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cert-manager │ │ │ ├── keda-issuer.yaml │ │ │ ├── keda-tls-certificate.yaml │ │ │ ├── self-ca.yaml │ │ │ └── self-issuer.yaml │ │ ├── crds │ │ │ ├── crd-cloudeventsources.yaml │ │ │ ├── crd-clustercloudeventsources.yaml │ │ │ ├── crd-clustertriggerauthentications.yaml │ │ │ ├── crd-scaledjobs.yaml │ │ │ ├── crd-scaledobjects.yaml │ │ │ └── crd-triggerauthentications.yaml │ │ ├── extensibility │ │ │ └── extra-manifests.yaml │ │ ├── manager │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebindings.yaml │ │ │ ├── deployment.yaml │ │ │ ├── minimal-rbac.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── podmonitor.yaml │ │ │ ├── prometheusrules.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── metrics-server │ │ │ ├── apiservice.yaml │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── podmonitor.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ └── webhooks │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebindings.yaml │ │ │ ├── deployment.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── prometheusrules.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── validatingconfiguration.yaml │ └── values.yaml ├── kibana │ ├── .helmignore │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── ci │ │ ├── authproxy-enabled.yaml │ │ ├── dashboard-values.yaml │ │ ├── extra-configmap-mounts.yaml │ │ ├── ingress-hosts-paths.yaml │ │ ├── ingress-hosts.yaml │ │ ├── initcontainers-all-values.yaml │ │ ├── initcontainers-values.yaml │ │ ├── plugin-install.yaml │ │ ├── pvc.yaml │ │ ├── security-context.yaml │ │ ├── service-values.yaml │ │ └── url_dashboard-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap-dashboardimport.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── tests │ │ │ ├── test-configmap.yaml │ │ │ └── test.yaml │ │ └── volume-claim.yaml │ └── values.yaml ├── kong │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── cassandra │ │ │ ├── .helmignore │ │ │ ├── .values.yaml.swp │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── cassandra-secret.yaml │ │ │ │ ├── headless-svc.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── values-production.yaml │ │ │ └── values.yaml │ │ └── postgresql │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ ├── commonAnnotations.yaml │ │ │ ├── default-values.yaml │ │ │ └── shmvolume-disabled-values.yaml │ │ │ ├── files │ │ │ ├── README.md │ │ │ ├── conf.d │ │ │ │ └── README.md │ │ │ └── docker-entrypoint-initdb.d │ │ │ │ └── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── extended-config-configmap.yaml │ │ │ ├── initialization-configmap.yaml │ │ │ ├── metrics-configmap.yaml │ │ │ ├── metrics-svc.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── podsecuritypolicy.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── secrets.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── statefulset-slaves.yaml │ │ │ ├── statefulset.yaml │ │ │ ├── svc-headless.yaml │ │ │ ├── svc-read.yaml │ │ │ └── svc.yaml │ │ │ ├── values-production.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ ├── ci │ │ ├── values-editing-containers.yaml │ │ ├── values-external-cassandra.yaml │ │ ├── values-external-postgresql.yaml │ │ ├── values-ingress.yaml │ │ └── values-metrics-hpa-pdb.yaml │ ├── crds │ │ └── custom-resource-definitions.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── custom-resource-definitions.yaml │ │ ├── deployment.yaml │ │ ├── external-database-secret.yaml │ │ ├── extra-list.yaml │ │ ├── hpa.yaml │ │ ├── ingress-controller-rbac.yaml │ │ ├── ingress.yaml │ │ ├── kong-prometheus-role.yaml │ │ ├── kong-prometheus-rolebinding.yaml │ │ ├── kong-script-configmap.yaml │ │ ├── metrics-exporter-configmap.yaml │ │ ├── metrics-script-configmap.yaml │ │ ├── metrics-service.yaml │ │ ├── migrate-job.yaml │ │ ├── pdb.yaml │ │ ├── service.yaml │ │ └── servicemonitor.yaml │ ├── values-production.yaml │ └── values.yaml ├── kruise-game │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cert-manager │ │ │ ├── okg-issuer.yaml │ │ │ ├── okg-tls-certificate.yaml │ │ │ ├── self-ca.yaml │ │ │ └── self-issuer.yaml │ │ ├── controller_manager_config.yaml │ │ ├── game.kruise.io_gameservers.yaml │ │ ├── game.kruise.io_gameserversets.yaml │ │ ├── index-offset-scheduler.yaml │ │ ├── manager.yaml │ │ ├── prometheus-monitor.yaml │ │ ├── rbac_role.yaml │ │ ├── scaler-service.yaml │ │ └── webhooks │ │ │ ├── mutatingconfiguration.yaml │ │ │ ├── service.yaml │ │ │ └── validatingconfiguration.yaml │ └── values.yaml ├── kruise-rollout │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── manager.yaml │ │ ├── rbac_role.yaml │ │ ├── rollouts.kruise.io_batchreleases.yaml │ │ ├── rollouts.kruise.io_rollouthistories.yaml │ │ ├── rollouts.kruise.io_rollouts.yaml │ │ ├── rollouts.kruise.io_trafficroutings.yaml │ │ └── webhookconfiguration.yaml │ └── values.yaml ├── kruise │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── default-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── apps.kruise.io_advancedcronjobs.yaml │ │ ├── apps.kruise.io_broadcastjobs.yaml │ │ ├── apps.kruise.io_clonesets.yaml │ │ ├── apps.kruise.io_containerrecreaterequests.yaml │ │ ├── apps.kruise.io_daemonsets.yaml │ │ ├── apps.kruise.io_imagelistpulljobs.yaml │ │ ├── apps.kruise.io_imagepulljobs.yaml │ │ ├── apps.kruise.io_nodeimages.yaml │ │ ├── apps.kruise.io_nodepodprobes.yaml │ │ ├── apps.kruise.io_persistentpodstates.yaml │ │ ├── apps.kruise.io_podprobemarkers.yaml │ │ ├── apps.kruise.io_resourcedistributions.yaml │ │ ├── apps.kruise.io_sidecarsets.yaml │ │ ├── apps.kruise.io_statefulsets.yaml │ │ ├── apps.kruise.io_uniteddeployments.yaml │ │ ├── apps.kruise.io_workloadspreads.yaml │ │ ├── manager.yaml │ │ ├── policy.kruise.io_podunavailablebudgets.yaml │ │ ├── rbac_role.yaml │ │ └── webhookconfiguration.yaml │ └── values.yaml ├── kube-state-metrics │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── ciliumnetworkpolicy.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── crs-configmap.yaml │ │ ├── deployment.yaml │ │ ├── extra-manifests.yaml │ │ ├── kubeconfig-secret.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── podsecuritypolicy.yaml │ │ ├── psp-clusterrole.yaml │ │ ├── psp-clusterrolebinding.yaml │ │ ├── rbac-configmap.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── stsdiscovery-role.yaml │ │ ├── stsdiscovery-rolebinding.yaml │ │ └── verticalpodautoscaler.yaml │ └── values.yaml ├── kubernetes-dashboard │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole-readonly.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secret.yaml │ │ ├── serviceaccount.yaml │ │ └── svc.yaml │ └── values.yaml ├── kubesphere │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── charts │ │ ├── ks-crds │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── crds │ │ │ │ ├── app.k8s.io_applications.yaml │ │ │ │ ├── application.kubesphere.io_applicationreleases.yaml │ │ │ │ ├── application.kubesphere.io_applications.yaml │ │ │ │ ├── application.kubesphere.io_applicationversions.yaml │ │ │ │ ├── application.kubesphere.io_categories.yaml │ │ │ │ ├── application.kubesphere.io_repos.yaml │ │ │ │ ├── cluster.kubesphere.io_clusters.yaml │ │ │ │ ├── cluster.kubesphere.io_labels.yaml │ │ │ │ ├── extensions.kubesphere.io_apiservices.yaml │ │ │ │ ├── extensions.kubesphere.io_extensionentries.yaml │ │ │ │ ├── extensions.kubesphere.io_jsbundles.yaml │ │ │ │ ├── extensions.kubesphere.io_reverseproxies.yaml │ │ │ │ ├── gateway.kubesphere.io_ingressclassscopes.yaml │ │ │ │ ├── iam.kubesphere.io_builtinroles.yaml │ │ │ │ ├── iam.kubesphere.io_categories.yaml │ │ │ │ ├── iam.kubesphere.io_clusterrolebindings.yaml │ │ │ │ ├── iam.kubesphere.io_clusterroles.yaml │ │ │ │ ├── iam.kubesphere.io_globalrolebindings.yaml │ │ │ │ ├── iam.kubesphere.io_globalroles.yaml │ │ │ │ ├── iam.kubesphere.io_groupbindings.yaml │ │ │ │ ├── iam.kubesphere.io_groups.yaml │ │ │ │ ├── iam.kubesphere.io_loginrecords.yaml │ │ │ │ ├── iam.kubesphere.io_rolebindings.yaml │ │ │ │ ├── iam.kubesphere.io_roles.yaml │ │ │ │ ├── iam.kubesphere.io_roletemplates.yaml │ │ │ │ ├── iam.kubesphere.io_users.yaml │ │ │ │ ├── iam.kubesphere.io_workspacerolebindings.yaml │ │ │ │ ├── iam.kubesphere.io_workspaceroles.yaml │ │ │ │ ├── kubesphere.io_categories.yaml │ │ │ │ ├── kubesphere.io_extensions.yaml │ │ │ │ ├── kubesphere.io_extensionversions.yaml │ │ │ │ ├── kubesphere.io_installplans.yaml │ │ │ │ ├── kubesphere.io_repositories.yaml │ │ │ │ ├── kubesphere.io_serviceaccounts.yaml │ │ │ │ ├── quota.kubesphere.io_resourcequotas.yaml │ │ │ │ ├── storage.kubesphere.io_provisionercapabilities.yaml │ │ │ │ ├── storage.kubesphere.io_storageclasscapabilities.yaml │ │ │ │ ├── tenant.kubesphere.io_workspaces.yaml │ │ │ │ └── tenant.kubesphere.io_workspacetemplates.yaml │ │ │ ├── scripts │ │ │ │ ├── install.sh │ │ │ │ └── post-delete.sh │ │ │ ├── templates │ │ │ │ ├── _images.tpl │ │ │ │ ├── post-delete-crd-job.yaml │ │ │ │ └── pre-upgrade-crd-job.yaml │ │ │ └── values.yaml │ │ └── redis-ha │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ └── haproxy-enabled-values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _configs.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── _images.tpl │ │ │ ├── redis-auth-secret.yaml │ │ │ ├── redis-ha-announce-service.yaml │ │ │ ├── redis-ha-configmap.yaml │ │ │ ├── redis-ha-exporter-script-configmap.yaml │ │ │ ├── redis-ha-health-configmap.yaml │ │ │ ├── redis-ha-network-policy.yaml │ │ │ ├── redis-ha-pdb.yaml │ │ │ ├── redis-ha-prometheus-rule.yaml │ │ │ ├── redis-ha-role.yaml │ │ │ ├── redis-ha-rolebinding.yaml │ │ │ ├── redis-ha-secret.yaml │ │ │ ├── redis-ha-service.yaml │ │ │ ├── redis-ha-serviceaccount.yaml │ │ │ ├── redis-ha-servicemonitor.yaml │ │ │ ├── redis-ha-statefulset.yaml │ │ │ ├── redis-haproxy-deployment.yaml │ │ │ ├── redis-haproxy-network-policy.yaml │ │ │ ├── redis-haproxy-pdb.yaml │ │ │ ├── redis-haproxy-role.yaml │ │ │ ├── redis-haproxy-rolebinding.yaml │ │ │ ├── redis-haproxy-service.yaml │ │ │ ├── redis-haproxy-serviceaccount.yaml │ │ │ ├── redis-haproxy-servicemonitor.yaml │ │ │ ├── redis-tls-secret.yaml │ │ │ ├── sentinel-auth-secret.yaml │ │ │ └── tests │ │ │ │ ├── test-redis-ha-configmap.yaml │ │ │ │ └── test-redis-ha-pod.yaml │ │ │ └── values.yaml │ ├── files │ │ └── extensions.customresourcefilters.rego │ ├── scripts │ │ └── post-delete.sh │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── _images.tpl │ │ ├── _tplvalues.tpl │ │ ├── builtinroles.yaml │ │ ├── cert-manager.yaml │ │ ├── clusterroles.yaml │ │ ├── customresourcefilters.yaml │ │ ├── extension-categories.yaml │ │ ├── extension-museum.yaml │ │ ├── globalrolebindings.yaml │ │ ├── globalroles.yaml │ │ ├── ingress.yaml │ │ ├── ks-agent.yaml │ │ ├── ks-apiserver.yaml │ │ ├── ks-console-config.yaml │ │ ├── ks-console.yaml │ │ ├── ks-controller-manager.yaml │ │ ├── kubesphere-config.yaml │ │ ├── oauthclient-config.yaml │ │ ├── post-delete-job.yaml │ │ ├── post-patch-system-ns-job.yaml │ │ ├── redis.yaml │ │ ├── roletemplate-categories.yaml │ │ ├── roletemplates.yaml │ │ ├── serviceaccount.yaml │ │ ├── services.yaml │ │ ├── tls-secrets.yaml │ │ ├── traefik.yaml │ │ ├── user.yaml │ │ ├── webhook.yaml │ │ └── workspace.yaml │ └── values.yaml ├── kubewatch │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── kueue │ ├── .helmignore │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ │ ├── _helpers.tpl │ │ ├── crd │ │ │ ├── kueue.x-k8s.io_admissionchecks.yaml │ │ │ ├── kueue.x-k8s.io_clusterqueues.yaml │ │ │ ├── kueue.x-k8s.io_cohorts.yaml │ │ │ ├── kueue.x-k8s.io_localqueues.yaml │ │ │ ├── kueue.x-k8s.io_multikueueclusters.yaml │ │ │ ├── kueue.x-k8s.io_multikueueconfigs.yaml │ │ │ ├── kueue.x-k8s.io_provisioningrequestconfigs.yaml │ │ │ ├── kueue.x-k8s.io_resourceflavors.yaml │ │ │ ├── kueue.x-k8s.io_topologies.yaml │ │ │ ├── kueue.x-k8s.io_workloadpriorityclasses.yaml │ │ │ └── kueue.x-k8s.io_workloads.yaml │ │ ├── internalcert │ │ │ └── secret.yaml │ │ ├── manager │ │ │ ├── auth_proxy_service.yaml │ │ │ ├── manager-config.yaml │ │ │ ├── manager-pdb.yaml │ │ │ └── manager.yaml │ │ ├── rbac │ │ │ ├── batch_admin_role.yaml │ │ │ ├── batch_user_role.yaml │ │ │ ├── clusterqueue_editor_role.yaml │ │ │ ├── clusterqueue_viewer_role.yaml │ │ │ ├── cohort_editor_role.yaml │ │ │ ├── cohort_viewer_role.yaml │ │ │ ├── jaxjob_editor_role.yaml │ │ │ ├── jaxjob_viewer_role.yaml │ │ │ ├── job_editor_role.yaml │ │ │ ├── job_viewer_role.yaml │ │ │ ├── jobset_editor_role.yaml │ │ │ ├── jobset_viewer_role.yaml │ │ │ ├── leader_election_role.yaml │ │ │ ├── leader_election_role_binding.yaml │ │ │ ├── localqueue_editor_role.yaml │ │ │ ├── localqueue_viewer_role.yaml │ │ │ ├── metrics_auth_role.yaml │ │ │ ├── metrics_auth_role_binding.yaml │ │ │ ├── metrics_reader_role.yaml │ │ │ ├── mpijob_editor_role.yaml │ │ │ ├── mpijob_viewer_role.yaml │ │ │ ├── paddlejob_editor_role.yaml │ │ │ ├── paddlejob_viewer_role.yaml │ │ │ ├── pending_workloads_cq_viewer_role.yaml │ │ │ ├── pending_workloads_lq_viewer_role.yaml │ │ │ ├── pytorchjob_editor_role.yaml │ │ │ ├── pytorchjob_viewer_role.yaml │ │ │ ├── raycluster_editor_role.yaml │ │ │ ├── raycluster_viewer_role.yaml │ │ │ ├── rayjob_editor_role.yaml │ │ │ ├── rayjob_viewer_role.yaml │ │ │ ├── resourceflavor_editor_role.yaml │ │ │ ├── resourceflavor_viewer_role.yaml │ │ │ ├── role.yaml │ │ │ ├── role_binding.yaml │ │ │ ├── service_account.yaml │ │ │ ├── tfjob_editor_role.yaml │ │ │ ├── tfjob_viewer_role.yaml │ │ │ ├── topology_editor_role.yaml │ │ │ ├── topology_viewer_role.yaml │ │ │ ├── trainjob_editor_role.yaml │ │ │ ├── trainjob_viewer_role.yaml │ │ │ ├── workload_editor_role.yaml │ │ │ ├── workload_viewer_role.yaml │ │ │ ├── xgboostjob_editor_role.yaml │ │ │ └── xgboostjob_viewer_role.yaml │ │ ├── visibility │ │ │ ├── apiservice_v1beta1.yaml │ │ │ ├── role_binding.yaml │ │ │ └── service.yaml │ │ └── webhook │ │ │ ├── manifests.yaml │ │ │ └── service.yaml │ ├── tests │ │ └── manager_test.yaml │ └── values.yaml ├── llama-factory-on-tke │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── loki-stack │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── filebeat │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── default │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ └── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ ├── oss │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── security │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── test │ │ │ │ │ └── goss.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── fluent-bit │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service-headless.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ │ ├── grafana │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── dashboards │ │ │ │ └── custom-dashboard.json │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _pod.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── headless-service.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ └── test.yaml │ │ │ └── values.yaml │ │ ├── logstash │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── serviceaccount.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── files-config.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── patterns-config.yaml │ │ │ │ ├── pipeline-config.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ │ ├── loki │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── ingress.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service-headless.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ │ ├── prometheus │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── alertmanager-clusterrole.yaml │ │ │ │ ├── alertmanager-clusterrolebinding.yaml │ │ │ │ ├── alertmanager-configmap.yaml │ │ │ │ ├── alertmanager-deployment.yaml │ │ │ │ ├── alertmanager-ingress.yaml │ │ │ │ ├── alertmanager-networkpolicy.yaml │ │ │ │ ├── alertmanager-podsecuritypolicy.yaml │ │ │ │ ├── alertmanager-pvc.yaml │ │ │ │ ├── alertmanager-service-headless.yaml │ │ │ │ ├── alertmanager-service.yaml │ │ │ │ ├── alertmanager-serviceaccount.yaml │ │ │ │ ├── alertmanager-statefulset.yaml │ │ │ │ ├── kube-state-metrics-clusterrole.yaml │ │ │ │ ├── kube-state-metrics-clusterrolebinding.yaml │ │ │ │ ├── kube-state-metrics-deployment.yaml │ │ │ │ ├── kube-state-metrics-networkpolicy.yaml │ │ │ │ ├── kube-state-metrics-podsecuritypolicy.yaml │ │ │ │ ├── kube-state-metrics-serviceaccount.yaml │ │ │ │ ├── kube-state-metrics-svc.yaml │ │ │ │ ├── node-exporter-daemonset.yaml │ │ │ │ ├── node-exporter-podsecuritypolicy.yaml │ │ │ │ ├── node-exporter-role.yaml │ │ │ │ ├── node-exporter-rolebinding.yaml │ │ │ │ ├── node-exporter-service.yaml │ │ │ │ ├── node-exporter-serviceaccount.yaml │ │ │ │ ├── pushgateway-clusterrole.yaml │ │ │ │ ├── pushgateway-clusterrolebinding.yaml │ │ │ │ ├── pushgateway-deployment.yaml │ │ │ │ ├── pushgateway-ingress.yaml │ │ │ │ ├── pushgateway-networkpolicy.yaml │ │ │ │ ├── pushgateway-podsecuritypolicy.yaml │ │ │ │ ├── pushgateway-pvc.yaml │ │ │ │ ├── pushgateway-service.yaml │ │ │ │ ├── pushgateway-serviceaccount.yaml │ │ │ │ ├── server-clusterrole.yaml │ │ │ │ ├── server-clusterrolebinding.yaml │ │ │ │ ├── server-configmap.yaml │ │ │ │ ├── server-deployment.yaml │ │ │ │ ├── server-ingress.yaml │ │ │ │ ├── server-networkpolicy.yaml │ │ │ │ ├── server-podsecuritypolicy.yaml │ │ │ │ ├── server-pvc.yaml │ │ │ │ ├── server-service-headless.yaml │ │ │ │ ├── server-service.yaml │ │ │ │ ├── server-serviceaccount.yaml │ │ │ │ └── server-statefulset.yaml │ │ │ └── values.yaml │ │ └── promtail │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap.yaml │ │ │ ├── daemonset.yaml │ │ │ ├── podsecuritypolicy.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service-headless.yaml │ │ │ ├── service-syslog.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── datasources.yaml │ │ └── tests │ │ │ ├── loki-test-configmap.yaml │ │ │ └── loki-test-pod.yaml │ └── values.yaml ├── lws │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── certmanager │ │ │ └── certifacate.yaml │ │ ├── crds │ │ │ └── leaderworkerset.x-k8s.io_leaderworkersets.yaml │ │ ├── manager │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ │ ├── prometheus │ │ │ ├── monitor.yaml │ │ │ └── role.yaml │ │ ├── rbac │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ └── serviceaccount.yaml │ │ └── webhook │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ └── webhook.yaml │ └── values.yaml ├── mariadb │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── files │ │ └── docker-entrypoint-initdb.d │ │ │ └── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── initialization-configmap.yaml │ │ ├── master-configmap.yaml │ │ ├── master-pdb.yaml │ │ ├── master-statefulset.yaml │ │ ├── master-svc.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secrets.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── slave-configmap.yaml │ │ ├── slave-pdb.yaml │ │ ├── slave-statefulset.yaml │ │ ├── slave-svc.yaml │ │ ├── test-runner.yaml │ │ └── tests.yaml │ ├── values-production.yaml │ ├── values.schema.json │ └── values.yaml ├── mean │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── bitnami-common │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ └── mongodb │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── files │ │ │ └── docker-entrypoint-initdb.d │ │ │ │ └── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment-standalone.yaml │ │ │ ├── headless-svc-rs.yaml │ │ │ ├── initialization-configmap.yaml │ │ │ ├── poddisruptionbudget-arbiter-rs.yaml │ │ │ ├── poddisruptionbudget-primary-rs.yaml │ │ │ ├── poddisruptionbudget-secondary-rs.yaml │ │ │ ├── prometheus-alerting-rule.yaml │ │ │ ├── prometheus-service-monitor.yaml │ │ │ ├── pvc-standalone.yaml │ │ │ ├── secrets.yaml │ │ │ ├── statefulset-arbiter-rs.yaml │ │ │ ├── statefulset-primary-rs.yaml │ │ │ ├── statefulset-secondary-rs.yaml │ │ │ ├── svc-primary-rs.yaml │ │ │ └── svc-standalone.yaml │ │ │ ├── values-production.yaml │ │ │ └── values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── mongodb-binding.yaml │ │ ├── pvc.yaml │ │ └── svc.yaml │ └── values.yaml ├── memcached │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── values-production.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── secrets.yaml │ │ ├── service.yaml │ │ ├── servicemonitor.yaml │ │ ├── statefulset.yaml │ │ └── svc-metrics.yaml │ ├── values-production.yaml │ └── values.yaml ├── minio │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── values-production.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment-standalone.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pvc-standalone.yaml │ │ ├── secrets.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yml │ │ ├── statefulset.yaml │ │ ├── svc-headless.yaml │ │ └── tls-secrets.yaml │ ├── values-production.yaml │ └── values.yaml ├── mongodb │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _capabilities.tpl │ │ │ ├── _errors.tpl │ │ │ ├── _images.tpl │ │ │ ├── _labels.tpl │ │ │ ├── _names.tpl │ │ │ ├── _secrets.tpl │ │ │ ├── _storage.tpl │ │ │ ├── _tplvalues.tpl │ │ │ ├── _utils.tpl │ │ │ ├── _validations.tpl │ │ │ └── _warnings.tpl │ │ │ └── values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── arbiter │ │ │ ├── configmap.yaml │ │ │ ├── headless-svc.yaml │ │ │ ├── pdb.yaml │ │ │ └── statefulset.yaml │ │ ├── configmap.yaml │ │ ├── initialization-configmap.yaml │ │ ├── metrics-svc.yaml │ │ ├── prometheusrule.yaml │ │ ├── replicaset │ │ │ ├── external-access-svc.yaml │ │ │ ├── headless-svc.yaml │ │ │ ├── pdb.yaml │ │ │ ├── scripts-configmap.yaml │ │ │ └── statefulset.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secrets.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── standalone │ │ │ ├── dep-sts.yaml │ │ │ ├── pvc.yaml │ │ │ └── svc.yaml │ ├── values-dev.yaml │ ├── values.schema.json │ └── values.yaml ├── mpi-operator-on-tke │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── mpijobs.kubeflow.org-mpijob.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── mpi-operator │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── mpijobs.kubeflow.org-mpijob.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── mysql │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configurationFiles-configmap.yaml │ │ ├── deployment.yaml │ │ ├── initializationFiles-configmap.yaml │ │ ├── pvc.yaml │ │ ├── secrets.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── svc.yaml │ │ └── tests │ │ │ ├── test-configmap.yaml │ │ │ └── test.yaml │ └── values.yaml ├── nats │ ├── .env │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── accounts.conf │ ├── deploy.yaml │ ├── deploy2.yaml │ ├── foo.conf │ ├── foo.dhall │ ├── resolver.conf │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── _mem_resolver.yaml │ │ ├── configmap.yaml │ │ ├── nats-box.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ └── statefulset.yaml │ └── values.yaml ├── newmonkey-web │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── newmonkey │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── nginx-ingress │ ├── .helmignore │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── ci │ │ ├── controller-admission-tls-cert-manager-values.yaml │ │ ├── controller-custom-ingressclass-flags.yaml │ │ ├── daemonset-customconfig-values.yaml │ │ ├── daemonset-customnodeport-values.yaml │ │ ├── daemonset-extra-modules.yaml │ │ ├── daemonset-headers-values.yaml │ │ ├── daemonset-internal-lb-values.yaml │ │ ├── daemonset-nodeport-values.yaml │ │ ├── daemonset-podannotations-values.yaml │ │ ├── daemonset-tcp-udp-configMapNamespace-values.yaml │ │ ├── daemonset-tcp-udp-portNamePrefix-values.yaml │ │ ├── daemonset-tcp-udp-values.yaml │ │ ├── daemonset-tcp-values.yaml │ │ ├── deamonset-default-values.yaml │ │ ├── deamonset-metrics-values.yaml │ │ ├── deamonset-psp-values.yaml │ │ ├── deamonset-webhook-and-psp-values.yaml │ │ ├── deamonset-webhook-values.yaml │ │ ├── deployment-autoscaling-behavior-values.yaml │ │ ├── deployment-autoscaling-values.yaml │ │ ├── deployment-customconfig-values.yaml │ │ ├── deployment-customnodeport-values.yaml │ │ ├── deployment-default-values.yaml │ │ ├── deployment-extra-modules-default-container-sec-context.yaml │ │ ├── deployment-extra-modules-specific-container-sec-context.yaml │ │ ├── deployment-extra-modules.yaml │ │ ├── deployment-headers-values.yaml │ │ ├── deployment-internal-lb-values.yaml │ │ ├── deployment-metrics-values.yaml │ │ ├── deployment-nodeport-values.yaml │ │ ├── deployment-opentelemetry-customregistry-values.yaml │ │ ├── deployment-podannotations-values.yaml │ │ ├── deployment-psp-values.yaml │ │ ├── deployment-tcp-udp-configMapNamespace-values.yaml │ │ ├── deployment-tcp-udp-portNamePrefix-values.yaml │ │ ├── deployment-tcp-udp-values.yaml │ │ ├── deployment-tcp-values.yaml │ │ ├── deployment-webhook-and-psp-values.yaml │ │ ├── deployment-webhook-extraEnvs-values.yaml │ │ ├── deployment-webhook-resources-values.yaml │ │ └── deployment-webhook-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── _params.tpl │ │ ├── admission-webhooks │ │ │ ├── cert-manager.yaml │ │ │ ├── job-patch │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── job-createSecret.yaml │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── validating-webhook.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── controller-configmap-addheaders.yaml │ │ ├── controller-configmap-proxyheaders.yaml │ │ ├── controller-configmap-tcp.yaml │ │ ├── controller-configmap-udp.yaml │ │ ├── controller-configmap.yaml │ │ ├── controller-daemonset.yaml │ │ ├── controller-deployment.yaml │ │ ├── controller-hpa.yaml │ │ ├── controller-ingressclass.yaml │ │ ├── controller-keda.yaml │ │ ├── controller-networkpolicy.yaml │ │ ├── controller-poddisruptionbudget.yaml │ │ ├── controller-prometheusrules.yaml │ │ ├── controller-psp.yaml │ │ ├── controller-role.yaml │ │ ├── controller-rolebinding.yaml │ │ ├── controller-secret.yaml │ │ ├── controller-service-internal.yaml │ │ ├── controller-service-metrics.yaml │ │ ├── controller-service-webhook.yaml │ │ ├── controller-service.yaml │ │ ├── controller-serviceaccount.yaml │ │ ├── controller-servicemonitor.yaml │ │ ├── default-backend-deployment.yaml │ │ ├── default-backend-extra-configmaps.yaml │ │ ├── default-backend-hpa.yaml │ │ ├── default-backend-networkpolicy.yaml │ │ ├── default-backend-poddisruptionbudget.yaml │ │ ├── default-backend-psp.yaml │ │ ├── default-backend-role.yaml │ │ ├── default-backend-rolebinding.yaml │ │ ├── default-backend-service.yaml │ │ └── default-backend-serviceaccount.yaml │ └── values.yaml ├── nocalhost │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── mariadb │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ └── common │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── _affinities.tpl │ │ │ │ ├── _capabilities.tpl │ │ │ │ ├── _errors.tpl │ │ │ │ ├── _images.tpl │ │ │ │ ├── _labels.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── _secrets.tpl │ │ │ │ ├── _storage.tpl │ │ │ │ ├── _tplvalues.tpl │ │ │ │ ├── _utils.tpl │ │ │ │ ├── _warnings.tpl │ │ │ │ └── validations │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ └── _validations.tpl │ │ │ │ └── values.yaml │ │ │ ├── ci │ │ │ └── values-production-with-rbac-and-metrics.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── primary │ │ │ │ ├── configmap.yaml │ │ │ │ ├── initialization-configmap.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── svc.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── secondary │ │ │ │ ├── configmap.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── svc.yaml │ │ │ ├── secrets.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ │ ├── values-production.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ ├── sql │ │ └── nocalhost-api.sql │ ├── templates │ │ ├── _helpers.tpl │ │ ├── api-deployment.yaml │ │ ├── api-service.yaml │ │ ├── configmap.yaml │ │ ├── db-init-configmap.yaml │ │ ├── nginx-configmap.yaml │ │ ├── tests │ │ │ └── test-connection.yaml │ │ ├── web-deployment.yaml │ │ └── web-service.yaml │ └── values.yaml ├── node-exporter │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── daemonset.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── node │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── mongodb │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ └── common │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── _capabilities.tpl │ │ │ │ ├── _errors.tpl │ │ │ │ ├── _images.tpl │ │ │ │ ├── _labels.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── _secrets.tpl │ │ │ │ ├── _storage.tpl │ │ │ │ ├── _tplvalues.tpl │ │ │ │ ├── _utils.tpl │ │ │ │ ├── _validations.tpl │ │ │ │ └── _warnings.tpl │ │ │ │ └── values.yaml │ │ │ ├── requirements.lock │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── arbiter │ │ │ │ ├── configmap.yaml │ │ │ │ ├── headless-svc.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── configmap.yaml │ │ │ ├── initialization-configmap.yaml │ │ │ ├── metrics-svc.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── replicaset │ │ │ │ ├── external-access-svc.yaml │ │ │ │ ├── headless-svc.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── scripts-configmap.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── secrets.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── standalone │ │ │ │ ├── dep-sts.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── svc.yaml │ │ │ ├── values-production.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ ├── ci │ │ └── values-with-ingress-and-persistence.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── mongodb-binding.yaml │ │ ├── pvc.yaml │ │ └── svc.yaml │ └── values.yaml ├── olm │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE │ ├── NOTES.txt │ ├── OWNER │ ├── README.md │ ├── crds │ │ ├── catalogsources.crd.yaml │ │ ├── clusterserviceversions.crd.yaml │ │ ├── installplans.crd.yaml │ │ ├── operatorgroups.crd.yaml │ │ ├── operators.crd.yaml │ │ └── subscriptions.crd.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── _packageserver.clusterserviceversion.yaml │ │ ├── _packageserver.deployment-spec.yaml │ │ ├── aggregated.clusterrole.yaml │ │ ├── catalog-operator.deployment.yaml │ │ ├── hooks │ │ │ └── post-delete │ │ │ │ ├── post-delete-hook-serviceaccount.yaml │ │ │ │ └── post-delete-hook.yaml │ │ ├── olm-namespace.yaml │ │ ├── olm-operator.deployment.yaml │ │ ├── olm-operator.serviceaccount.yaml │ │ ├── olm-operatorgroup-default.yaml │ │ └── packageserver.clusterserviceversion.yaml │ └── values.yaml ├── open-webui │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── charts │ │ ├── ollama │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── artifacthub-repo.yml │ │ │ ├── banner.png │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── extra-manifests.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── knative │ │ │ │ │ └── service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ ├── values-test.yaml │ │ │ └── values.yaml │ │ ├── pipelines │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── README.md.gotmpl │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── extra-resources.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── service-account.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── redis │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ └── common │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ ├── _compatibility.tpl │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ ├── _images.tpl │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ ├── _names.tpl │ │ │ │ │ ├── _resources.tpl │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ └── validations │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── headless-svc.yaml │ │ │ │ ├── health-configmap.yaml │ │ │ │ ├── master │ │ │ │ │ ├── application.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── metrics-svc.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── podmonitor.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── replicas │ │ │ │ │ ├── application.yaml │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── scripts-configmap.yaml │ │ │ │ ├── secret-svcbind.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── sentinel │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── node-services.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── ports-configmap.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── statefulset.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── tls-secret.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ └── tika │ │ │ ├── .asf.yaml │ │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── lint-test.yaml │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── extra-resources.yaml │ │ ├── ingress.yaml │ │ ├── managed-cert.yaml │ │ ├── pvc.yaml │ │ ├── service-account.yaml │ │ ├── service.yaml │ │ ├── websocket-redis.yaml │ │ └── workload-manager.yaml │ ├── values-gke-min.yaml │ ├── values-minikube.yaml │ └── values.yaml ├── openldap │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap-customldif.yaml │ │ ├── configmap-env.yaml │ │ ├── deployment.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── tests │ │ │ ├── openldap-test-runner.yaml │ │ │ └── openldap-tests.yaml │ └── values.yaml ├── opentelemetry-operator │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── UPGRADING.md │ ├── ci │ │ ├── cert-manager-disable-nameoverride-values.yaml │ │ ├── cert-manager-disable-values.yaml │ │ ├── nameoverride-values.yaml │ │ ├── secret-name-nameoverride-values.yaml │ │ └── secret-name-values.yaml │ ├── crds │ │ ├── crd-opentelemetrycollector.yaml │ │ └── crd-opentelemetryinstrumentation.yaml │ ├── examples │ │ ├── README.md │ │ └── default │ │ │ ├── rendered │ │ │ ├── admission-webhooks │ │ │ │ └── operator-webhook-with-cert-manager.yaml │ │ │ ├── certmanager.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ ├── test-certmanager-connection.yaml │ │ │ │ └── test-service-connection.yaml │ │ │ └── values.yaml │ ├── kuttl-test.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── admission-webhooks │ │ │ ├── operator-webhook-with-cert-manager.yaml │ │ │ └── operator-webhook.yaml │ │ ├── certmanager.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── instrumentation.yaml │ │ ├── namespace.yaml │ │ ├── pdb.yaml │ │ ├── prometheusrule.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── tests │ │ │ ├── test-certmanager-connection.yaml │ │ │ └── test-service-connection.yaml │ │ └── verticalpodautoscaler.yaml │ ├── values.schema.json │ └── values.yaml ├── postgresql │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _capabilities.tpl │ │ │ ├── _images.tpl │ │ │ ├── _labels.tpl │ │ │ ├── _names.tpl │ │ │ ├── _secrets.tpl │ │ │ ├── _storage.tpl │ │ │ ├── _tplvalues.tpl │ │ │ └── _warnings.tpl │ │ │ └── values.yaml │ ├── ci │ │ ├── commonAnnotations.yaml │ │ ├── default-values.yaml │ │ └── shmvolume-disabled-values.yaml │ ├── files │ │ ├── README.md │ │ ├── conf.d │ │ │ └── README.md │ │ └── docker-entrypoint-initdb.d │ │ │ └── README.md │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── extended-config-configmap.yaml │ │ ├── initialization-configmap.yaml │ │ ├── metrics-configmap.yaml │ │ ├── metrics-svc.yaml │ │ ├── networkpolicy.yaml │ │ ├── podsecuritypolicy.yaml │ │ ├── prometheusrule.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secrets.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── statefulset-slaves.yaml │ │ ├── statefulset.yaml │ │ ├── svc-headless.yaml │ │ ├── svc-read.yaml │ │ └── svc.yaml │ ├── values-production.yaml │ ├── values.schema.json │ └── values.yaml ├── prometheus-operator │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── kube-state-metrics │ │ │ ├── .helmignore │ │ │ ├── .values.yaml.swp │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── values-production.yaml │ │ │ └── values.yaml │ │ └── node-exporter │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── daemonset.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ ├── crds │ │ ├── crd-alertmanager.yaml │ │ ├── crd-podmonitor.yaml │ │ ├── crd-prometheus.yaml │ │ ├── crd-prometheusrules.yaml │ │ ├── crd-servicemonitor.yaml │ │ └── crd-thanosrulers.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── alertmanager │ │ │ ├── alertmanager.yaml │ │ │ ├── ingress.yaml │ │ │ ├── pdb.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── secrets.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── exporters │ │ │ ├── kube-apiserver │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-proxy │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── kubelet │ │ │ │ └── servicemonitor.yaml │ │ ├── prometheus-operator │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── crd-alertmanager.yaml │ │ │ ├── crd-podmonitor.yaml │ │ │ ├── crd-prometheus.yaml │ │ │ ├── crd-prometheusrules.yaml │ │ │ ├── crd-servicemonitor.yaml │ │ │ ├── crd-thanosrulers.yaml │ │ │ ├── deployment.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ └── prometheus │ │ │ ├── additionalPrometheusRules.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── ingress.yaml │ │ │ ├── pdb.yaml │ │ │ ├── prometheus.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── thanos-service.yaml │ ├── values-production.yaml │ └── values.yaml ├── prometheus │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── kube-state-metrics │ │ │ ├── .Chart.yaml.swp │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── podsecuritypolicy.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── stsdiscovery-role.yaml │ │ │ └── stsdiscovery-rolebinding.yaml │ │ │ └── values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── alertmanager-clusterrole.yaml │ │ ├── alertmanager-clusterrolebinding.yaml │ │ ├── alertmanager-configmap.yaml │ │ ├── alertmanager-deployment.yaml │ │ ├── alertmanager-ingress.yaml │ │ ├── alertmanager-networkpolicy.yaml │ │ ├── alertmanager-pdb.yaml │ │ ├── alertmanager-podsecuritypolicy.yaml │ │ ├── alertmanager-pvc.yaml │ │ ├── alertmanager-service-headless.yaml │ │ ├── alertmanager-service.yaml │ │ ├── alertmanager-serviceaccount.yaml │ │ ├── alertmanager-statefulset.yaml │ │ ├── node-exporter-daemonset.yaml │ │ ├── node-exporter-podsecuritypolicy.yaml │ │ ├── node-exporter-role.yaml │ │ ├── node-exporter-rolebinding.yaml │ │ ├── node-exporter-service.yaml │ │ ├── node-exporter-serviceaccount.yaml │ │ ├── pushgateway-clusterrole.yaml │ │ ├── pushgateway-clusterrolebinding.yaml │ │ ├── pushgateway-deployment.yaml │ │ ├── pushgateway-ingress.yaml │ │ ├── pushgateway-networkpolicy.yaml │ │ ├── pushgateway-pdb.yaml │ │ ├── pushgateway-podsecuritypolicy.yaml │ │ ├── pushgateway-pvc.yaml │ │ ├── pushgateway-service.yaml │ │ ├── pushgateway-serviceaccount.yaml │ │ ├── server-clusterrole.yaml │ │ ├── server-clusterrolebinding.yaml │ │ ├── server-configmap.yaml │ │ ├── server-deployment.yaml │ │ ├── server-ingress.yaml │ │ ├── server-networkpolicy.yaml │ │ ├── server-pdb.yaml │ │ ├── server-podsecuritypolicy.yaml │ │ ├── server-pvc.yaml │ │ ├── server-service-headless.yaml │ │ ├── server-service.yaml │ │ ├── server-serviceaccount.yaml │ │ ├── server-statefulset.yaml │ │ └── server-vpa.yaml │ └── values.yaml ├── pulsar │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _autorecovery.tpl │ │ ├── _bookkeeper.tpl │ │ ├── _broker.tpl │ │ ├── _configurationstore.tpl │ │ ├── _helpers.tpl │ │ ├── _toolset.tpl │ │ ├── _zookeeper.tpl │ │ ├── autorecovery-configmap.yaml │ │ ├── autorecovery-podmonitor.yaml │ │ ├── autorecovery-rbac.yaml │ │ ├── autorecovery-service.yaml │ │ ├── autorecovery-statefulset.yaml │ │ ├── bookkeeper-cluster-initialize.yaml │ │ ├── bookkeeper-configmap.yaml │ │ ├── bookkeeper-pdb.yaml │ │ ├── bookkeeper-podmonitor.yaml │ │ ├── bookkeeper-rbac.yaml │ │ ├── bookkeeper-service.yaml │ │ ├── bookkeeper-statefulset.yaml │ │ ├── bookkeeper-storageclass.yaml │ │ ├── broker-cluster-role-binding.yaml │ │ ├── broker-configmap.yaml │ │ ├── broker-pdb.yaml │ │ ├── broker-podmonitor.yaml │ │ ├── broker-rbac.yaml │ │ ├── broker-service-account.yaml │ │ ├── broker-service.yaml │ │ ├── broker-statefulset.yaml │ │ ├── dashboard-deployment.yaml │ │ ├── dashboard-ingress.yaml │ │ ├── dashboard-service.yaml │ │ ├── function-worker-configmap.yaml │ │ ├── grafana-admin-secret.yaml │ │ ├── grafana-configmap.yaml │ │ ├── grafana-deployment.yaml │ │ ├── grafana-ingress.yaml │ │ ├── grafana-service.yaml │ │ ├── keytool.yaml │ │ ├── namespace.yaml │ │ ├── prometheus-configmap.yaml │ │ ├── prometheus-deployment.yaml │ │ ├── prometheus-pvc.yaml │ │ ├── prometheus-rbac.yaml │ │ ├── prometheus-service.yaml │ │ ├── prometheus-storageclass.yaml │ │ ├── proxy-configmap.yaml │ │ ├── proxy-ingress.yaml │ │ ├── proxy-pdb.yaml │ │ ├── proxy-podmonitor.yaml │ │ ├── proxy-rbac.yaml │ │ ├── proxy-service.yaml │ │ ├── proxy-statefulset.yaml │ │ ├── pulsar-cluster-initialize.yaml │ │ ├── pulsar-manager-admin-secret.yaml │ │ ├── pulsar-manager-configmap.yaml │ │ ├── pulsar-manager-deployment.yaml │ │ ├── pulsar-manager-ingress.yaml │ │ ├── pulsar-manager-service.yaml │ │ ├── tls-cert-internal-issuer.yaml │ │ ├── tls-certs-internal.yaml │ │ ├── toolset-configmap.yaml │ │ ├── toolset-rbac.yaml │ │ ├── toolset-service.yaml │ │ ├── toolset-statefulset.yaml │ │ ├── zookeeper-configmap.yaml │ │ ├── zookeeper-pdb.yaml │ │ ├── zookeeper-podmonitor.yaml │ │ ├── zookeeper-rbac.yaml │ │ ├── zookeeper-service.yaml │ │ ├── zookeeper-statefulset.yaml │ │ └── zookeeper-storageclass.yaml │ └── values.yaml ├── pytorch-operator-on-tke │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── pytorchjobs.kubeflow.org-pytorchjob.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── pytorch-operator │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── pytorchjobs.kubeflow.org-pytorchjob.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── pytorch │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _affinities.tpl │ │ │ ├── _capabilities.tpl │ │ │ ├── _errors.tpl │ │ │ ├── _images.tpl │ │ │ ├── _ingress.tpl │ │ │ ├── _labels.tpl │ │ │ ├── _names.tpl │ │ │ ├── _secrets.tpl │ │ │ ├── _storage.tpl │ │ │ ├── _tplvalues.tpl │ │ │ ├── _utils.tpl │ │ │ ├── _warnings.tpl │ │ │ └── validations │ │ │ │ ├── _cassandra.tpl │ │ │ │ ├── _mariadb.tpl │ │ │ │ ├── _mongodb.tpl │ │ │ │ ├── _postgresql.tpl │ │ │ │ ├── _redis.tpl │ │ │ │ └── _validations.tpl │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── extra-list.yaml │ │ ├── headless-svc.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ └── statefulset.yaml │ └── values.yaml ├── rabbitmq │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _capabilities.tpl │ │ │ ├── _images.tpl │ │ │ ├── _labels.tpl │ │ │ ├── _names.tpl │ │ │ ├── _secrets.tpl │ │ │ ├── _storage.tpl │ │ │ ├── _tplvalues.tpl │ │ │ └── _warnings.tpl │ │ │ └── values.yaml │ ├── ci │ │ └── tolerations-values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── certs.yaml │ │ ├── configuration.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── prometheusrule.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secrets.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── statefulset.yaml │ │ ├── svc-headless.yaml │ │ ├── svc.yaml │ │ └── tls-secrets.yaml │ ├── values-production.yaml │ ├── values.schema.json │ └── values.yaml ├── redis │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ ├── extra-flags-values.yaml │ │ └── production-sentinel-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── headless-svc.yaml │ │ ├── health-configmap.yaml │ │ ├── metrics-prometheus.yaml │ │ ├── metrics-svc.yaml │ │ ├── networkpolicy.yaml │ │ ├── prometheusrule.yaml │ │ ├── psp.yaml │ │ ├── redis-master-statefulset.yaml │ │ ├── redis-master-svc.yaml │ │ ├── redis-role.yaml │ │ ├── redis-rolebinding.yaml │ │ ├── redis-serviceaccount.yaml │ │ ├── redis-slave-statefulset.yaml │ │ ├── redis-slave-svc.yaml │ │ ├── redis-with-sentinel-svc.yaml │ │ └── secret.yaml │ ├── values-production.yaml │ ├── values.schema.json │ └── values.yaml ├── seldon-core-operator-on-tke │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── certificate_seldon-serving-cert.yaml │ │ ├── clusterrole_seldon-manager-role.yaml │ │ ├── clusterrole_seldon-manager-sas-role.yaml │ │ ├── clusterrole_seldon-spartakus-volunteer.yaml │ │ ├── clusterrole_seldon-webhook-role.yaml │ │ ├── clusterrolebinding_seldon-manager-rolebinding.yaml │ │ ├── clusterrolebinding_seldon-manager-sas-rolebinding.yaml │ │ ├── clusterrolebinding_seldon-spartakus-volunteer.yaml │ │ ├── clusterrolebinding_seldon-webhook-rolebinding.yaml │ │ ├── configmap_seldon-config.yaml │ │ ├── configmap_seldon-spartakus-config.yaml │ │ ├── customresourcedefinition_seldondeployments.machinelearning.seldon.io.yaml │ │ ├── customresourcedefinition_v1_seldondeployments.machinelearning.seldon.io.yaml │ │ ├── deployment_seldon-controller-manager.yaml │ │ ├── deployment_seldon-spartakus-volunteer.yaml │ │ ├── issuer_seldon-selfsigned-issuer.yaml │ │ ├── namespace.yaml │ │ ├── role_seldon-leader-election-role.yaml │ │ ├── role_seldon1-manager-role.yaml │ │ ├── role_seldon1-manager-sas-role.yaml │ │ ├── rolebinding_seldon-leader-election-rolebinding.yaml │ │ ├── rolebinding_seldon1-manager-rolebinding.yaml │ │ ├── rolebinding_seldon1-manager-sas-rolebinding.yaml │ │ ├── service_seldon-webhook-service.yaml │ │ ├── serviceaccount_seldon-manager.yaml │ │ ├── serviceaccount_seldon-spartakus-volunteer.yaml │ │ └── webhook.yaml │ └── values.yaml ├── seldon-core-operator │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── certificate_seldon-serving-cert.yaml │ │ ├── clusterrole_seldon-manager-role.yaml │ │ ├── clusterrole_seldon-manager-sas-role.yaml │ │ ├── clusterrole_seldon-spartakus-volunteer.yaml │ │ ├── clusterrole_seldon-webhook-role.yaml │ │ ├── clusterrolebinding_seldon-manager-rolebinding.yaml │ │ ├── clusterrolebinding_seldon-manager-sas-rolebinding.yaml │ │ ├── clusterrolebinding_seldon-spartakus-volunteer.yaml │ │ ├── clusterrolebinding_seldon-webhook-rolebinding.yaml │ │ ├── configmap_seldon-config.yaml │ │ ├── configmap_seldon-spartakus-config.yaml │ │ ├── customresourcedefinition_seldondeployments.machinelearning.seldon.io.yaml │ │ ├── customresourcedefinition_v1_seldondeployments.machinelearning.seldon.io.yaml │ │ ├── deployment_seldon-controller-manager.yaml │ │ ├── deployment_seldon-spartakus-volunteer.yaml │ │ ├── issuer_seldon-selfsigned-issuer.yaml │ │ ├── namespace.yaml │ │ ├── role_seldon-leader-election-role.yaml │ │ ├── role_seldon1-manager-role.yaml │ │ ├── role_seldon1-manager-sas-role.yaml │ │ ├── rolebinding_seldon-leader-election-rolebinding.yaml │ │ ├── rolebinding_seldon1-manager-rolebinding.yaml │ │ ├── rolebinding_seldon1-manager-sas-rolebinding.yaml │ │ ├── service_seldon-webhook-service.yaml │ │ ├── serviceaccount_seldon-manager.yaml │ │ ├── serviceaccount_seldon-spartakus-volunteer.yaml │ │ └── webhook.yaml │ └── values.yaml ├── spark-on-tke │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── crds │ │ ├── sparkoperator.k8s.io_scheduledsparkapplications.yaml │ │ └── sparkoperator.k8s.io_sparkapplications.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── prometheus-podmonitor.yaml │ │ ├── rbac.yaml │ │ ├── serviceaccount.yaml │ │ ├── spark-rbac.yaml │ │ ├── spark-serviceaccount.yaml │ │ ├── webhook-cleanup-job.yaml │ │ ├── webhook-init-job.yaml │ │ └── webhook-service.yaml │ └── values.yaml ├── spark-operator │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── crds │ │ ├── sparkoperator.k8s.io_scheduledsparkapplications.yaml │ │ └── sparkoperator.k8s.io_sparkapplications.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── prometheus-podmonitor.yaml │ │ ├── rbac.yaml │ │ ├── serviceaccount.yaml │ │ ├── spark-rbac.yaml │ │ ├── spark-serviceaccount.yaml │ │ ├── webhook-cleanup-job.yaml │ │ ├── webhook-init-job.yaml │ │ └── webhook-service.yaml │ └── values.yaml ├── tapm-operator │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ ├── cert-manager.yaml │ │ ├── javaagents.operator.skywalking.apache.org.yaml │ │ └── swagents.operator.skywalking.apache.org.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── certificate.yaml │ │ ├── certmanager.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── issuer.yaml │ │ ├── mutationwebhookconfigration.yaml │ │ ├── namespace.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccout.yaml │ │ └── validatingwebhookconfigration.yaml │ └── values.yaml ├── telegraf │ ├── .helmignore │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── tencent-infrastructure-automation-for-crossplane │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── extra-objects.yaml │ │ ├── rbac-manager-allowed-provider-permissions.yaml │ │ ├── rbac-manager-clusterrole.yaml │ │ ├── rbac-manager-clusterrolebinding.yaml │ │ ├── rbac-manager-deployment.yaml │ │ ├── rbac-manager-managed-clusterroles.yaml │ │ ├── rbac-manager-serviceaccount.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── tf-operator-on-tke │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── tfjobs.kubeflow.org-tfjob.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── tf-operator │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── tfjobs.kubeflow.org-tfjob.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── thanos │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── minio │ │ │ ├── .helmignore │ │ │ ├── .values.yaml.swp │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ └── values-production.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment-standalone.yaml │ │ │ ├── ingress.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pvc-standalone.yaml │ │ │ ├── secrets.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yml │ │ │ ├── statefulset.yaml │ │ │ ├── svc-headless.yaml │ │ │ └── tls-secrets.yaml │ │ │ ├── values-production.yaml │ │ │ └── values.yaml │ ├── ci │ │ ├── values-with-bucketweb-compactor-storegateway-and-minio.yaml │ │ └── values-with-ingress-and-metrics.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── bucketweb │ │ │ ├── deployment.yaml │ │ │ ├── pdb.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── compactor │ │ │ ├── deployment.yaml │ │ │ ├── pvc.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── ingress.yaml │ │ ├── objstore-secret.yaml │ │ ├── querier │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── pdb.yaml │ │ │ ├── sd-configmap.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── ruler │ │ │ ├── configmap.yaml │ │ │ ├── pdb.yaml │ │ │ ├── service-headless.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ └── storegateway │ │ │ ├── pdb.yaml │ │ │ ├── service-headless.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ ├── values-production.yaml │ └── values.yaml ├── tke-autoscaling-placeholder │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── priority.yaml │ └── values.yaml ├── tke-dify │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── postgresql │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ └── common │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ ├── _images.tpl │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ ├── _names.tpl │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ └── validations │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── backup │ │ │ │ │ ├── cronjob.yaml │ │ │ │ │ └── pvc.yaml │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── networkpolicy-egress.yaml │ │ │ │ ├── primary │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── extended-configmap.yaml │ │ │ │ │ ├── initialization-configmap.yaml │ │ │ │ │ ├── metrics-configmap.yaml │ │ │ │ │ ├── metrics-svc.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ ├── svc-headless.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── read │ │ │ │ │ ├── extended-configmap.yaml │ │ │ │ │ ├── metrics-configmap.yaml │ │ │ │ │ ├── metrics-svc.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ ├── svc-headless.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tls-secrets.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ ├── redis │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ └── common │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ ├── _compatibility.tpl │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ ├── _images.tpl │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ ├── _names.tpl │ │ │ │ │ ├── _resources.tpl │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ └── validations │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── headless-svc.yaml │ │ │ │ ├── health-configmap.yaml │ │ │ │ ├── master │ │ │ │ │ ├── application.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── metrics-svc.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── podmonitor.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── replicas │ │ │ │ │ ├── application.yaml │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── scripts-configmap.yaml │ │ │ │ ├── secret-svcbind.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── sentinel │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── node-services.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── ports-configmap.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── statefulset.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── tls-secret.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ └── weaviate │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── azureSecret.yaml │ │ │ ├── contextionaryDeployment.yaml │ │ │ ├── contextionaryService.yaml │ │ │ ├── gcsSecret.yaml │ │ │ ├── img2vecNeuralDeployment.yaml │ │ │ ├── img2vecNeuralService.yaml │ │ │ ├── multi2vecClipDeployment.yaml │ │ │ ├── multi2vecClipService.yaml │ │ │ ├── nerTransformersDeployment.yaml │ │ │ ├── nerTransformersService.yaml │ │ │ ├── qnaTransformersDeployment.yaml │ │ │ ├── qnaTransformersService.yaml │ │ │ ├── s3Secret.yaml │ │ │ ├── sumTransformersDeployment.yaml │ │ │ ├── sumTransformersService.yaml │ │ │ ├── textSpellcheckDeployment.yaml │ │ │ ├── textSpellcheckService.yaml │ │ │ ├── transformersInferenceDeployment.yaml │ │ │ ├── transformersInferenceService.yaml │ │ │ ├── weaviateConfigMap.yaml │ │ │ ├── weaviateHeadlessService.yaml │ │ │ ├── weaviateSecretCohere.yaml │ │ │ ├── weaviateSecretHuggingFace.yaml │ │ │ ├── weaviateSecretOpenAI.yaml │ │ │ ├── weaviateService.yaml │ │ │ └── weaviateStatefulset.yaml │ │ │ └── values.yaml │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── api-config.yaml │ │ ├── api-deployment.yaml │ │ ├── api-secret.yaml │ │ ├── api-service-account.yaml │ │ ├── api-svc.yaml │ │ ├── config.tpl │ │ ├── credentials.tpl │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── plugin-daemon-config.yaml │ │ ├── plugin-daemon-deployment.yaml │ │ ├── plugin-daemon-secret.yaml │ │ ├── plugin-daemon-service-account.yaml │ │ ├── plugin-daemon-svc.yaml │ │ ├── proxy-configmap.yaml │ │ ├── proxy-deployment.yaml │ │ ├── proxy-service-account.yaml │ │ ├── pvc.yaml │ │ ├── sandbox-config.yaml │ │ ├── sandbox-deployment.yaml │ │ ├── sandbox-secret.yaml │ │ ├── sandbox-service-account.yaml │ │ ├── sandbox-svc.yaml │ │ ├── service.yaml │ │ ├── ssrf-proxy-configmap.yaml │ │ ├── ssrf-proxy-deployment.yaml │ │ ├── ssrf-proxy-service-account.yaml │ │ ├── ssrf-proxy-svc.yaml │ │ ├── tests │ │ │ └── test-connection.yaml │ │ ├── validations │ │ │ └── _tplvalues.tpl │ │ ├── web-config.yaml │ │ ├── web-deployment.yaml │ │ ├── web-service-account.yaml │ │ ├── web-svc.yaml │ │ ├── worker-config.yaml │ │ ├── worker-deployment.yaml │ │ ├── worker-secret.yaml │ │ └── worker-service-account.yaml │ └── values.yaml ├── tke-event-collector │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── deployment.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── tke-extend-network-controller │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cert.yaml │ │ ├── deployment.yaml │ │ ├── issuer.yaml │ │ ├── networking.cloud.tencent.com_clbnodebindings.yaml │ │ ├── networking.cloud.tencent.com_clbpodbindings.yaml │ │ ├── networking.cloud.tencent.com_clbportpools.yaml │ │ ├── networking.cloud.tencent.com_dedicatedclblisteners.yaml │ │ ├── networking.cloud.tencent.com_dedicatedclbservices.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secret-env.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── webhook.yaml │ └── values.yaml ├── tke-horizontal-pod-cronscaler │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.yaml │ │ ├── deployment.yaml │ │ ├── hpc_crd.yaml │ │ ├── hpc_leader_election_role.yaml │ │ ├── hpc_leader_election_role_binding.yaml │ │ ├── hpc_manager_clusterrole.yaml │ │ ├── hpc_manager_clusterrole_binding.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── tke-knative-serving │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── serving-crds.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cert-manager │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── role.yaml │ │ │ ├── service.yaml │ │ │ ├── validating-webhook-configuration.yaml │ │ │ └── webhook │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ ├── core │ │ │ ├── activator │ │ │ │ ├── activator-poddisruptionbudget.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ └── service.yaml │ │ │ ├── autoscaler │ │ │ │ ├── autoscaler-poddisruptionbudget.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── configmaps.yaml │ │ │ ├── controller │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── controller-poddisruptionbudget.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ ├── image.yaml │ │ │ └── webhook │ │ │ │ ├── deployment.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── validating-webhook-configuration.yaml │ │ │ │ └── webhook-poddisruptionbudget.yaml │ │ └── istio │ │ │ └── istio-controller.yml │ └── values.yaml ├── tke-olm │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE │ ├── NOTES.txt │ ├── OWNER │ ├── README.md │ ├── crds │ │ ├── catalogsources.crd.yaml │ │ ├── clusterserviceversions.crd.yaml │ │ ├── installplans.crd.yaml │ │ ├── operatorgroups.crd.yaml │ │ ├── operators.crd.yaml │ │ └── subscriptions.crd.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── _packageserver.clusterserviceversion.yaml │ │ ├── _packageserver.deployment-spec.yaml │ │ ├── aggregated.clusterrole.yaml │ │ ├── catalog-operator.deployment.yaml │ │ ├── hooks │ │ │ └── post-delete │ │ │ │ ├── post-delete-hook-serviceaccount.yaml │ │ │ │ └── post-delete-hook.yaml │ │ ├── olm-namespace.yaml │ │ ├── olm-operator.deployment.yaml │ │ ├── olm-operator.serviceaccount.yaml │ │ ├── olm-operatorgroup-default.yaml │ │ └── packageserver.clusterserviceversion.yaml │ └── values.yaml ├── tke-resilience │ ├── .helmignore │ ├── release-v0.5.0 │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── eklet-deployment.yaml │ │ │ ├── eklet-rbac.yaml │ │ │ ├── eklet-service.yaml │ │ │ ├── eks-admission-configmap.yaml │ │ │ ├── eks-admission-deployment.yaml │ │ │ ├── eks-admission-rbac.yaml │ │ │ ├── node.yaml │ │ │ ├── scheduler-deployment.yaml │ │ │ └── scheduler-rbac.yaml │ │ └── values.yaml │ └── release-v1.0.0 │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── eklet-deployment.yaml │ │ ├── eklet-rbac.yaml │ │ ├── eklet-secret.yaml │ │ ├── eklet-service.yaml │ │ ├── eks-admission-configmap.yaml │ │ ├── eks-admission-deployment.yaml │ │ ├── eks-admission-rbac.yaml │ │ ├── node.yaml │ │ ├── scheduler-deployment.yaml │ │ └── scheduler-rbac.yaml │ │ └── values.yaml ├── tke-sgx-plugin │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── intel-sgx-plugin.yaml │ │ ├── sgx-node-init.yaml │ │ ├── sgxplugin-cluster-role-binding.yaml │ │ ├── sgxplugin-cluster-role.yaml │ │ └── sgxplugin-service-account.yaml │ └── values.yaml ├── tke-spot-agent │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ └── tke-spot-agent.yaml │ └── values.yaml ├── tlog-agent │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── daemonset.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── tomcat │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── values-with-ingress-and-initcontainers.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── secrets.yaml │ │ └── svc.yaml │ └── values.yaml ├── traefik │ ├── .helmignore │ ├── .schema.yaml │ ├── Changelog.md │ ├── Chart.yaml │ ├── EXAMPLES.md │ ├── Guidelines.md │ ├── LICENSE │ ├── README.md │ ├── VALUES.md │ ├── crds │ │ ├── gateway-standard-install.yaml │ │ ├── hub.traefik.io_accesscontrolpolicies.yaml │ │ ├── hub.traefik.io_aiservices.yaml │ │ ├── hub.traefik.io_apiaccesses.yaml │ │ ├── hub.traefik.io_apibundles.yaml │ │ ├── hub.traefik.io_apicatalogitems.yaml │ │ ├── hub.traefik.io_apiplans.yaml │ │ ├── hub.traefik.io_apiportals.yaml │ │ ├── hub.traefik.io_apiratelimits.yaml │ │ ├── hub.traefik.io_apis.yaml │ │ ├── hub.traefik.io_apiversions.yaml │ │ ├── hub.traefik.io_managedsubscriptions.yaml │ │ ├── traefik.io_ingressroutes.yaml │ │ ├── traefik.io_ingressroutetcps.yaml │ │ ├── traefik.io_ingressrouteudps.yaml │ │ ├── traefik.io_middlewares.yaml │ │ ├── traefik.io_middlewaretcps.yaml │ │ ├── traefik.io_serverstransports.yaml │ │ ├── traefik.io_serverstransporttcps.yaml │ │ ├── traefik.io_tlsoptions.yaml │ │ ├── traefik.io_tlsstores.yaml │ │ └── traefik.io_traefikservices.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── _podtemplate.tpl │ │ ├── _service-metrics.tpl │ │ ├── _service.tpl │ │ ├── daemonset.yaml │ │ ├── deployment.yaml │ │ ├── extra-objects.yaml │ │ ├── gateway.yaml │ │ ├── gatewayclass.yaml │ │ ├── hpa.yaml │ │ ├── hub-admission-controller.yaml │ │ ├── hub-apiportal.yaml │ │ ├── ingressclass.yaml │ │ ├── ingressroute.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── prometheusrules.yaml │ │ ├── provider-file-cm.yaml │ │ ├── pvc.yaml │ │ ├── rbac │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── podsecuritypolicy.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ └── serviceaccount.yaml │ │ ├── requirements.yaml │ │ ├── service-metrics.yaml │ │ ├── service.yaml │ │ ├── servicemonitor.yaml │ │ ├── tlsoption.yaml │ │ └── tlsstore.yaml │ ├── values.schema.json │ └── values.yaml ├── verl-on-tke │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── wordpress │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── mariadb │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── files │ │ │ └── docker-entrypoint-initdb.d │ │ │ │ └── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── initialization-configmap.yaml │ │ │ ├── master-configmap.yaml │ │ │ ├── master-pdb.yaml │ │ │ ├── master-statefulset.yaml │ │ │ ├── master-svc.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── secrets.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── slave-configmap.yaml │ │ │ ├── slave-pdb.yaml │ │ │ ├── slave-statefulset.yaml │ │ │ ├── slave-svc.yaml │ │ │ ├── test-runner.yaml │ │ │ └── tests.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── externaldb-secrets.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── secrets.yaml │ │ ├── servicemonitor.yaml │ │ ├── svc.yaml │ │ ├── tests │ │ │ └── test-mariadb-connection.yaml │ │ └── tls-secrets.yaml │ ├── values.schema.json │ └── values.yaml └── zookeeper │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── metrics-svc.yaml │ ├── networkpolicy.yaml │ ├── poddisruptionbudget.yaml │ ├── secrets.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ ├── statefulset.yaml │ ├── svc-headless.yaml │ └── svc.yaml │ ├── values-production.yaml │ └── values.yaml ├── repo └── placeholder └── stable └── placeholder /.github/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/README.md -------------------------------------------------------------------------------- /community/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/bigdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/bigdl.png -------------------------------------------------------------------------------- /icons/colocation-on-tke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/colocation-on-tke.png -------------------------------------------------------------------------------- /icons/elastic-jupyter-operator-on-tke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/elastic-jupyter-operator-on-tke.svg -------------------------------------------------------------------------------- /icons/flink-on-tke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/flink-on-tke.png -------------------------------------------------------------------------------- /icons/fluid-on-tke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/fluid-on-tke.jpg -------------------------------------------------------------------------------- /icons/jmeter-suite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/jmeter-suite.png -------------------------------------------------------------------------------- /icons/k8s-big-data-suite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/k8s-big-data-suite.jpg -------------------------------------------------------------------------------- /icons/k8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/k8s.png -------------------------------------------------------------------------------- /icons/logo-olm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/logo-olm.svg -------------------------------------------------------------------------------- /icons/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/monkey.png -------------------------------------------------------------------------------- /icons/mpi-operator-on-tke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/mpi-operator-on-tke.png -------------------------------------------------------------------------------- /icons/nocalhost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/nocalhost.png -------------------------------------------------------------------------------- /icons/pytorch-operator-on-tke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/pytorch-operator-on-tke.png -------------------------------------------------------------------------------- /icons/seldon-core-on-tke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/seldon-core-on-tke.jpg -------------------------------------------------------------------------------- /icons/spark-on-tke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/spark-on-tke.png -------------------------------------------------------------------------------- /icons/tf-operator-on-tke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/tf-operator-on-tke.png -------------------------------------------------------------------------------- /icons/tke-autoscaling-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/tke-autoscaling-placeholder.png -------------------------------------------------------------------------------- /icons/tke-resilience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/tke-resilience.png -------------------------------------------------------------------------------- /icons/tke-sgx-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/tke-sgx-plugin.png -------------------------------------------------------------------------------- /icons/tke-spot-agent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/icons/tke-spot-agent.jpg -------------------------------------------------------------------------------- /incubator/aerospike/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/aerospike/.helmignore -------------------------------------------------------------------------------- /incubator/aerospike/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/aerospike/CHANGELOG.md -------------------------------------------------------------------------------- /incubator/aerospike/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/aerospike/Chart.yaml -------------------------------------------------------------------------------- /incubator/aerospike/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/aerospike/README.md -------------------------------------------------------------------------------- /incubator/aerospike/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/aerospike/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/aerospike/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/aerospike/values.yaml -------------------------------------------------------------------------------- /incubator/agones/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/.helmignore -------------------------------------------------------------------------------- /incubator/agones/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/Chart.yaml -------------------------------------------------------------------------------- /incubator/agones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/README.md -------------------------------------------------------------------------------- /incubator/agones/certs/cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/certs/cert.sh -------------------------------------------------------------------------------- /incubator/agones/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/certs/server.crt -------------------------------------------------------------------------------- /incubator/agones/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/certs/server.key -------------------------------------------------------------------------------- /incubator/agones/defaultfeaturegates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/defaultfeaturegates.yaml -------------------------------------------------------------------------------- /incubator/agones/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/agones/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/agones/templates/hooks/sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/templates/hooks/sa.yaml -------------------------------------------------------------------------------- /incubator/agones/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/templates/pdb.yaml -------------------------------------------------------------------------------- /incubator/agones/templates/ping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/templates/ping.yaml -------------------------------------------------------------------------------- /incubator/agones/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/templates/service.yaml -------------------------------------------------------------------------------- /incubator/agones/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/values.schema.json -------------------------------------------------------------------------------- /incubator/agones/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/agones/values.yaml -------------------------------------------------------------------------------- /incubator/airflow/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /incubator/airflow/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/Chart.yaml -------------------------------------------------------------------------------- /incubator/airflow/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/OWNERS -------------------------------------------------------------------------------- /incubator/airflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/README.md -------------------------------------------------------------------------------- /incubator/airflow/charts/postgresql/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | OWNERS -------------------------------------------------------------------------------- /incubator/airflow/charts/postgresql/ci/shmvolume-disabled-values.yaml: -------------------------------------------------------------------------------- 1 | shmVolume: 2 | enabled: false 3 | -------------------------------------------------------------------------------- /incubator/airflow/charts/redis/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/charts/redis/Chart.yaml -------------------------------------------------------------------------------- /incubator/airflow/charts/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/charts/redis/README.md -------------------------------------------------------------------------------- /incubator/airflow/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/requirements.lock -------------------------------------------------------------------------------- /incubator/airflow/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/requirements.yaml -------------------------------------------------------------------------------- /incubator/airflow/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/airflow/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/airflow/templates/pvc-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/templates/pvc-logs.yaml -------------------------------------------------------------------------------- /incubator/airflow/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/airflow/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/templates/role.yaml -------------------------------------------------------------------------------- /incubator/airflow/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/airflow/values.yaml -------------------------------------------------------------------------------- /incubator/apache/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/apache/.helmignore -------------------------------------------------------------------------------- /incubator/apache/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/apache/Chart.yaml -------------------------------------------------------------------------------- /incubator/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/apache/README.md -------------------------------------------------------------------------------- /incubator/apache/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /incubator/apache/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/apache/files/README.md -------------------------------------------------------------------------------- /incubator/apache/files/vhosts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/apache/files/vhosts/README.md -------------------------------------------------------------------------------- /incubator/apache/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/apache/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/apache/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/apache/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/apache/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/apache/templates/configmap.yaml -------------------------------------------------------------------------------- /incubator/apache/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/apache/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/apache/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/apache/templates/svc.yaml -------------------------------------------------------------------------------- /incubator/apache/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/apache/values.schema.json -------------------------------------------------------------------------------- /incubator/apache/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/apache/values.yaml -------------------------------------------------------------------------------- /incubator/argo-cd/.helmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | output 3 | ci/ 4 | *.gotmpl 5 | -------------------------------------------------------------------------------- /incubator/argo-cd/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-cd/Chart.lock -------------------------------------------------------------------------------- /incubator/argo-cd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-cd/Chart.yaml -------------------------------------------------------------------------------- /incubator/argo-cd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-cd/README.md -------------------------------------------------------------------------------- /incubator/argo-cd/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-cd/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/argo-cd/templates/_common.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-cd/templates/_common.tpl -------------------------------------------------------------------------------- /incubator/argo-cd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-cd/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/argo-cd/templates/_versions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-cd/templates/_versions.tpl -------------------------------------------------------------------------------- /incubator/argo-cd/templates/dex/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-cd/templates/dex/pdb.yaml -------------------------------------------------------------------------------- /incubator/argo-cd/templates/dex/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-cd/templates/dex/role.yaml -------------------------------------------------------------------------------- /incubator/argo-cd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-cd/values.yaml -------------------------------------------------------------------------------- /incubator/argo-events/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-events/.helmignore -------------------------------------------------------------------------------- /incubator/argo-events/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-events/Chart.yaml -------------------------------------------------------------------------------- /incubator/argo-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-events/README.md -------------------------------------------------------------------------------- /incubator/argo-events/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-events/values.yaml -------------------------------------------------------------------------------- /incubator/argo-rollouts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-rollouts/.helmignore -------------------------------------------------------------------------------- /incubator/argo-rollouts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-rollouts/Chart.yaml -------------------------------------------------------------------------------- /incubator/argo-rollouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-rollouts/README.md -------------------------------------------------------------------------------- /incubator/argo-rollouts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-rollouts/values.yaml -------------------------------------------------------------------------------- /incubator/argo-workflows/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-workflows/.helmignore -------------------------------------------------------------------------------- /incubator/argo-workflows/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-workflows/Chart.yaml -------------------------------------------------------------------------------- /incubator/argo-workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-workflows/README.md -------------------------------------------------------------------------------- /incubator/argo-workflows/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo-workflows/values.yaml -------------------------------------------------------------------------------- /incubator/argo/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/.helmignore -------------------------------------------------------------------------------- /incubator/argo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/Chart.yaml -------------------------------------------------------------------------------- /incubator/argo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/README.md -------------------------------------------------------------------------------- /incubator/argo/charts/minio/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/charts/minio/.helmignore -------------------------------------------------------------------------------- /incubator/argo/charts/minio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/charts/minio/Chart.yaml -------------------------------------------------------------------------------- /incubator/argo/charts/minio/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/charts/minio/OWNERS -------------------------------------------------------------------------------- /incubator/argo/charts/minio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/charts/minio/README.md -------------------------------------------------------------------------------- /incubator/argo/charts/minio/ci/distributed-values.yaml: -------------------------------------------------------------------------------- 1 | mode: distributed 2 | -------------------------------------------------------------------------------- /incubator/argo/charts/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/charts/minio/values.yaml -------------------------------------------------------------------------------- /incubator/argo/crds/workflow-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/crds/workflow-crd.yaml -------------------------------------------------------------------------------- /incubator/argo/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/requirements.lock -------------------------------------------------------------------------------- /incubator/argo/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/requirements.yaml -------------------------------------------------------------------------------- /incubator/argo/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/argo/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/argo/templates/server-crb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/templates/server-crb.yaml -------------------------------------------------------------------------------- /incubator/argo/templates/server-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/templates/server-sa.yaml -------------------------------------------------------------------------------- /incubator/argo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/argo/values.yaml -------------------------------------------------------------------------------- /incubator/bigdl-trusted-fl/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/bigdl-trusted-fl/Chart.yaml -------------------------------------------------------------------------------- /incubator/bigdl-trusted-fl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/bigdl-trusted-fl/README.md -------------------------------------------------------------------------------- /incubator/bigdl-trusted-fl/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/bigdl-trusted-fl/values.yaml -------------------------------------------------------------------------------- /incubator/cassandra/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/cassandra/.helmignore -------------------------------------------------------------------------------- /incubator/cassandra/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/cassandra/Chart.yaml -------------------------------------------------------------------------------- /incubator/cassandra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/cassandra/README.md -------------------------------------------------------------------------------- /incubator/cassandra/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/cassandra/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/cassandra/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/cassandra/templates/pdb.yaml -------------------------------------------------------------------------------- /incubator/cassandra/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/cassandra/values.yaml -------------------------------------------------------------------------------- /incubator/cert-manager-webhook-dnspod/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /incubator/cert-manager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/cert-manager/Chart.yaml -------------------------------------------------------------------------------- /incubator/cert-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/cert-manager/README.md -------------------------------------------------------------------------------- /incubator/cert-manager/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/cert-manager/templates/psp.yaml -------------------------------------------------------------------------------- /incubator/cert-manager/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/cert-manager/values.schema.json -------------------------------------------------------------------------------- /incubator/cert-manager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/cert-manager/values.yaml -------------------------------------------------------------------------------- /incubator/colocation-on-tke/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/colocation-on-tke/Chart.yaml -------------------------------------------------------------------------------- /incubator/colocation-on-tke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/colocation-on-tke/README.md -------------------------------------------------------------------------------- /incubator/colocation-on-tke/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/colocation-on-tke/values.yaml -------------------------------------------------------------------------------- /incubator/colocation/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/colocation/Chart.yaml -------------------------------------------------------------------------------- /incubator/colocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/colocation/README.md -------------------------------------------------------------------------------- /incubator/colocation/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/colocation/values.yaml -------------------------------------------------------------------------------- /incubator/consul/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/consul/Chart.yaml -------------------------------------------------------------------------------- /incubator/consul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/consul/README.md -------------------------------------------------------------------------------- /incubator/consul/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/consul/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/consul/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/consul/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/consul/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/consul/values.yaml -------------------------------------------------------------------------------- /incubator/dex/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/.helmignore -------------------------------------------------------------------------------- /incubator/dex/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/Chart.yaml -------------------------------------------------------------------------------- /incubator/dex/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/OWNERS -------------------------------------------------------------------------------- /incubator/dex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/README.md -------------------------------------------------------------------------------- /incubator/dex/config/openssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/config/openssl.conf -------------------------------------------------------------------------------- /incubator/dex/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/dex/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/dex/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/templates/clusterrole.yaml -------------------------------------------------------------------------------- /incubator/dex/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/templates/deployment.yaml -------------------------------------------------------------------------------- /incubator/dex/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/dex/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/templates/role.yaml -------------------------------------------------------------------------------- /incubator/dex/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/templates/rolebinding.yaml -------------------------------------------------------------------------------- /incubator/dex/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/templates/secret.yaml -------------------------------------------------------------------------------- /incubator/dex/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/templates/service.yaml -------------------------------------------------------------------------------- /incubator/dex/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dex/values.yaml -------------------------------------------------------------------------------- /incubator/dns-controller/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dns-controller/Chart.yaml -------------------------------------------------------------------------------- /incubator/dns-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dns-controller/README.md -------------------------------------------------------------------------------- /incubator/dns-controller/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dns-controller/values.yaml -------------------------------------------------------------------------------- /incubator/drupal/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/.helmignore -------------------------------------------------------------------------------- /incubator/drupal/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/Chart.yaml -------------------------------------------------------------------------------- /incubator/drupal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/README.md -------------------------------------------------------------------------------- /incubator/drupal/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/charts/common/Chart.yaml -------------------------------------------------------------------------------- /incubator/drupal/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/charts/common/README.md -------------------------------------------------------------------------------- /incubator/drupal/charts/mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/charts/mariadb/README.md -------------------------------------------------------------------------------- /incubator/drupal/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /incubator/drupal/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/requirements.lock -------------------------------------------------------------------------------- /incubator/drupal/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/requirements.yaml -------------------------------------------------------------------------------- /incubator/drupal/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/drupal/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/drupal/templates/drupal-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/templates/drupal-pv.yaml -------------------------------------------------------------------------------- /incubator/drupal/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/drupal/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/templates/secrets.yaml -------------------------------------------------------------------------------- /incubator/drupal/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/templates/svc.yaml -------------------------------------------------------------------------------- /incubator/drupal/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/values.schema.json -------------------------------------------------------------------------------- /incubator/drupal/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/drupal/values.yaml -------------------------------------------------------------------------------- /incubator/dynamo-on-tke/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dynamo-on-tke/.helmignore -------------------------------------------------------------------------------- /incubator/dynamo-on-tke/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dynamo-on-tke/Chart.lock -------------------------------------------------------------------------------- /incubator/dynamo-on-tke/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dynamo-on-tke/Chart.yaml -------------------------------------------------------------------------------- /incubator/dynamo-on-tke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dynamo-on-tke/README.md -------------------------------------------------------------------------------- /incubator/dynamo-on-tke/multi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dynamo-on-tke/multi-values.yaml -------------------------------------------------------------------------------- /incubator/dynamo-on-tke/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/dynamo-on-tke/values.yaml -------------------------------------------------------------------------------- /incubator/elasticsearch/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /incubator/elasticsearch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/elasticsearch/Chart.yaml -------------------------------------------------------------------------------- /incubator/elasticsearch/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /incubator/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/elasticsearch/README.md -------------------------------------------------------------------------------- /incubator/elasticsearch/examples/6.x/values.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | clusterName: "six" 4 | imageTag: "6.8.8" 5 | -------------------------------------------------------------------------------- /incubator/elasticsearch/examples/config/watcher_encryption_key: -------------------------------------------------------------------------------- 1 | supersecret 2 | -------------------------------------------------------------------------------- /incubator/elasticsearch/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/elasticsearch/values.yaml -------------------------------------------------------------------------------- /incubator/envoy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/envoy/.helmignore -------------------------------------------------------------------------------- /incubator/envoy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/envoy/Chart.yaml -------------------------------------------------------------------------------- /incubator/envoy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/envoy/README.md -------------------------------------------------------------------------------- /incubator/envoy/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /incubator/envoy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/envoy/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/envoy/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/envoy/templates/configmap.yaml -------------------------------------------------------------------------------- /incubator/envoy/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/envoy/templates/deployment.yaml -------------------------------------------------------------------------------- /incubator/envoy/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/envoy/templates/service.yaml -------------------------------------------------------------------------------- /incubator/envoy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/envoy/values.yaml -------------------------------------------------------------------------------- /incubator/envoygateway/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/envoygateway/.helmignore -------------------------------------------------------------------------------- /incubator/envoygateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/envoygateway/Chart.yaml -------------------------------------------------------------------------------- /incubator/envoygateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/envoygateway/README.md -------------------------------------------------------------------------------- /incubator/envoygateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/envoygateway/values.yaml -------------------------------------------------------------------------------- /incubator/etcd/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/etcd/.helmignore -------------------------------------------------------------------------------- /incubator/etcd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/etcd/Chart.yaml -------------------------------------------------------------------------------- /incubator/etcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/etcd/README.md -------------------------------------------------------------------------------- /incubator/etcd/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/etcd/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/etcd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/etcd/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/etcd/templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/etcd/templates/cronjob.yaml -------------------------------------------------------------------------------- /incubator/etcd/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/etcd/templates/pdb.yaml -------------------------------------------------------------------------------- /incubator/etcd/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/etcd/templates/secrets.yaml -------------------------------------------------------------------------------- /incubator/etcd/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/etcd/templates/statefulset.yaml -------------------------------------------------------------------------------- /incubator/etcd/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/etcd/templates/svc.yaml -------------------------------------------------------------------------------- /incubator/etcd/values-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/etcd/values-production.yaml -------------------------------------------------------------------------------- /incubator/etcd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/etcd/values.yaml -------------------------------------------------------------------------------- /incubator/filebeat/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /incubator/filebeat/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/filebeat/Chart.yaml -------------------------------------------------------------------------------- /incubator/filebeat/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /incubator/filebeat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/filebeat/README.md -------------------------------------------------------------------------------- /incubator/filebeat/examples/oss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/filebeat/examples/oss/Makefile -------------------------------------------------------------------------------- /incubator/filebeat/examples/oss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/filebeat/examples/oss/README.md -------------------------------------------------------------------------------- /incubator/filebeat/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/filebeat/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/filebeat/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/filebeat/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/filebeat/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/filebeat/values.yaml -------------------------------------------------------------------------------- /incubator/flagger/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/.helmignore -------------------------------------------------------------------------------- /incubator/flagger/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/Chart.yaml -------------------------------------------------------------------------------- /incubator/flagger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/LICENSE -------------------------------------------------------------------------------- /incubator/flagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/README.md -------------------------------------------------------------------------------- /incubator/flagger/crds/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/crds/crd.yaml -------------------------------------------------------------------------------- /incubator/flagger/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Flagger installed 2 | -------------------------------------------------------------------------------- /incubator/flagger/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/flagger/templates/account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/templates/account.yaml -------------------------------------------------------------------------------- /incubator/flagger/templates/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/templates/crd.yaml -------------------------------------------------------------------------------- /incubator/flagger/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/templates/pdb.yaml -------------------------------------------------------------------------------- /incubator/flagger/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/templates/psp.yaml -------------------------------------------------------------------------------- /incubator/flagger/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/templates/rbac.yaml -------------------------------------------------------------------------------- /incubator/flagger/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/templates/service.yaml -------------------------------------------------------------------------------- /incubator/flagger/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flagger/values.yaml -------------------------------------------------------------------------------- /incubator/flink-on-tke/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flink-on-tke/Chart.yaml -------------------------------------------------------------------------------- /incubator/flink-on-tke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flink-on-tke/README.md -------------------------------------------------------------------------------- /incubator/flink-on-tke/update_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flink-on-tke/update_template.sh -------------------------------------------------------------------------------- /incubator/flink-on-tke/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flink-on-tke/values.yaml -------------------------------------------------------------------------------- /incubator/flink-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flink-operator/Chart.yaml -------------------------------------------------------------------------------- /incubator/flink-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flink-operator/README.md -------------------------------------------------------------------------------- /incubator/flink-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flink-operator/values.yaml -------------------------------------------------------------------------------- /incubator/fluent-bit/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluent-bit/Chart.yaml -------------------------------------------------------------------------------- /incubator/fluent-bit/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluent-bit/OWNERS -------------------------------------------------------------------------------- /incubator/fluent-bit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluent-bit/README.md -------------------------------------------------------------------------------- /incubator/fluent-bit/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluent-bit/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/fluent-bit/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluent-bit/templates/psp.yaml -------------------------------------------------------------------------------- /incubator/fluent-bit/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluent-bit/values.yaml -------------------------------------------------------------------------------- /incubator/fluentd/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluentd/.helmignore -------------------------------------------------------------------------------- /incubator/fluentd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluentd/Chart.yaml -------------------------------------------------------------------------------- /incubator/fluentd/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluentd/OWNERS -------------------------------------------------------------------------------- /incubator/fluentd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluentd/README.md -------------------------------------------------------------------------------- /incubator/fluentd/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluentd/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/fluentd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluentd/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/fluentd/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluentd/templates/hpa.yaml -------------------------------------------------------------------------------- /incubator/fluentd/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluentd/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/fluentd/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluentd/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/fluentd/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluentd/templates/role.yaml -------------------------------------------------------------------------------- /incubator/fluentd/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluentd/templates/service.yaml -------------------------------------------------------------------------------- /incubator/fluentd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluentd/values.yaml -------------------------------------------------------------------------------- /incubator/fluid-on-tke/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluid-on-tke/Chart.yaml -------------------------------------------------------------------------------- /incubator/fluid-on-tke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluid-on-tke/README.md -------------------------------------------------------------------------------- /incubator/fluid-on-tke/templates/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: fluid-system 5 | -------------------------------------------------------------------------------- /incubator/fluid-on-tke/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluid-on-tke/values.yaml -------------------------------------------------------------------------------- /incubator/fluid/fluid-0.6.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluid/fluid-0.6.0/Chart.yaml -------------------------------------------------------------------------------- /incubator/fluid/fluid-0.6.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluid/fluid-0.6.0/README.md -------------------------------------------------------------------------------- /incubator/fluid/fluid-0.6.0/templates/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: fluid-system 5 | -------------------------------------------------------------------------------- /incubator/fluid/fluid-0.6.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluid/fluid-0.6.0/values.yaml -------------------------------------------------------------------------------- /incubator/fluid/fluid-0.7.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluid/fluid-0.7.0/Chart.yaml -------------------------------------------------------------------------------- /incubator/fluid/fluid-0.7.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluid/fluid-0.7.0/README.md -------------------------------------------------------------------------------- /incubator/fluid/fluid-0.7.0/templates/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: fluid-system 5 | -------------------------------------------------------------------------------- /incubator/fluid/fluid-0.7.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/fluid/fluid-0.7.0/values.yaml -------------------------------------------------------------------------------- /incubator/flux2/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flux2/.helmignore -------------------------------------------------------------------------------- /incubator/flux2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flux2/Chart.yaml -------------------------------------------------------------------------------- /incubator/flux2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flux2/README.md -------------------------------------------------------------------------------- /incubator/flux2/templates/_helper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flux2/templates/_helper.tpl -------------------------------------------------------------------------------- /incubator/flux2/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flux2/templates/podmonitor.yaml -------------------------------------------------------------------------------- /incubator/flux2/templates/policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flux2/templates/policies.yaml -------------------------------------------------------------------------------- /incubator/flux2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/flux2/values.yaml -------------------------------------------------------------------------------- /incubator/gitlab/.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/.markdownlint.yml -------------------------------------------------------------------------------- /incubator/gitlab/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/.rubocop.yml -------------------------------------------------------------------------------- /incubator/gitlab/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/.rubocop_todo.yml -------------------------------------------------------------------------------- /incubator/gitlab/.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/.vale.ini -------------------------------------------------------------------------------- /incubator/gitlab/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/CHANGELOG.md -------------------------------------------------------------------------------- /incubator/gitlab/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/CONTRIBUTING.md -------------------------------------------------------------------------------- /incubator/gitlab/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/Chart.yaml -------------------------------------------------------------------------------- /incubator/gitlab/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/LICENSE.md -------------------------------------------------------------------------------- /incubator/gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/README.md -------------------------------------------------------------------------------- /incubator/gitlab/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/Rakefile -------------------------------------------------------------------------------- /incubator/gitlab/charts/gitlab/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/charts/gitlab/Chart.yaml -------------------------------------------------------------------------------- /incubator/gitlab/charts/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/charts/grafana/README.md -------------------------------------------------------------------------------- /incubator/gitlab/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /incubator/gitlab/charts/minio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/charts/minio/Chart.yaml -------------------------------------------------------------------------------- /incubator/gitlab/charts/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/charts/minio/values.yaml -------------------------------------------------------------------------------- /incubator/gitlab/charts/postgresql/ci/shmvolume-disabled-values.yaml: -------------------------------------------------------------------------------- 1 | shmVolume: 2 | enabled: false 3 | -------------------------------------------------------------------------------- /incubator/gitlab/charts/redis/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/charts/redis/.helmignore -------------------------------------------------------------------------------- /incubator/gitlab/charts/redis/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/charts/redis/Chart.yaml -------------------------------------------------------------------------------- /incubator/gitlab/charts/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/charts/redis/README.md -------------------------------------------------------------------------------- /incubator/gitlab/charts/redis/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/charts/redis/values.yaml -------------------------------------------------------------------------------- /incubator/gitlab/charts/registry/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /incubator/gitlab/charts/registry/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/charts/registry/index.md -------------------------------------------------------------------------------- /incubator/gitlab/deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/deps.yml -------------------------------------------------------------------------------- /incubator/gitlab/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/requirements.lock -------------------------------------------------------------------------------- /incubator/gitlab/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/requirements.yaml -------------------------------------------------------------------------------- /incubator/gitlab/support/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/support/crd.yaml -------------------------------------------------------------------------------- /incubator/gitlab/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/gitlab/templates/_boolean.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_boolean.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_geo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_geo.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_gitaly.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_gitaly.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_ingress.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_kas.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_kas.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_minio.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_minio.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_oauth.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_oauth.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_pages.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_pages.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_praefect.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_praefect.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_rails.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_rails.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_redis.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_registry.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_registry.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_runcheck.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_runcheck.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_runner.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_runner.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_shell.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_shell.tpl -------------------------------------------------------------------------------- /incubator/gitlab/templates/_workhorse.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/templates/_workhorse.tpl -------------------------------------------------------------------------------- /incubator/gitlab/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/gitlab/values.yaml -------------------------------------------------------------------------------- /incubator/goosefs-on-tke/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/goosefs-on-tke/Chart.yaml -------------------------------------------------------------------------------- /incubator/goosefs-on-tke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/goosefs-on-tke/README.md -------------------------------------------------------------------------------- /incubator/goosefs-on-tke/templates/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: fluid-system 5 | -------------------------------------------------------------------------------- /incubator/goosefs-on-tke/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/goosefs-on-tke/values.yaml -------------------------------------------------------------------------------- /incubator/grafana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/.helmignore -------------------------------------------------------------------------------- /incubator/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/Chart.yaml -------------------------------------------------------------------------------- /incubator/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/README.md -------------------------------------------------------------------------------- /incubator/grafana/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/ci/default-values.yaml -------------------------------------------------------------------------------- /incubator/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /incubator/grafana/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/grafana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/grafana/templates/_pod.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/templates/_pod.tpl -------------------------------------------------------------------------------- /incubator/grafana/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/templates/hpa.yaml -------------------------------------------------------------------------------- /incubator/grafana/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/grafana/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/grafana/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/templates/role.yaml -------------------------------------------------------------------------------- /incubator/grafana/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/templates/secret.yaml -------------------------------------------------------------------------------- /incubator/grafana/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/templates/service.yaml -------------------------------------------------------------------------------- /incubator/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/grafana/values.yaml -------------------------------------------------------------------------------- /incubator/higress/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/higress/Chart.lock -------------------------------------------------------------------------------- /incubator/higress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/higress/Chart.yaml -------------------------------------------------------------------------------- /incubator/higress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/higress/LICENSE -------------------------------------------------------------------------------- /incubator/higress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/higress/README.md -------------------------------------------------------------------------------- /incubator/higress/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/higress/README.md.gotmpl -------------------------------------------------------------------------------- /incubator/higress/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/higress/README.zh.md -------------------------------------------------------------------------------- /incubator/higress/charts/higress-core/.helmignore: -------------------------------------------------------------------------------- 1 | crds/customresourcedefinitions.gen_lt1.16.yaml -------------------------------------------------------------------------------- /incubator/influxdb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/influxdb/.helmignore -------------------------------------------------------------------------------- /incubator/influxdb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/influxdb/Chart.yaml -------------------------------------------------------------------------------- /incubator/influxdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/influxdb/README.md -------------------------------------------------------------------------------- /incubator/influxdb/files/conf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/influxdb/files/conf/README.md -------------------------------------------------------------------------------- /incubator/influxdb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/influxdb/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/influxdb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/influxdb/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/influxdb/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/influxdb/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/influxdb/values-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/influxdb/values-production.yaml -------------------------------------------------------------------------------- /incubator/influxdb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/influxdb/values.yaml -------------------------------------------------------------------------------- /incubator/jaeger/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/.helmignore -------------------------------------------------------------------------------- /incubator/jaeger/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/Chart.yaml -------------------------------------------------------------------------------- /incubator/jaeger/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/OWNERS -------------------------------------------------------------------------------- /incubator/jaeger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/README.md -------------------------------------------------------------------------------- /incubator/jaeger/charts/elasticsearch/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /incubator/jaeger/charts/elasticsearch/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /incubator/jaeger/charts/elasticsearch/examples/6.x/values.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | clusterName: "six" 4 | imageTag: "6.8.8" 5 | -------------------------------------------------------------------------------- /incubator/jaeger/charts/elasticsearch/examples/config/watcher_encryption_key: -------------------------------------------------------------------------------- 1 | supersecret 2 | -------------------------------------------------------------------------------- /incubator/jaeger/charts/kafka/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/charts/kafka/.helmignore -------------------------------------------------------------------------------- /incubator/jaeger/charts/kafka/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/charts/kafka/Chart.yaml -------------------------------------------------------------------------------- /incubator/jaeger/charts/kafka/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/charts/kafka/OWNERS -------------------------------------------------------------------------------- /incubator/jaeger/charts/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/charts/kafka/README.md -------------------------------------------------------------------------------- /incubator/jaeger/charts/kafka/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/charts/kafka/values.yaml -------------------------------------------------------------------------------- /incubator/jaeger/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/requirements.lock -------------------------------------------------------------------------------- /incubator/jaeger/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/requirements.yaml -------------------------------------------------------------------------------- /incubator/jaeger/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/jaeger/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/jaeger/templates/agent-ds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/templates/agent-ds.yaml -------------------------------------------------------------------------------- /incubator/jaeger/templates/agent-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/templates/agent-sa.yaml -------------------------------------------------------------------------------- /incubator/jaeger/templates/agent-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/templates/agent-svc.yaml -------------------------------------------------------------------------------- /incubator/jaeger/templates/hotrod-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/templates/hotrod-sa.yaml -------------------------------------------------------------------------------- /incubator/jaeger/templates/query-ing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/templates/query-ing.yaml -------------------------------------------------------------------------------- /incubator/jaeger/templates/query-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/templates/query-sa.yaml -------------------------------------------------------------------------------- /incubator/jaeger/templates/query-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/templates/query-svc.yaml -------------------------------------------------------------------------------- /incubator/jaeger/templates/spark-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/templates/spark-sa.yaml -------------------------------------------------------------------------------- /incubator/jaeger/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jaeger/values.yaml -------------------------------------------------------------------------------- /incubator/jenkins/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/.helmignore -------------------------------------------------------------------------------- /incubator/jenkins/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/CHANGELOG.md -------------------------------------------------------------------------------- /incubator/jenkins/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/Chart.yaml -------------------------------------------------------------------------------- /incubator/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/README.md -------------------------------------------------------------------------------- /incubator/jenkins/Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/Tiltfile -------------------------------------------------------------------------------- /incubator/jenkins/VALUES_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/VALUES_SUMMARY.md -------------------------------------------------------------------------------- /incubator/jenkins/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/jenkins/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/jenkins/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/templates/config.yaml -------------------------------------------------------------------------------- /incubator/jenkins/templates/home-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/templates/home-pvc.yaml -------------------------------------------------------------------------------- /incubator/jenkins/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/templates/rbac.yaml -------------------------------------------------------------------------------- /incubator/jenkins/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/templates/secret.yaml -------------------------------------------------------------------------------- /incubator/jenkins/tests/config-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/tests/config-test.yaml -------------------------------------------------------------------------------- /incubator/jenkins/tests/rbac-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/tests/rbac-test.yaml -------------------------------------------------------------------------------- /incubator/jenkins/tests/secret-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/tests/secret-test.yaml -------------------------------------------------------------------------------- /incubator/jenkins/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jenkins/values.yaml -------------------------------------------------------------------------------- /incubator/jmeter-suite/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/jmeter-suite/.helmignore -------------------------------------------------------------------------------- /incubator/jmeter-suite/tke-jmeter-suite@v2.0-kona-non/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /incubator/jmeter-suite/tke-jmeter-suite@v2.0-kona/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/k8s-big-data-suite/.helmignore -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/k8s-big-data-suite/Chart.yaml -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/k8s-big-data-suite/README.md -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/elasticsearch/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/elasticsearch/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/hadoop/.gitignore: -------------------------------------------------------------------------------- 1 | requirements.lock 2 | -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/impala/README.md: -------------------------------------------------------------------------------- 1 | # Impala Helm Chart 2 | 3 | -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/impala/requirements.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/kibana/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/kibana/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/nginx-ingress/ci/deamonset-default-values.yaml: -------------------------------------------------------------------------------- 1 | controller: 2 | kind: DaemonSet 3 | -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/nginx-ingress/ci/deployment-default-values.yaml: -------------------------------------------------------------------------------- 1 | # Left blank to test default values 2 | -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/nginx-ingress/ci/deployment-psp-values.yaml: -------------------------------------------------------------------------------- 1 | podSecurityPolicy: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/spark/requirements.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/charts/sparkoperator/.helmignore: -------------------------------------------------------------------------------- 1 | OWNERS 2 | -------------------------------------------------------------------------------- /incubator/k8s-big-data-suite/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/k8s-big-data-suite/values.yaml -------------------------------------------------------------------------------- /incubator/kafka/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kafka/.helmignore -------------------------------------------------------------------------------- /incubator/kafka/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kafka/Chart.yaml -------------------------------------------------------------------------------- /incubator/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kafka/README.md -------------------------------------------------------------------------------- /incubator/kafka/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kafka/requirements.lock -------------------------------------------------------------------------------- /incubator/kafka/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kafka/requirements.yaml -------------------------------------------------------------------------------- /incubator/kafka/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kafka/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/kafka/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kafka/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/kafka/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kafka/templates/configmap.yaml -------------------------------------------------------------------------------- /incubator/kafka/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kafka/templates/role.yaml -------------------------------------------------------------------------------- /incubator/kafka/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kafka/templates/svc.yaml -------------------------------------------------------------------------------- /incubator/kafka/values-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kafka/values-production.yaml -------------------------------------------------------------------------------- /incubator/kafka/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kafka/values.yaml -------------------------------------------------------------------------------- /incubator/keda/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/keda/.helmignore -------------------------------------------------------------------------------- /incubator/keda/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/keda/Chart.yaml -------------------------------------------------------------------------------- /incubator/keda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/keda/README.md -------------------------------------------------------------------------------- /incubator/keda/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/keda/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/keda/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/keda/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/keda/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/keda/values.yaml -------------------------------------------------------------------------------- /incubator/kibana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/.helmignore -------------------------------------------------------------------------------- /incubator/kibana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/Chart.yaml -------------------------------------------------------------------------------- /incubator/kibana/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/OWNERS -------------------------------------------------------------------------------- /incubator/kibana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/README.md -------------------------------------------------------------------------------- /incubator/kibana/ci/dashboard-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/ci/dashboard-values.yaml -------------------------------------------------------------------------------- /incubator/kibana/ci/ingress-hosts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/ci/ingress-hosts.yaml -------------------------------------------------------------------------------- /incubator/kibana/ci/plugin-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/ci/plugin-install.yaml -------------------------------------------------------------------------------- /incubator/kibana/ci/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/ci/pvc.yaml -------------------------------------------------------------------------------- /incubator/kibana/ci/security-context.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/ci/security-context.yaml -------------------------------------------------------------------------------- /incubator/kibana/ci/service-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/ci/service-values.yaml -------------------------------------------------------------------------------- /incubator/kibana/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/kibana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/kibana/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/templates/configmap.yaml -------------------------------------------------------------------------------- /incubator/kibana/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/kibana/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/templates/service.yaml -------------------------------------------------------------------------------- /incubator/kibana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kibana/values.yaml -------------------------------------------------------------------------------- /incubator/kong/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/.helmignore -------------------------------------------------------------------------------- /incubator/kong/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/Chart.yaml -------------------------------------------------------------------------------- /incubator/kong/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/README.md -------------------------------------------------------------------------------- /incubator/kong/charts/cassandra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/charts/cassandra/README.md -------------------------------------------------------------------------------- /incubator/kong/charts/postgresql/ci/shmvolume-disabled-values.yaml: -------------------------------------------------------------------------------- 1 | shmVolume: 2 | enabled: false 3 | -------------------------------------------------------------------------------- /incubator/kong/ci/values-ingress.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /incubator/kong/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/requirements.lock -------------------------------------------------------------------------------- /incubator/kong/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/requirements.yaml -------------------------------------------------------------------------------- /incubator/kong/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/kong/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/kong/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/templates/deployment.yaml -------------------------------------------------------------------------------- /incubator/kong/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/templates/extra-list.yaml -------------------------------------------------------------------------------- /incubator/kong/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/templates/hpa.yaml -------------------------------------------------------------------------------- /incubator/kong/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/kong/templates/migrate-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/templates/migrate-job.yaml -------------------------------------------------------------------------------- /incubator/kong/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/templates/pdb.yaml -------------------------------------------------------------------------------- /incubator/kong/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/templates/service.yaml -------------------------------------------------------------------------------- /incubator/kong/values-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/values-production.yaml -------------------------------------------------------------------------------- /incubator/kong/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kong/values.yaml -------------------------------------------------------------------------------- /incubator/kruise-game/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise-game/.helmignore -------------------------------------------------------------------------------- /incubator/kruise-game/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise-game/Chart.yaml -------------------------------------------------------------------------------- /incubator/kruise-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise-game/README.md -------------------------------------------------------------------------------- /incubator/kruise-game/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise-game/values.yaml -------------------------------------------------------------------------------- /incubator/kruise-rollout/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise-rollout/.helmignore -------------------------------------------------------------------------------- /incubator/kruise-rollout/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise-rollout/Chart.yaml -------------------------------------------------------------------------------- /incubator/kruise-rollout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise-rollout/README.md -------------------------------------------------------------------------------- /incubator/kruise-rollout/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise-rollout/values.yaml -------------------------------------------------------------------------------- /incubator/kruise/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise/.helmignore -------------------------------------------------------------------------------- /incubator/kruise/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise/Chart.yaml -------------------------------------------------------------------------------- /incubator/kruise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise/README.md -------------------------------------------------------------------------------- /incubator/kruise/ci/default-values.yaml: -------------------------------------------------------------------------------- 1 | # Test with default values -------------------------------------------------------------------------------- /incubator/kruise/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/kruise/templates/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise/templates/manager.yaml -------------------------------------------------------------------------------- /incubator/kruise/templates/rbac_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise/templates/rbac_role.yaml -------------------------------------------------------------------------------- /incubator/kruise/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kruise/values.yaml -------------------------------------------------------------------------------- /incubator/kube-state-metrics/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kube-state-metrics/Chart.yaml -------------------------------------------------------------------------------- /incubator/kube-state-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kube-state-metrics/README.md -------------------------------------------------------------------------------- /incubator/kube-state-metrics/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kube-state-metrics/values.yaml -------------------------------------------------------------------------------- /incubator/kubernetes-dashboard/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubernetes-dashboard/Chart.yaml -------------------------------------------------------------------------------- /incubator/kubernetes-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubernetes-dashboard/README.md -------------------------------------------------------------------------------- /incubator/kubesphere/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubesphere/.helmignore -------------------------------------------------------------------------------- /incubator/kubesphere/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubesphere/Chart.lock -------------------------------------------------------------------------------- /incubator/kubesphere/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubesphere/Chart.yaml -------------------------------------------------------------------------------- /incubator/kubesphere/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubesphere/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/kubesphere/templates/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubesphere/templates/redis.yaml -------------------------------------------------------------------------------- /incubator/kubesphere/templates/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubesphere/templates/user.yaml -------------------------------------------------------------------------------- /incubator/kubesphere/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubesphere/values.yaml -------------------------------------------------------------------------------- /incubator/kubewatch/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubewatch/.helmignore -------------------------------------------------------------------------------- /incubator/kubewatch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubewatch/Chart.yaml -------------------------------------------------------------------------------- /incubator/kubewatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubewatch/README.md -------------------------------------------------------------------------------- /incubator/kubewatch/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubewatch/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/kubewatch/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kubewatch/values.yaml -------------------------------------------------------------------------------- /incubator/kueue/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kueue/.helmignore -------------------------------------------------------------------------------- /incubator/kueue/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kueue/Chart.yaml -------------------------------------------------------------------------------- /incubator/kueue/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - kannon92 5 | 6 | -------------------------------------------------------------------------------- /incubator/kueue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kueue/README.md -------------------------------------------------------------------------------- /incubator/kueue/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kueue/README.md.gotmpl -------------------------------------------------------------------------------- /incubator/kueue/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kueue/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/kueue/templates/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kueue/templates/rbac/role.yaml -------------------------------------------------------------------------------- /incubator/kueue/tests/manager_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kueue/tests/manager_test.yaml -------------------------------------------------------------------------------- /incubator/kueue/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/kueue/values.yaml -------------------------------------------------------------------------------- /incubator/llama-factory-on-tke/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/llama-factory-on-tke/Chart.yaml -------------------------------------------------------------------------------- /incubator/llama-factory-on-tke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/llama-factory-on-tke/README.md -------------------------------------------------------------------------------- /incubator/loki-stack/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/loki-stack/.helmignore -------------------------------------------------------------------------------- /incubator/loki-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/loki-stack/Chart.yaml -------------------------------------------------------------------------------- /incubator/loki-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/loki-stack/README.md -------------------------------------------------------------------------------- /incubator/loki-stack/charts/filebeat/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /incubator/loki-stack/charts/filebeat/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /incubator/loki-stack/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /incubator/loki-stack/charts/logstash/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /incubator/loki-stack/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/loki-stack/requirements.lock -------------------------------------------------------------------------------- /incubator/loki-stack/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/loki-stack/requirements.yaml -------------------------------------------------------------------------------- /incubator/loki-stack/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/loki-stack/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/loki-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/loki-stack/values.yaml -------------------------------------------------------------------------------- /incubator/lws/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/lws/.helmignore -------------------------------------------------------------------------------- /incubator/lws/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/lws/Chart.yaml -------------------------------------------------------------------------------- /incubator/lws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/lws/README.md -------------------------------------------------------------------------------- /incubator/lws/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/lws/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/lws/templates/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/lws/templates/rbac/role.yaml -------------------------------------------------------------------------------- /incubator/lws/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/lws/values.yaml -------------------------------------------------------------------------------- /incubator/mariadb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mariadb/.helmignore -------------------------------------------------------------------------------- /incubator/mariadb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mariadb/Chart.yaml -------------------------------------------------------------------------------- /incubator/mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mariadb/README.md -------------------------------------------------------------------------------- /incubator/mariadb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mariadb/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/mariadb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mariadb/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/mariadb/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mariadb/templates/role.yaml -------------------------------------------------------------------------------- /incubator/mariadb/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mariadb/templates/secrets.yaml -------------------------------------------------------------------------------- /incubator/mariadb/templates/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mariadb/templates/tests.yaml -------------------------------------------------------------------------------- /incubator/mariadb/values-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mariadb/values-production.yaml -------------------------------------------------------------------------------- /incubator/mariadb/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mariadb/values.schema.json -------------------------------------------------------------------------------- /incubator/mariadb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mariadb/values.yaml -------------------------------------------------------------------------------- /incubator/mean/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/Chart.yaml -------------------------------------------------------------------------------- /incubator/mean/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/README.md -------------------------------------------------------------------------------- /incubator/mean/charts/bitnami-common/values.yaml: -------------------------------------------------------------------------------- 1 | # Empty values.yaml. Required to properly serve the chart. -------------------------------------------------------------------------------- /incubator/mean/charts/mongodb/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /incubator/mean/charts/mongodb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/charts/mongodb/Chart.yaml -------------------------------------------------------------------------------- /incubator/mean/charts/mongodb/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/charts/mongodb/OWNERS -------------------------------------------------------------------------------- /incubator/mean/charts/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/charts/mongodb/README.md -------------------------------------------------------------------------------- /incubator/mean/charts/mongodb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/charts/mongodb/values.yaml -------------------------------------------------------------------------------- /incubator/mean/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/requirements.lock -------------------------------------------------------------------------------- /incubator/mean/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/requirements.yaml -------------------------------------------------------------------------------- /incubator/mean/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/mean/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/mean/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/templates/deployment.yaml -------------------------------------------------------------------------------- /incubator/mean/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/mean/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/mean/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/templates/svc.yaml -------------------------------------------------------------------------------- /incubator/mean/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mean/values.yaml -------------------------------------------------------------------------------- /incubator/memcached/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/memcached/.helmignore -------------------------------------------------------------------------------- /incubator/memcached/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/memcached/Chart.yaml -------------------------------------------------------------------------------- /incubator/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/memcached/README.md -------------------------------------------------------------------------------- /incubator/memcached/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/memcached/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/memcached/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/memcached/values.yaml -------------------------------------------------------------------------------- /incubator/minio/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/minio/.helmignore -------------------------------------------------------------------------------- /incubator/minio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/minio/Chart.yaml -------------------------------------------------------------------------------- /incubator/minio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/minio/README.md -------------------------------------------------------------------------------- /incubator/minio/ci/values-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/minio/ci/values-production.yaml -------------------------------------------------------------------------------- /incubator/minio/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/minio/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/minio/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/minio/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/minio/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/minio/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/minio/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/minio/templates/secrets.yaml -------------------------------------------------------------------------------- /incubator/minio/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/minio/templates/service.yaml -------------------------------------------------------------------------------- /incubator/minio/values-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/minio/values-production.yaml -------------------------------------------------------------------------------- /incubator/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/minio/values.yaml -------------------------------------------------------------------------------- /incubator/mongodb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/.helmignore -------------------------------------------------------------------------------- /incubator/mongodb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/Chart.yaml -------------------------------------------------------------------------------- /incubator/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/README.md -------------------------------------------------------------------------------- /incubator/mongodb/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/charts/common/README.md -------------------------------------------------------------------------------- /incubator/mongodb/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/requirements.lock -------------------------------------------------------------------------------- /incubator/mongodb/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/requirements.yaml -------------------------------------------------------------------------------- /incubator/mongodb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/mongodb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/mongodb/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/templates/role.yaml -------------------------------------------------------------------------------- /incubator/mongodb/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/templates/secrets.yaml -------------------------------------------------------------------------------- /incubator/mongodb/values-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/values-dev.yaml -------------------------------------------------------------------------------- /incubator/mongodb/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/values.schema.json -------------------------------------------------------------------------------- /incubator/mongodb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mongodb/values.yaml -------------------------------------------------------------------------------- /incubator/mpi-operator-on-tke/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mpi-operator-on-tke/Chart.yaml -------------------------------------------------------------------------------- /incubator/mpi-operator-on-tke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mpi-operator-on-tke/README.md -------------------------------------------------------------------------------- /incubator/mpi-operator-on-tke/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mpi-operator-on-tke/values.yaml -------------------------------------------------------------------------------- /incubator/mpi-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mpi-operator/Chart.yaml -------------------------------------------------------------------------------- /incubator/mpi-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mpi-operator/README.md -------------------------------------------------------------------------------- /incubator/mpi-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mpi-operator/values.yaml -------------------------------------------------------------------------------- /incubator/mysql/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | OWNERS -------------------------------------------------------------------------------- /incubator/mysql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mysql/Chart.yaml -------------------------------------------------------------------------------- /incubator/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mysql/README.md -------------------------------------------------------------------------------- /incubator/mysql/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mysql/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/mysql/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mysql/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/mysql/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mysql/templates/deployment.yaml -------------------------------------------------------------------------------- /incubator/mysql/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mysql/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/mysql/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mysql/templates/secrets.yaml -------------------------------------------------------------------------------- /incubator/mysql/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mysql/templates/svc.yaml -------------------------------------------------------------------------------- /incubator/mysql/templates/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mysql/templates/tests/test.yaml -------------------------------------------------------------------------------- /incubator/mysql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/mysql/values.yaml -------------------------------------------------------------------------------- /incubator/nats/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/.env -------------------------------------------------------------------------------- /incubator/nats/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/.helmignore -------------------------------------------------------------------------------- /incubator/nats/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/Chart.yaml -------------------------------------------------------------------------------- /incubator/nats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/README.md -------------------------------------------------------------------------------- /incubator/nats/accounts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/accounts.conf -------------------------------------------------------------------------------- /incubator/nats/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/deploy.yaml -------------------------------------------------------------------------------- /incubator/nats/deploy2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/deploy2.yaml -------------------------------------------------------------------------------- /incubator/nats/foo.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /incubator/nats/foo.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/foo.dhall -------------------------------------------------------------------------------- /incubator/nats/resolver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/resolver.conf -------------------------------------------------------------------------------- /incubator/nats/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/nats/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/nats/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/templates/configmap.yaml -------------------------------------------------------------------------------- /incubator/nats/templates/nats-box.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/templates/nats-box.yaml -------------------------------------------------------------------------------- /incubator/nats/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/templates/rbac.yaml -------------------------------------------------------------------------------- /incubator/nats/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/templates/service.yaml -------------------------------------------------------------------------------- /incubator/nats/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/templates/statefulset.yaml -------------------------------------------------------------------------------- /incubator/nats/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nats/values.yaml -------------------------------------------------------------------------------- /incubator/newmonkey-web/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/newmonkey-web/.helmignore -------------------------------------------------------------------------------- /incubator/newmonkey-web/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/newmonkey-web/Chart.yaml -------------------------------------------------------------------------------- /incubator/newmonkey-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/newmonkey-web/README.md -------------------------------------------------------------------------------- /incubator/newmonkey-web/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/newmonkey-web/values.yaml -------------------------------------------------------------------------------- /incubator/newmonkey/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/newmonkey/.helmignore -------------------------------------------------------------------------------- /incubator/newmonkey/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/newmonkey/Chart.yaml -------------------------------------------------------------------------------- /incubator/newmonkey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/newmonkey/README.md -------------------------------------------------------------------------------- /incubator/newmonkey/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/newmonkey/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/newmonkey/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/newmonkey/values.yaml -------------------------------------------------------------------------------- /incubator/nginx-ingress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nginx-ingress/.helmignore -------------------------------------------------------------------------------- /incubator/nginx-ingress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nginx-ingress/Chart.yaml -------------------------------------------------------------------------------- /incubator/nginx-ingress/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nginx-ingress/OWNERS -------------------------------------------------------------------------------- /incubator/nginx-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nginx-ingress/README.md -------------------------------------------------------------------------------- /incubator/nginx-ingress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nginx-ingress/values.yaml -------------------------------------------------------------------------------- /incubator/nocalhost/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nocalhost/.helmignore -------------------------------------------------------------------------------- /incubator/nocalhost/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nocalhost/Chart.yaml -------------------------------------------------------------------------------- /incubator/nocalhost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nocalhost/README.md -------------------------------------------------------------------------------- /incubator/nocalhost/sql/nocalhost-api.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nocalhost/sql/nocalhost-api.sql -------------------------------------------------------------------------------- /incubator/nocalhost/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/nocalhost/values.yaml -------------------------------------------------------------------------------- /incubator/node-exporter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node-exporter/Chart.yaml -------------------------------------------------------------------------------- /incubator/node-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node-exporter/README.md -------------------------------------------------------------------------------- /incubator/node-exporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node-exporter/values.yaml -------------------------------------------------------------------------------- /incubator/node/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/.helmignore -------------------------------------------------------------------------------- /incubator/node/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/Chart.yaml -------------------------------------------------------------------------------- /incubator/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/README.md -------------------------------------------------------------------------------- /incubator/node/charts/mongodb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/charts/mongodb/.helmignore -------------------------------------------------------------------------------- /incubator/node/charts/mongodb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/charts/mongodb/Chart.yaml -------------------------------------------------------------------------------- /incubator/node/charts/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/charts/mongodb/README.md -------------------------------------------------------------------------------- /incubator/node/charts/mongodb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/charts/mongodb/values.yaml -------------------------------------------------------------------------------- /incubator/node/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/requirements.lock -------------------------------------------------------------------------------- /incubator/node/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/requirements.yaml -------------------------------------------------------------------------------- /incubator/node/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/node/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/node/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/templates/deployment.yaml -------------------------------------------------------------------------------- /incubator/node/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/templates/ingress.yaml -------------------------------------------------------------------------------- /incubator/node/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/node/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/templates/svc.yaml -------------------------------------------------------------------------------- /incubator/node/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/node/values.yaml -------------------------------------------------------------------------------- /incubator/olm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/olm/.helmignore -------------------------------------------------------------------------------- /incubator/olm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/olm/Chart.yaml -------------------------------------------------------------------------------- /incubator/olm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/olm/LICENSE -------------------------------------------------------------------------------- /incubator/olm/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /incubator/olm/OWNER: -------------------------------------------------------------------------------- 1 | danielxxli@tencent.com 2 | -------------------------------------------------------------------------------- /incubator/olm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/olm/README.md -------------------------------------------------------------------------------- /incubator/olm/crds/installplans.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/olm/crds/installplans.crd.yaml -------------------------------------------------------------------------------- /incubator/olm/crds/operators.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/olm/crds/operators.crd.yaml -------------------------------------------------------------------------------- /incubator/olm/crds/subscriptions.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/olm/crds/subscriptions.crd.yaml -------------------------------------------------------------------------------- /incubator/olm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/olm/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/olm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/olm/values.yaml -------------------------------------------------------------------------------- /incubator/open-webui/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/open-webui/.helmignore -------------------------------------------------------------------------------- /incubator/open-webui/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/open-webui/Chart.lock -------------------------------------------------------------------------------- /incubator/open-webui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/open-webui/Chart.yaml -------------------------------------------------------------------------------- /incubator/open-webui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/open-webui/README.md -------------------------------------------------------------------------------- /incubator/open-webui/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/open-webui/README.md.gotmpl -------------------------------------------------------------------------------- /incubator/open-webui/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/open-webui/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/open-webui/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/open-webui/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/open-webui/values-gke-min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/open-webui/values-gke-min.yaml -------------------------------------------------------------------------------- /incubator/open-webui/values-minikube.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/open-webui/values-minikube.yaml -------------------------------------------------------------------------------- /incubator/open-webui/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/open-webui/values.yaml -------------------------------------------------------------------------------- /incubator/openldap/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/openldap/.helmignore -------------------------------------------------------------------------------- /incubator/openldap/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/openldap/Chart.yaml -------------------------------------------------------------------------------- /incubator/openldap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/openldap/README.md -------------------------------------------------------------------------------- /incubator/openldap/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/openldap/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/openldap/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/openldap/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/openldap/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/openldap/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/openldap/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/openldap/templates/secret.yaml -------------------------------------------------------------------------------- /incubator/openldap/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/openldap/templates/service.yaml -------------------------------------------------------------------------------- /incubator/openldap/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/openldap/values.yaml -------------------------------------------------------------------------------- /incubator/opentelemetry-operator/ci/nameoverride-values.yaml: -------------------------------------------------------------------------------- 1 | nameOverride: foobar 2 | -------------------------------------------------------------------------------- /incubator/opentelemetry-operator/ci/secret-name-values.yaml: -------------------------------------------------------------------------------- 1 | admissionWebhooks: 2 | secretName: random-name 3 | -------------------------------------------------------------------------------- /incubator/opentelemetry-operator/examples/default/values.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /incubator/postgresql/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/postgresql/.helmignore -------------------------------------------------------------------------------- /incubator/postgresql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/postgresql/Chart.yaml -------------------------------------------------------------------------------- /incubator/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/postgresql/README.md -------------------------------------------------------------------------------- /incubator/postgresql/ci/shmvolume-disabled-values.yaml: -------------------------------------------------------------------------------- 1 | shmVolume: 2 | enabled: false 3 | -------------------------------------------------------------------------------- /incubator/postgresql/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/postgresql/files/README.md -------------------------------------------------------------------------------- /incubator/postgresql/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/postgresql/requirements.lock -------------------------------------------------------------------------------- /incubator/postgresql/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/postgresql/requirements.yaml -------------------------------------------------------------------------------- /incubator/postgresql/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/postgresql/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/postgresql/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/postgresql/templates/role.yaml -------------------------------------------------------------------------------- /incubator/postgresql/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/postgresql/templates/svc.yaml -------------------------------------------------------------------------------- /incubator/postgresql/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/postgresql/values.schema.json -------------------------------------------------------------------------------- /incubator/postgresql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/postgresql/values.yaml -------------------------------------------------------------------------------- /incubator/prometheus-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/prometheus-operator/.helmignore -------------------------------------------------------------------------------- /incubator/prometheus-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/prometheus-operator/Chart.yaml -------------------------------------------------------------------------------- /incubator/prometheus-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/prometheus-operator/README.md -------------------------------------------------------------------------------- /incubator/prometheus-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/prometheus-operator/values.yaml -------------------------------------------------------------------------------- /incubator/prometheus/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/prometheus/.helmignore -------------------------------------------------------------------------------- /incubator/prometheus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/prometheus/Chart.yaml -------------------------------------------------------------------------------- /incubator/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/prometheus/README.md -------------------------------------------------------------------------------- /incubator/prometheus/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/prometheus/requirements.lock -------------------------------------------------------------------------------- /incubator/prometheus/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/prometheus/requirements.yaml -------------------------------------------------------------------------------- /incubator/prometheus/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/prometheus/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/prometheus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/prometheus/values.yaml -------------------------------------------------------------------------------- /incubator/pulsar/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pulsar/.helmignore -------------------------------------------------------------------------------- /incubator/pulsar/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pulsar/Chart.yaml -------------------------------------------------------------------------------- /incubator/pulsar/templates/_broker.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pulsar/templates/_broker.tpl -------------------------------------------------------------------------------- /incubator/pulsar/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pulsar/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/pulsar/templates/_toolset.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pulsar/templates/_toolset.tpl -------------------------------------------------------------------------------- /incubator/pulsar/templates/_zookeeper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pulsar/templates/_zookeeper.tpl -------------------------------------------------------------------------------- /incubator/pulsar/templates/keytool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pulsar/templates/keytool.yaml -------------------------------------------------------------------------------- /incubator/pulsar/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pulsar/templates/namespace.yaml -------------------------------------------------------------------------------- /incubator/pulsar/templates/proxy-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pulsar/templates/proxy-pdb.yaml -------------------------------------------------------------------------------- /incubator/pulsar/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pulsar/values.yaml -------------------------------------------------------------------------------- /incubator/pytorch-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch-operator/Chart.yaml -------------------------------------------------------------------------------- /incubator/pytorch-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch-operator/README.md -------------------------------------------------------------------------------- /incubator/pytorch-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch-operator/values.yaml -------------------------------------------------------------------------------- /incubator/pytorch/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch/.helmignore -------------------------------------------------------------------------------- /incubator/pytorch/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch/Chart.lock -------------------------------------------------------------------------------- /incubator/pytorch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch/Chart.yaml -------------------------------------------------------------------------------- /incubator/pytorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch/README.md -------------------------------------------------------------------------------- /incubator/pytorch/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch/charts/common/README.md -------------------------------------------------------------------------------- /incubator/pytorch/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/pytorch/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/pytorch/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/pytorch/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch/templates/service.yaml -------------------------------------------------------------------------------- /incubator/pytorch/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/pytorch/values.yaml -------------------------------------------------------------------------------- /incubator/rabbitmq/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/.helmignore -------------------------------------------------------------------------------- /incubator/rabbitmq/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/Chart.yaml -------------------------------------------------------------------------------- /incubator/rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/README.md -------------------------------------------------------------------------------- /incubator/rabbitmq/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/requirements.lock -------------------------------------------------------------------------------- /incubator/rabbitmq/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/requirements.yaml -------------------------------------------------------------------------------- /incubator/rabbitmq/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/rabbitmq/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/rabbitmq/templates/certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/templates/certs.yaml -------------------------------------------------------------------------------- /incubator/rabbitmq/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/templates/pdb.yaml -------------------------------------------------------------------------------- /incubator/rabbitmq/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/templates/role.yaml -------------------------------------------------------------------------------- /incubator/rabbitmq/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/templates/svc.yaml -------------------------------------------------------------------------------- /incubator/rabbitmq/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/values.schema.json -------------------------------------------------------------------------------- /incubator/rabbitmq/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/rabbitmq/values.yaml -------------------------------------------------------------------------------- /incubator/redis/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/redis/.helmignore -------------------------------------------------------------------------------- /incubator/redis/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/redis/Chart.yaml -------------------------------------------------------------------------------- /incubator/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/redis/README.md -------------------------------------------------------------------------------- /incubator/redis/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/redis/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/redis/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/redis/templates/_helpers.tpl -------------------------------------------------------------------------------- /incubator/redis/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/redis/templates/psp.yaml -------------------------------------------------------------------------------- /incubator/redis/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/redis/templates/secret.yaml -------------------------------------------------------------------------------- /incubator/redis/values-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/redis/values-production.yaml -------------------------------------------------------------------------------- /incubator/redis/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/redis/values.schema.json -------------------------------------------------------------------------------- /incubator/redis/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/redis/values.yaml -------------------------------------------------------------------------------- /incubator/spark-on-tke/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/spark-on-tke/Chart.yaml -------------------------------------------------------------------------------- /incubator/spark-on-tke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/spark-on-tke/README.md -------------------------------------------------------------------------------- /incubator/spark-on-tke/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/spark-on-tke/values.yaml -------------------------------------------------------------------------------- /incubator/spark-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/spark-operator/Chart.yaml -------------------------------------------------------------------------------- /incubator/spark-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/spark-operator/README.md -------------------------------------------------------------------------------- /incubator/spark-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/spark-operator/values.yaml -------------------------------------------------------------------------------- /incubator/tapm-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tapm-operator/.helmignore -------------------------------------------------------------------------------- /incubator/tapm-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tapm-operator/Chart.yaml -------------------------------------------------------------------------------- /incubator/tapm-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tapm-operator/README.md -------------------------------------------------------------------------------- /incubator/tapm-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tapm-operator/values.yaml -------------------------------------------------------------------------------- /incubator/telegraf/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/telegraf/.helmignore -------------------------------------------------------------------------------- /incubator/telegraf/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/telegraf/Chart.yaml -------------------------------------------------------------------------------- /incubator/telegraf/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/telegraf/OWNERS -------------------------------------------------------------------------------- /incubator/telegraf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/telegraf/README.md -------------------------------------------------------------------------------- /incubator/telegraf/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/telegraf/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/telegraf/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/telegraf/templates/role.yaml -------------------------------------------------------------------------------- /incubator/telegraf/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/telegraf/values.yaml -------------------------------------------------------------------------------- /incubator/tf-operator-on-tke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tf-operator-on-tke/README.md -------------------------------------------------------------------------------- /incubator/tf-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tf-operator/Chart.yaml -------------------------------------------------------------------------------- /incubator/tf-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tf-operator/README.md -------------------------------------------------------------------------------- /incubator/tf-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tf-operator/values.yaml -------------------------------------------------------------------------------- /incubator/thanos/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/thanos/.helmignore -------------------------------------------------------------------------------- /incubator/thanos/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/thanos/Chart.yaml -------------------------------------------------------------------------------- /incubator/thanos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/thanos/README.md -------------------------------------------------------------------------------- /incubator/thanos/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/thanos/requirements.lock -------------------------------------------------------------------------------- /incubator/thanos/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/thanos/requirements.yaml -------------------------------------------------------------------------------- /incubator/thanos/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/thanos/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/thanos/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/thanos/values.yaml -------------------------------------------------------------------------------- /incubator/tke-dify/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-dify/Chart.yaml -------------------------------------------------------------------------------- /incubator/tke-dify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-dify/README.md -------------------------------------------------------------------------------- /incubator/tke-dify/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-dify/requirements.yaml -------------------------------------------------------------------------------- /incubator/tke-dify/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-dify/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/tke-dify/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-dify/templates/hpa.yaml -------------------------------------------------------------------------------- /incubator/tke-dify/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-dify/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/tke-dify/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-dify/values.yaml -------------------------------------------------------------------------------- /incubator/tke-olm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-olm/.helmignore -------------------------------------------------------------------------------- /incubator/tke-olm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-olm/Chart.yaml -------------------------------------------------------------------------------- /incubator/tke-olm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-olm/LICENSE -------------------------------------------------------------------------------- /incubator/tke-olm/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /incubator/tke-olm/OWNER: -------------------------------------------------------------------------------- 1 | danielxxli@tencent.com 2 | -------------------------------------------------------------------------------- /incubator/tke-olm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-olm/README.md -------------------------------------------------------------------------------- /incubator/tke-olm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-olm/values.yaml -------------------------------------------------------------------------------- /incubator/tke-resilience/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-resilience/.helmignore -------------------------------------------------------------------------------- /incubator/tke-resilience/release-v0.5.0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /incubator/tke-resilience/release-v1.0.0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /incubator/tke-sgx-plugin/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-sgx-plugin/.helmignore -------------------------------------------------------------------------------- /incubator/tke-sgx-plugin/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-sgx-plugin/Chart.yaml -------------------------------------------------------------------------------- /incubator/tke-sgx-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-sgx-plugin/README.md -------------------------------------------------------------------------------- /incubator/tke-sgx-plugin/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-sgx-plugin/values.yaml -------------------------------------------------------------------------------- /incubator/tke-spot-agent/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-spot-agent/.helmignore -------------------------------------------------------------------------------- /incubator/tke-spot-agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-spot-agent/Chart.yaml -------------------------------------------------------------------------------- /incubator/tke-spot-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-spot-agent/README.md -------------------------------------------------------------------------------- /incubator/tke-spot-agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tke-spot-agent/values.yaml -------------------------------------------------------------------------------- /incubator/tlog-agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tlog-agent/Chart.yaml -------------------------------------------------------------------------------- /incubator/tlog-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tlog-agent/README.md -------------------------------------------------------------------------------- /incubator/tlog-agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tlog-agent/values.yaml -------------------------------------------------------------------------------- /incubator/tomcat/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tomcat/.helmignore -------------------------------------------------------------------------------- /incubator/tomcat/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tomcat/Chart.yaml -------------------------------------------------------------------------------- /incubator/tomcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tomcat/README.md -------------------------------------------------------------------------------- /incubator/tomcat/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tomcat/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/tomcat/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tomcat/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/tomcat/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tomcat/templates/svc.yaml -------------------------------------------------------------------------------- /incubator/tomcat/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/tomcat/values.yaml -------------------------------------------------------------------------------- /incubator/traefik/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | crds/kustomization.yaml 3 | -------------------------------------------------------------------------------- /incubator/traefik/.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/.schema.yaml -------------------------------------------------------------------------------- /incubator/traefik/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/Changelog.md -------------------------------------------------------------------------------- /incubator/traefik/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/Chart.yaml -------------------------------------------------------------------------------- /incubator/traefik/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/EXAMPLES.md -------------------------------------------------------------------------------- /incubator/traefik/Guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/Guidelines.md -------------------------------------------------------------------------------- /incubator/traefik/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/LICENSE -------------------------------------------------------------------------------- /incubator/traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/README.md -------------------------------------------------------------------------------- /incubator/traefik/VALUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/VALUES.md -------------------------------------------------------------------------------- /incubator/traefik/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/templates/NOTES.txt -------------------------------------------------------------------------------- /incubator/traefik/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/templates/hpa.yaml -------------------------------------------------------------------------------- /incubator/traefik/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/traefik/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/values.schema.json -------------------------------------------------------------------------------- /incubator/traefik/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/traefik/values.yaml -------------------------------------------------------------------------------- /incubator/verl-on-tke/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/verl-on-tke/.helmignore -------------------------------------------------------------------------------- /incubator/verl-on-tke/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/verl-on-tke/Chart.yaml -------------------------------------------------------------------------------- /incubator/verl-on-tke/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/verl-on-tke/values.yaml -------------------------------------------------------------------------------- /incubator/wordpress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/wordpress/.helmignore -------------------------------------------------------------------------------- /incubator/wordpress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/wordpress/Chart.yaml -------------------------------------------------------------------------------- /incubator/wordpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/wordpress/README.md -------------------------------------------------------------------------------- /incubator/wordpress/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/wordpress/requirements.lock -------------------------------------------------------------------------------- /incubator/wordpress/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/wordpress/requirements.yaml -------------------------------------------------------------------------------- /incubator/wordpress/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/wordpress/templates/pvc.yaml -------------------------------------------------------------------------------- /incubator/wordpress/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/wordpress/templates/svc.yaml -------------------------------------------------------------------------------- /incubator/wordpress/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/wordpress/values.schema.json -------------------------------------------------------------------------------- /incubator/wordpress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/wordpress/values.yaml -------------------------------------------------------------------------------- /incubator/zookeeper/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/zookeeper/.helmignore -------------------------------------------------------------------------------- /incubator/zookeeper/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/zookeeper/Chart.yaml -------------------------------------------------------------------------------- /incubator/zookeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/zookeeper/README.md -------------------------------------------------------------------------------- /incubator/zookeeper/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/zookeeper/templates/svc.yaml -------------------------------------------------------------------------------- /incubator/zookeeper/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/charts/HEAD/incubator/zookeeper/values.yaml -------------------------------------------------------------------------------- /repo/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stable/placeholder: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------