├── .github └── workflows │ ├── build-chart-index.yaml │ └── issues-build-latest-chart.yaml ├── .gitignore ├── .travis.yml ├── OWNERS ├── readme.md └── src ├── latest └── Chart.yaml ├── main ├── apisix-dashboard │ ├── .helmignore │ ├── Chart.yaml │ ├── charts │ │ └── .gitkeep │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── apisix-ingress-controller │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── .gitkeep │ ├── crds │ │ └── customresourcedefinitions.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── rbac.yaml │ │ ├── service-account.yaml │ │ ├── service.yaml │ │ └── servicemonitor.yaml │ └── values.yaml ├── apisix │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── apisix-dashboard-0.3.0.tgz │ │ ├── apisix-ingress-controller-0.8.0.tgz │ │ └── etcd-6.2.6.tgz │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service-admin.yaml │ │ └── service-gateway.yaml │ └── values.yaml ├── elasticsearch-exporter │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ ├── default-values.yaml │ │ └── security-context.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cert-secret.yaml │ │ ├── deployment.yaml │ │ ├── podsecuritypolicies.yaml │ │ ├── prometheusrule.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ └── values.yaml ├── fluentbit-operator │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ ├── logging.kubesphere.io_filter.yaml │ │ ├── logging.kubesphere.io_fluentbit.yaml │ │ ├── logging.kubesphere.io_fluentbitconfig.yaml │ │ ├── logging.kubesphere.io_input.yaml │ │ ├── logging.kubesphere.io_output.yaml │ │ └── logging.kubesphere.io_parser.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── filter-containerd.yaml │ │ ├── filter-kubernetes.yaml │ │ ├── filter-systemd.yaml │ │ ├── fluentbit-containerd-config.yaml │ │ ├── fluentbit-fluentBit.yaml │ │ ├── fluentbit-operator-clusterRole.yaml │ │ ├── fluentbit-operator-clusterRoleBinding.yaml │ │ ├── fluentbit-operator-deployment.yaml │ │ ├── fluentbitconfig-fluentBitConfig.yaml │ │ ├── input-systemd-docker.yaml │ │ ├── input-systemd-kubelet.yaml │ │ ├── input-tail.yaml │ │ ├── lua-config.yaml │ │ ├── output-elasticsearch.yaml │ │ ├── output-forward.yaml │ │ ├── output-kafka.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── gitlab │ ├── .dockerignore │ ├── .gitignore │ ├── .gitlab-ci.yml │ ├── .gitlab │ │ └── issue_templates │ │ │ └── default.md │ ├── .helmignore │ ├── .markdownlint.json │ ├── .vale.ini │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Chart.yaml │ ├── Dangerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE.md │ ├── README.md │ ├── Rakefile │ ├── bin │ │ ├── changelog │ │ └── localtiller-helm │ ├── changelogs │ │ └── unreleased │ │ │ ├── .gitkeep │ │ │ ├── 1124-gitlab-runner-0.15.0.yaml │ │ │ ├── 1264-minio-add-podlabels-and-podannotations.yaml │ │ │ ├── 1307-rework-webservice-configuration.md │ │ │ ├── added-puma-support-to-unicorn-chart │ │ │ ├── gitlab-runner-0.16.0.yaml │ │ │ ├── kubernetes-v1-13 │ │ │ ├── make-mailroom-expunge │ │ │ └── structured-logging-to-stdout │ ├── charts │ │ ├── certmanager-issuer │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _create_issuer.sh │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _issuer.yaml │ │ │ │ ├── cert-manager.yml │ │ │ │ ├── issuer-job.yaml │ │ │ │ └── rbac-config.yaml │ │ │ └── values.yaml │ │ ├── gitlab │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── charts │ │ │ │ ├── geo-logcursor │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitaly │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── configmap.yml │ │ │ │ │ │ ├── pause_job.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── statefulset.yml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitlab-exporter │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitlab-grafana │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _import-secret.sh │ │ │ │ │ │ ├── datasource-configmap.yaml │ │ │ │ │ │ ├── import-secret-configmap.yaml │ │ │ │ │ │ └── ingress.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitlab-shell │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── configmap-sshd.yml │ │ │ │ │ │ ├── configmap.yml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── nginx-tcp-configmap.yml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ ├── values.schema.json │ │ │ │ │ └── values.yaml │ │ │ │ ├── mailroom │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── migrations │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── _jobspec.yaml │ │ │ │ │ │ ├── _serviceaccountspec.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ └── job.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── operator │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── gitlab.yaml │ │ │ │ │ │ └── rbac.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── sidekiq │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap-queue.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pause_job.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── task-runner │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── backup-job.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── webservice │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap.yml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── pause_job.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test-runner.yaml │ │ │ │ │ │ └── tests.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── _artifacts.tpl │ │ │ │ ├── _configure.tpl │ │ │ │ ├── _database.yml.tpl │ │ │ │ ├── _defaultProjectsFeatures.tpl │ │ │ │ ├── _externaldiffs.tpl │ │ │ │ ├── _geo.tpl │ │ │ │ ├── _gitaly.tpl │ │ │ │ ├── _gitlab.yaml.tpl │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _ldap.tpl │ │ │ │ ├── _lfs.tpl │ │ │ │ ├── _minio.tpl │ │ │ │ ├── _objectStorage.tpl │ │ │ │ ├── _omniauth.tpl │ │ │ │ ├── _operator.tpl │ │ │ │ ├── _packages.tpl │ │ │ │ ├── _postgresql.tpl │ │ │ │ ├── _pseudonymizer.tpl │ │ │ │ ├── _rails.redis.tpl │ │ │ │ ├── _redis.tpl │ │ │ │ ├── _registry.tpl │ │ │ │ ├── _sentry.tpl │ │ │ │ ├── _serviceAccount.tpl │ │ │ │ ├── _smtp.tpl │ │ │ │ ├── _terraformState.tpl │ │ │ │ ├── _tracing.tpl │ │ │ │ ├── _uploads.tpl │ │ │ │ └── _workhorse.tpl │ │ │ └── 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 │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── index.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── controller-configmap.yaml │ │ │ │ ├── controller-daemonset.yaml │ │ │ │ ├── controller-deployment.yaml │ │ │ │ ├── controller-hpa.yaml │ │ │ │ ├── controller-metrics-service.yaml │ │ │ │ ├── controller-poddisruptionbudget.yaml │ │ │ │ ├── controller-service.yaml │ │ │ │ ├── controller-stats-service.yaml │ │ │ │ ├── default-backend-deployment.yaml │ │ │ │ ├── default-backend-poddisruptionbudget.yaml │ │ │ │ ├── default-backend-service.yaml │ │ │ │ ├── headers-configmap.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── tcp-configmap.yaml │ │ │ │ └── udp-configmap.yaml │ │ │ └── values.yaml │ │ ├── registry │ │ │ ├── CHANGELOG.md │ │ │ ├── Chart.yaml │ │ │ ├── index.md │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _storage_default.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ └── shared-secrets │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── _generate_secrets.sh │ │ │ ├── _helpers.tpl │ │ │ ├── _jobspec.yaml │ │ │ ├── _rbac-role.yaml │ │ │ ├── _rbac-rolebinding.yaml │ │ │ ├── _rbac-serviceaccount.yaml │ │ │ ├── _self-signed-cert-job.yml │ │ │ ├── configmap.yaml │ │ │ ├── job.yaml │ │ │ ├── rbac-config.yaml │ │ │ └── self-signed-cert-job.yml │ │ │ └── values.yaml │ ├── deps.yml │ ├── doc │ │ ├── .vale │ │ │ └── gitlab │ │ │ │ ├── Acronyms.yml │ │ │ │ ├── BadgeCapitalization.yml │ │ │ │ ├── British.yml │ │ │ │ ├── CodeblockFences.yml │ │ │ │ ├── Contractions.yml │ │ │ │ ├── CurlStringsQuoted.yml │ │ │ │ ├── CurrentStatus.yml │ │ │ │ ├── FirstPerson.yml │ │ │ │ ├── FutureTense.yml │ │ │ │ ├── InternalLinkExtension.yml │ │ │ │ ├── LatinTerms.yml │ │ │ │ ├── MeaningfulLinkWords.yml │ │ │ │ ├── MergeConflictMarkers.yml │ │ │ │ ├── OutdatedVersions.yml │ │ │ │ ├── OxfordComma.yml │ │ │ │ ├── ReferenceLinks.yml │ │ │ │ ├── RelativeLinks.yml │ │ │ │ ├── Repetition.yml │ │ │ │ ├── SentenceLength.yml │ │ │ │ ├── SentenceSpacing.yml │ │ │ │ ├── Spelling.yml │ │ │ │ ├── SubstitutionWarning.yml │ │ │ │ ├── Substitutions.yml │ │ │ │ ├── VersionText.yml │ │ │ │ └── spelling-exceptions.txt │ │ ├── advanced │ │ │ ├── custom-images │ │ │ │ └── index.md │ │ │ ├── external-db │ │ │ │ ├── external-omnibus-psql.md │ │ │ │ └── index.md │ │ │ ├── external-gitaly │ │ │ │ ├── external-omnibus-gitaly.md │ │ │ │ └── index.md │ │ │ ├── external-mattermost.md │ │ │ ├── external-mattermost │ │ │ │ └── index.md │ │ │ ├── external-nginx │ │ │ │ └── index.md │ │ │ ├── external-object-storage │ │ │ │ ├── aws-iam-roles.md │ │ │ │ ├── azure-minio-gateway.md │ │ │ │ ├── index.md │ │ │ │ └── minio.md │ │ │ ├── external-redis │ │ │ │ ├── external-omnibus-redis.md │ │ │ │ └── index.md │ │ │ ├── geo │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── persistent-volumes │ │ │ │ └── index.md │ │ │ └── ubi │ │ │ │ └── index.md │ │ ├── architecture │ │ │ ├── architecture.md │ │ │ ├── backup-restore.md │ │ │ ├── decisions.md │ │ │ ├── goals.md │ │ │ ├── index.md │ │ │ └── resource-usage.md │ │ ├── backup-restore │ │ │ ├── backup.md │ │ │ ├── index.md │ │ │ └── restore.md │ │ ├── charts │ │ │ ├── gitlab │ │ │ │ ├── gitaly │ │ │ │ │ └── index.md │ │ │ │ ├── gitlab-exporter │ │ │ │ │ └── index.md │ │ │ │ ├── gitlab-grafana │ │ │ │ │ └── index.md │ │ │ │ ├── gitlab-runner │ │ │ │ │ └── index.md │ │ │ │ ├── gitlab-shell │ │ │ │ │ └── index.md │ │ │ │ ├── index.md │ │ │ │ ├── migrations │ │ │ │ │ └── index.md │ │ │ │ ├── sidekiq │ │ │ │ │ └── index.md │ │ │ │ ├── unicorn │ │ │ │ │ └── index.md │ │ │ │ └── webservice │ │ │ │ │ └── index.md │ │ │ ├── globals.md │ │ │ ├── index.md │ │ │ ├── minio │ │ │ │ └── index.md │ │ │ ├── nginx │ │ │ │ └── index.md │ │ │ ├── redis-ha │ │ │ │ └── index.md │ │ │ ├── redis │ │ │ │ └── index.md │ │ │ ├── registry │ │ │ │ └── index.md │ │ │ └── shared-secrets │ │ │ │ └── index.md │ │ ├── development │ │ │ ├── changelog-manager.md │ │ │ ├── changelog.md │ │ │ ├── chaoskube │ │ │ │ └── index.md │ │ │ ├── checkconfig.md │ │ │ ├── deploy.md │ │ │ ├── deprecations.md │ │ │ ├── gitlab-qa │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── kind │ │ │ │ └── index.md │ │ │ ├── minikube │ │ │ │ └── index.md │ │ │ ├── preparation │ │ │ │ └── index.md │ │ │ ├── release.md │ │ │ ├── rspec.md │ │ │ └── validation.md │ │ ├── example-config.yaml │ │ ├── images │ │ │ ├── .gitkeep │ │ │ └── charts.png │ │ ├── index.md │ │ ├── installation │ │ │ ├── cloud │ │ │ │ ├── eks.md │ │ │ │ ├── gke.md │ │ │ │ ├── index.md │ │ │ │ └── openshift.md │ │ │ ├── command-line-options.md │ │ │ ├── crdctl.md │ │ │ ├── deployment.md │ │ │ ├── examples │ │ │ │ └── rbac-config.yaml │ │ │ ├── index.md │ │ │ ├── migration │ │ │ │ ├── helm.md │ │ │ │ ├── index.md │ │ │ │ └── minio.md │ │ │ ├── operator.md │ │ │ ├── rbac.md │ │ │ ├── secrets.md │ │ │ ├── storage.md │ │ │ ├── tls.md │ │ │ ├── tools.md │ │ │ ├── upgrade.md │ │ │ └── version_mappings.md │ │ ├── quickstart │ │ │ └── index.md │ │ ├── releases │ │ │ ├── 1_0.md │ │ │ ├── 2_0.md │ │ │ ├── 3_0.md │ │ │ ├── 4_0.md │ │ │ ├── alpha.md │ │ │ ├── beta.md │ │ │ └── index.md │ │ └── troubleshooting │ │ │ └── index.md │ ├── examples │ │ ├── custom-images │ │ │ └── values.yaml │ │ ├── database │ │ │ ├── values-loadbalancing-discover.yaml │ │ │ ├── values-loadbalancing.yaml │ │ │ ├── values-per-service-loadbalancing.yaml │ │ │ └── values-per-service.yaml │ │ ├── eks_loadbalancer_annotations.yml │ │ ├── geo │ │ │ ├── primary.yaml │ │ │ └── secondary.yaml │ │ ├── gitaly │ │ │ ├── values-multiple-external.yaml │ │ │ ├── values-multiple-internal.yaml │ │ │ └── values-multiple-mixed.yaml │ │ ├── i2p-values-minimal.yaml │ │ ├── index.md │ │ ├── kind │ │ │ ├── kind-no-ssl.yaml │ │ │ ├── kind-port-forward.yaml │ │ │ ├── kind-ssl.yaml │ │ │ ├── values-no-ssl.yaml │ │ │ ├── values-port-forward.yaml │ │ │ └── values-ssl.yaml │ │ ├── objectstorage │ │ │ ├── rails.azure.yaml │ │ │ ├── rails.gcs.yaml │ │ │ ├── rails.minio.yaml │ │ │ ├── rails.s3.yaml │ │ │ ├── registry.azure.yaml │ │ │ ├── registry.gcs.yaml │ │ │ ├── registry.minio.yaml │ │ │ └── registry.s3.yaml │ │ ├── openshift │ │ │ ├── gitlab-shell-external-ip-alt-port.yaml │ │ │ ├── gitlab-shell-multiple-external-ip.yaml │ │ │ └── gitlab-shell-single-external-ip.yaml │ │ ├── redis │ │ │ ├── cache.yaml │ │ │ ├── multiple.yaml │ │ │ └── sentinels.yaml │ │ ├── storage │ │ │ ├── eks_pv_example.yml │ │ │ ├── eks_storage_class.yml │ │ │ ├── gitaly_persistent_volume_claim.yml │ │ │ ├── gke_pv_example.yml │ │ │ ├── gke_storage_class.yml │ │ │ ├── helm_options.yml │ │ │ └── use_manual_volumes.yml │ │ ├── tracing │ │ │ └── jaeger.yaml │ │ ├── ubi │ │ │ └── values.yaml │ │ ├── values-base.yaml │ │ ├── values-certificates.yaml │ │ ├── values-external-database.yaml │ │ ├── values-external-objectstorage.yaml │ │ ├── values-gke-minimum.yaml │ │ ├── values-incoming-email.yaml │ │ ├── values-minikube-minimum.yaml │ │ ├── values-minikube.yaml │ │ ├── values-service-desk-email.yaml │ │ └── values-traefik-ingress.yaml │ ├── requirements.yaml │ ├── scripts │ │ ├── chaoskube-resources │ │ │ └── values.yaml │ │ ├── ci_feature_spec_setup │ │ ├── ci_integration_spec_setup │ │ ├── common.sh │ │ ├── crdctl │ │ ├── database-upgrade │ │ ├── deploy_chaoskube.sh │ │ ├── eks_bootstrap_script │ │ ├── gitaly_statefulset_certificates.sh │ │ ├── gke_bootstrap_script.sh │ │ ├── lib │ │ │ ├── version.rb │ │ │ ├── version_fetcher.rb │ │ │ └── version_mapping.rb │ │ ├── manage_version.rb │ │ ├── support │ │ │ ├── changelog │ │ │ │ └── Dangerfile │ │ │ ├── metadata │ │ │ │ └── Dangerfile │ │ │ └── reviewers │ │ │ │ └── Dangerfile │ │ ├── tag_auto_deploy.rb │ │ └── wait_for_images.sh │ ├── spec │ │ ├── configuration │ │ │ ├── annotations_spec.rb │ │ │ ├── database_spec.rb │ │ │ ├── gitaly_spec.rb │ │ │ ├── mailroom_spec.rb │ │ │ ├── redis_spec.rb │ │ │ └── sidekiq_spec.rb │ │ ├── features │ │ │ └── backups_spec.rb │ │ ├── gitlab_test_helper.rb │ │ ├── helm_template_helper.rb │ │ ├── integration │ │ │ ├── check_config_spec.rb │ │ │ └── examples_spec.rb │ │ ├── scripts │ │ │ ├── lib │ │ │ │ └── version_fetcher_spec.rb │ │ │ └── manage_version_spec.rb │ │ └── spec_helper.rb │ ├── support │ │ └── crd.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _application.tpl │ │ ├── _boolean.tpl │ │ ├── _certificates.tpl │ │ ├── _checkConfig.tpl │ │ ├── _deprecations.tpl │ │ ├── _geo.tpl │ │ ├── _gitaly.tpl │ │ ├── _helpers.tpl │ │ ├── _migrations.tpl │ │ ├── _minio.tpl │ │ ├── _rails.tpl │ │ ├── _redis.tpl │ │ ├── _registry.tpl │ │ ├── _runcheck.tpl │ │ ├── _runner.tpl │ │ ├── _shell.tpl │ │ ├── _workhorse.tpl │ │ ├── application.yaml │ │ ├── cert-manager-crd.yml │ │ ├── chart-info.yaml │ │ ├── initdb-configmap.yaml │ │ └── upgrade_check_hook.yaml │ └── values.yaml ├── harbor │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── cert │ │ ├── tls.crt │ │ └── tls.key │ ├── conf │ │ ├── notary-server.json │ │ └── notary-signer.json │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── chartmuseum │ │ │ ├── chartmuseum-cm.yaml │ │ │ ├── chartmuseum-dpl.yaml │ │ │ ├── chartmuseum-pvc.yaml │ │ │ ├── chartmuseum-secret.yaml │ │ │ ├── chartmuseum-svc.yaml │ │ │ └── chartmuseum-tls.yaml │ │ ├── core │ │ │ ├── core-cm.yaml │ │ │ ├── core-dpl.yaml │ │ │ ├── core-pre-upgrade-job.yaml │ │ │ ├── core-secret.yaml │ │ │ ├── core-svc.yaml │ │ │ └── core-tls.yaml │ │ ├── database │ │ │ ├── database-secret.yaml │ │ │ ├── database-ss.yaml │ │ │ └── database-svc.yaml │ │ ├── exporter │ │ │ ├── exporter-cm-env.yaml │ │ │ ├── exporter-dpl.yaml │ │ │ ├── exporter-secret.yaml │ │ │ └── exporter-svc.yaml │ │ ├── ingress │ │ │ ├── ingress.yaml │ │ │ └── secret.yaml │ │ ├── internal │ │ │ └── auto-tls.yaml │ │ ├── jobservice │ │ │ ├── jobservice-cm-env.yaml │ │ │ ├── jobservice-cm.yaml │ │ │ ├── jobservice-dpl.yaml │ │ │ ├── jobservice-pvc.yaml │ │ │ ├── jobservice-secrets.yaml │ │ │ ├── jobservice-svc.yaml │ │ │ └── jobservice-tls.yaml │ │ ├── metrics │ │ │ └── metrics-svcmon.yaml │ │ ├── nginx │ │ │ ├── configmap-http.yaml │ │ │ ├── configmap-https.yaml │ │ │ ├── deployment.yaml │ │ │ ├── secret.yaml │ │ │ └── service.yaml │ │ ├── notary │ │ │ ├── notary-secret.yaml │ │ │ ├── notary-server.yaml │ │ │ ├── notary-signer.yaml │ │ │ └── notary-svc.yaml │ │ ├── portal │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ └── tls.yaml │ │ ├── redis │ │ │ ├── service.yaml │ │ │ └── statefulset.yaml │ │ ├── registry │ │ │ ├── registry-cm.yaml │ │ │ ├── registry-dpl.yaml │ │ │ ├── registry-pvc.yaml │ │ │ ├── registry-secret.yaml │ │ │ ├── registry-svc.yaml │ │ │ ├── registry-tls.yaml │ │ │ ├── registryctl-cm.yaml │ │ │ └── registryctl-secret.yaml │ │ └── trivy │ │ │ ├── trivy-secret.yaml │ │ │ ├── trivy-sts.yaml │ │ │ ├── trivy-svc.yaml │ │ │ └── trivy-tls.yaml │ └── values.yaml ├── ks-installer │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── installer.kubesphere.io_clusterconfigurations.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── clusterconfiguration.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── memcached │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── pdb.yaml │ │ ├── servicemonitor.yaml │ │ ├── statefulset.yaml │ │ └── svc.yaml │ └── values.yaml ├── minio │ ├── .helmignore │ ├── Chart.yaml │ ├── 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 │ │ ├── post-install-prometheus-metrics-job.yaml │ │ ├── post-install-prometheus-metrics-role.yaml │ │ ├── post-install-prometheus-metrics-rolebinding.yaml │ │ ├── post-install-prometheus-metrics-serviceaccount.yaml │ │ ├── pvc.yaml │ │ ├── secrets.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulset.yaml │ └── values.yaml ├── mysql-exporter │ ├── .helmignore │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── secret-env.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── servicemonitor.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 ├── nfs-client-provisioner │ ├── .helmignore │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── persistentvolume.yaml │ │ ├── persistentvolumeclaim.yaml │ │ ├── podsecuritypolicy.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── serviceaccount.yaml │ │ └── storageclass.yaml │ └── values.yaml ├── nginx │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cm-extra-configs.yaml │ │ ├── cm-main-config.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ ├── values.schema.json │ └── values.yaml ├── pvc-autoresizer │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ └── controller │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ └── serviceaccount.yaml │ └── values.yaml ├── readme.md ├── redis-exporter │ ├── .helmignore │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── podsecuritypolicy.yaml │ │ ├── prometheusrule.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ └── values.yaml ├── sonarqube │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── config.yaml │ │ ├── copy-plugins.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── install-plugins.yaml │ │ ├── postgres-config.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ ├── sonarqube-test.yaml │ │ │ └── test-config.yaml │ └── values.yaml ├── storageclass-accessor │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── accessor.yaml │ │ ├── deployment.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ └── validatingwebhook.yaml │ └── values.yaml └── tomcat │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── appsrv-svc.yaml │ └── appsrv.yaml │ └── values.yaml ├── stable ├── README.md ├── antrea │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── conf │ │ ├── antrea-agent.conf │ │ ├── antrea-cni.conflist │ │ └── antrea-controller.conf │ ├── crds │ │ ├── antreaagentinfo.yaml │ │ ├── antreacontrollerinfo.yaml │ │ ├── clustergroup.yaml │ │ ├── clusternetworkpolicy.yaml │ │ ├── egress.yaml │ │ ├── externalentity.yaml │ │ ├── externalippool.yaml │ │ ├── externalnode.yaml │ │ ├── ippool.yaml │ │ ├── networkpolicy.yaml │ │ ├── supportbundlecollection.yaml │ │ ├── tier.yaml │ │ ├── traceflow.yaml │ │ └── trafficcontrol.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── agent │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── daemonset.yaml │ │ │ ├── ipsec-secret.yaml │ │ │ ├── secret.yaml │ │ │ └── serviceaccount.yaml │ │ ├── antctl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── secret.yaml │ │ │ └── serviceaccount.yaml │ │ ├── cluster-identity-reader │ │ │ └── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── controller │ │ │ ├── apiservices.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ ├── crds-rbac │ │ │ └── clusterroles.yaml │ │ ├── crds │ │ │ └── group.yaml │ │ ├── simulator │ │ │ ├── configmap.yaml │ │ │ └── statefulset.yaml │ │ ├── webhooks │ │ │ ├── mutating │ │ │ │ ├── crdmutator.yaml │ │ │ │ └── labelsmutator.yaml │ │ │ └── validating │ │ │ │ └── crdvalidator.yaml │ │ └── whereabouts │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── secret.yaml │ │ │ └── serviceaccount.yaml │ └── values.yaml ├── ccm-qingcloud │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── config.yaml │ │ └── deployment.yaml │ └── values.yaml ├── chaos-mesh │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ ├── chaos-mesh.org_awschaos.yaml │ │ ├── chaos-mesh.org_azurechaos.yaml │ │ ├── chaos-mesh.org_blockchaos.yaml │ │ ├── chaos-mesh.org_dnschaos.yaml │ │ ├── chaos-mesh.org_gcpchaos.yaml │ │ ├── chaos-mesh.org_httpchaos.yaml │ │ ├── chaos-mesh.org_iochaos.yaml │ │ ├── chaos-mesh.org_jvmchaos.yaml │ │ ├── chaos-mesh.org_kernelchaos.yaml │ │ ├── chaos-mesh.org_networkchaos.yaml │ │ ├── chaos-mesh.org_physicalmachinechaos.yaml │ │ ├── chaos-mesh.org_physicalmachines.yaml │ │ ├── chaos-mesh.org_podchaos.yaml │ │ ├── chaos-mesh.org_podhttpchaos.yaml │ │ ├── chaos-mesh.org_podiochaos.yaml │ │ ├── chaos-mesh.org_podnetworkchaos.yaml │ │ ├── chaos-mesh.org_remoteclusters.yaml │ │ ├── chaos-mesh.org_schedules.yaml │ │ ├── chaos-mesh.org_statuschecks.yaml │ │ ├── chaos-mesh.org_stresschaos.yaml │ │ ├── chaos-mesh.org_timechaos.yaml │ │ ├── chaos-mesh.org_workflownodes.yaml │ │ └── chaos-mesh.org_workflows.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _certs.tpl │ │ ├── _helpers.tpl │ │ ├── cert-manager-certs.yaml │ │ ├── chaos-daemon-daemonset.yaml │ │ ├── chaos-daemon-rbac.yaml │ │ ├── chaos-daemon-service.yaml │ │ ├── chaos-dashboard-deployment.yaml │ │ ├── chaos-dashboard-pvc.yaml │ │ ├── chaos-dashboard-rbac.yaml │ │ ├── controller-manager-deployment.yaml │ │ ├── controller-manager-rbac.yaml │ │ ├── controller-manager-service.yaml │ │ ├── dns-configmap.yaml │ │ ├── dns-deployment.yaml │ │ ├── dns-rbac.yaml │ │ ├── dns-service.yaml │ │ ├── ingress.yaml │ │ ├── mutating-admission-webhooks.yaml │ │ ├── prometheus-configmap.yaml │ │ ├── prometheus-deployment.yaml │ │ ├── prometheus-rbac.yaml │ │ ├── prometheus-service.yaml │ │ ├── secrets-configuration.yaml │ │ └── validating-admission-webhooks.yaml │ └── values.yaml ├── cni-hostnic │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── crd.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── config.yaml │ │ ├── deployment.yaml │ │ └── rbac.yaml │ └── values.yaml ├── crane │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ ├── analysis.crane.io_analytics.yaml │ │ ├── analysis.crane.io_recommendations.yaml │ │ ├── autoscaling.crane.io_effectivehorizontalpodautoscalers.yaml │ │ ├── autoscaling.crane.io_effectiveverticalpodautoscalers.yaml │ │ ├── autoscaling.crane.io_substitutes.yaml │ │ └── prediction.crane.io_timeseriespredictions.yaml │ ├── keys │ │ ├── ca.crt │ │ ├── ca.key │ │ ├── ca.srl │ │ ├── tls.crt │ │ └── tls.key │ ├── templates │ │ ├── _helpers.tpl │ │ ├── controller-configmap.yaml │ │ ├── controller-deployment.yaml │ │ ├── controller-rbac.yaml │ │ ├── controller-serviceaccount.yaml │ │ ├── craned-deployment.yaml │ │ ├── craned-rbac.yaml │ │ ├── craned-service.yaml │ │ ├── craned-serviceaccount.yaml │ │ ├── scheduler-configmap.yaml │ │ ├── scheduler-deployment.yaml │ │ ├── scheduler-prometheus-rules.yaml │ │ ├── scheduler-rbac.yaml │ │ └── scheduler-serviceaccount.yaml │ └── values.yaml ├── csi-qingcloud │ ├── .helmignore │ ├── CHANGELOG │ │ └── CHANGELOG-1.3.md │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── config.yaml │ │ ├── controller-deploy.yaml │ │ ├── controller-rbac.yaml │ │ ├── node-ds.yaml │ │ ├── node-rbac.yaml │ │ ├── qingcloud-driver.yaml │ │ ├── sc.yaml │ │ └── vpa.yaml │ └── values.yaml ├── curvefs-csi │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── controller.yaml │ │ ├── driver.yaml │ │ ├── node.yaml │ │ ├── rbac.yaml │ │ └── storageclass.yaml │ └── values.yaml ├── databend-meta │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── poddisruptionbudget.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulset.yaml │ └── values.yaml ├── databend-query │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── common-1.17.1.tgz │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulset.yaml │ └── values.yaml ├── easegress │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── ClusterRole.yaml │ │ ├── ClusterRoleBinding.yaml │ │ ├── ConfigMap.yaml │ │ ├── Deployment.yaml │ │ ├── PersistentVolume.yaml │ │ ├── Service.yaml │ │ ├── ServiceAccount.yaml │ │ └── StatefulSet.yaml │ └── values.yaml ├── edgemesh │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── agent │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── 01-serviceaccount.yaml │ │ │ │ ├── 02-clusterrole.yaml │ │ │ │ ├── 03-clusterrolebinding.yaml │ │ │ │ ├── 04-configmap.yaml │ │ │ │ └── 05-daemonset.yaml │ │ │ └── values.yaml │ │ └── server │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── 01-serviceaccount.yaml │ │ │ ├── 02-clusterrole.yaml │ │ │ ├── 03-clusterrolebinding.yaml │ │ │ ├── 04-configmap.yaml │ │ │ └── 05-deployment.yaml │ │ │ └── values.yaml │ ├── crds │ │ └── istio │ │ │ ├── crd-destinationrule.yaml │ │ │ ├── crd-gateway.yaml │ │ │ └── crd-virtualservice.yaml │ ├── templates │ │ └── NOTES.txt │ └── values.yaml ├── flow-aggregator │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── conf │ │ └── flow-aggregator.conf │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── id-reader-clusterrole.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secrets.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── fpga-operator │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── node-feature-discovery │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── manifests │ │ │ └── nodefeaturerule-crd.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── cert-manager-certs.yaml │ │ │ ├── cert-manager-issuer.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── master.yaml │ │ │ ├── nfd-worker-conf.yaml │ │ │ ├── nodefeaturerule-crd.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── topologyupdater-crds.yaml │ │ │ ├── topologyupdater.yaml │ │ │ └── worker.yaml │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── csi-driver.yaml │ │ ├── daemon-set.yaml │ │ ├── deployment.yaml │ │ ├── mutating-webhook-configuration.yaml │ │ ├── secret.yaml │ │ ├── service-account.yaml │ │ ├── service.yaml │ │ └── tests │ │ │ └── vadd.yaml │ ├── values.schema.json │ └── values.yaml ├── iomesh │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── blockdevice-monitor │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── crds │ │ │ │ └── iomesh.com_blockdevicemonitors.yaml │ │ │ ├── rules │ │ │ │ └── iomesh │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── blockdevicemonitor_deployment.yaml │ │ │ │ ├── blockdevicemonitor_podmonitor.yaml │ │ │ │ ├── prober_daemonset.yaml │ │ │ │ ├── prober_podmonitor.yaml │ │ │ │ ├── prometheus_rules.yaml │ │ │ │ ├── role.yaml │ │ │ │ └── role_binding.yaml │ │ │ └── values.yaml │ │ ├── csi-driver │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _sidecar.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── controller.yaml │ │ │ │ ├── csidriver.yaml │ │ │ │ ├── node.yaml │ │ │ │ ├── openshiftscc.yaml │ │ │ │ ├── prepare-csi.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── snapshotter-controller.yaml │ │ │ │ └── storgeclass.yaml │ │ │ └── values.yaml │ │ ├── deck-plugin-iomesh │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ └── daemonset.yaml │ │ │ └── values.yaml │ │ ├── deck │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── crds │ │ │ │ ├── deck.smartx.com_sessions.yaml │ │ │ │ └── deck.smartx.com_users.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── impersonate.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── hostpath-provisioner │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── storageclass.yaml │ │ │ └── values.yaml │ │ ├── iomesh-localpv-manager │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── charts │ │ │ │ └── openebs-ndm │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── crds │ │ │ │ │ ├── blockdevice.yaml │ │ │ │ │ └── blockdeviceclaim.yaml │ │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── cluster-exporter-service.yaml │ │ │ │ │ ├── cluster-exporter.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── node-exporter-service.yaml │ │ │ │ │ ├── node-exporter.yaml │ │ │ │ │ └── rbac.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _sidecar.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── csidriver.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── storgeclass.yaml │ │ │ └── values.yaml │ │ ├── openebs-ndm │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── crds │ │ │ │ ├── blockdevice.yaml │ │ │ │ └── blockdeviceclaim.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── cluster-exporter-service.yaml │ │ │ │ ├── cluster-exporter.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── node-exporter-service.yaml │ │ │ │ ├── node-exporter.yaml │ │ │ │ └── rbac.yaml │ │ │ └── values.yaml │ │ └── zookeeper-operator │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── crds │ │ │ └── zookeeper.pravega.io_zookeeperclusters_crd.yaml │ │ │ ├── templates │ │ │ ├── _crd_openapiv3schema.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── operator.yaml │ │ │ ├── post-install-upgrade-hooks.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ └── service_account.yaml │ │ │ └── values.yaml │ ├── crds │ │ └── iomesh.com_iomeshclusters.yaml │ ├── rules │ │ └── iomesh │ ├── templates │ │ ├── _helpers.tpl │ │ ├── apiserver-apiservice.yaml │ │ ├── apiserver-service.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── iomeshcluster.yaml │ │ ├── kube-state-metrics.yaml │ │ ├── limitrange.yaml │ │ ├── monitor.yaml │ │ ├── openshift │ │ │ └── scc.yaml │ │ ├── operator-leader-election.yaml │ │ ├── operator.yaml │ │ ├── post-delete-hook.yaml │ │ ├── prometheus_rules.yaml │ │ ├── serviceaccount.yaml │ │ ├── version-map.yaml │ │ ├── webhook-service.yaml │ │ ├── webhook.yaml │ │ └── zookeeper.yaml │ └── values.yaml ├── jh │ ├── 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 │ │ │ ├── .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 │ │ │ │ │ │ ├── statefulset-with-praefect.yml │ │ │ │ │ │ └── statefulset.yml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitlab-exporter │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.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.yaml │ │ │ │ │ │ └── serviceaccount.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 │ │ │ │ │ ├── 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 │ │ │ │ │ └── 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 │ │ │ │ │ │ └── statefulset.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── sidekiq │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pdb.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 │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test-runner.yaml │ │ │ │ │ │ └── tests.yaml │ │ │ │ │ ├── values.schema.json │ │ │ │ │ └── values.yaml │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ │ ├── _artifacts.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 │ │ │ │ ├── _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 │ │ │ ├── img │ │ │ │ ├── redis-cluster-topology.png │ │ │ │ └── redis-topology.png │ │ │ ├── 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 │ │ │ └── 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 ├── juicefs │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _certs.tpl │ │ ├── _helpers.tpl │ │ ├── controller.yaml │ │ ├── csidriver.yaml │ │ ├── daemonset.yaml │ │ ├── mutatingwebhook.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── storageclass.yaml │ └── values.yaml ├── meshery │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── meshery-app-mesh │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── meshery-broker │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ └── meshery_v1alpha1_broker_cr.tpl │ │ │ └── values.yaml │ │ ├── meshery-cilium │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── meshery-consul │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── meshery-cpx │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── meshery-istio │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── meshery-kuma │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── meshery-linkerd │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── meshery-meshsync │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ └── meshery_v1alpha1_broker_cr.tpl │ │ │ └── values.yaml │ │ ├── meshery-nginx-sm │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── meshery-nsm │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── meshery-operator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── meshery-osm │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── meshery-perf │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ └── meshery-traefik-mesh │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ ├── crds │ │ └── crds.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── gateway.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── tests │ │ │ └── test-connection.yaml │ │ └── virtualservice.yaml │ └── values.yaml ├── nocalhost │ ├── 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 ├── openelb │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ ├── bgpconfs.yaml │ │ ├── bgppeers.yaml │ │ └── eips.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helper.tpl │ │ ├── admission-webhooks │ │ │ ├── job-patch │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── job-createSecret.yaml │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ ├── mutating-webhook.yaml │ │ │ └── validating-webhook.yaml │ │ ├── clusterrole.yaml │ │ ├── manager-clusterrolebinding.yaml │ │ ├── manager-deployment.yaml │ │ ├── manager-role.yaml │ │ ├── manager-rolebinding.yaml │ │ ├── manager-service.yaml │ │ └── manager-serviceaccount.yaml │ └── values.yaml ├── pulsar │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── 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 ├── stonedb-chart │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ └── statefulset.yaml │ └── values.yaml ├── theia │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── conf │ │ └── theia-manager.conf │ ├── crds │ │ ├── clickhouse-operator-install-bundle.yaml │ │ ├── network-policy-recommendation-crd.yaml │ │ └── spark-operator-crds.yaml │ ├── provisioning │ │ ├── dashboards │ │ │ ├── dashboard_provider.yaml │ │ │ ├── flow_records_dashboard.json │ │ │ ├── homepage.json │ │ │ ├── networkpolicy_dashboard.json │ │ │ ├── node_to_node_dashboard.json │ │ │ ├── pod_to_external_dashboard.json │ │ │ ├── pod_to_pod_dashboard.json │ │ │ └── pod_to_service_dashboard.json │ │ └── datasources │ │ │ ├── create_table.sh │ │ │ ├── datasource_provider.yaml │ │ │ ├── init.sh │ │ │ └── migrators │ │ │ ├── 000001_0-1-0.down.sql │ │ │ ├── 000001_0-1-0.up.sql │ │ │ ├── 000002_0-2-0.down.sql │ │ │ ├── 000002_0-2-0.up.sql │ │ │ └── downgrade │ │ │ └── 0-3-0_0-2-0.sql │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clickhouse │ │ │ ├── clickhouseinstallation.yaml │ │ │ ├── configmap.yaml │ │ │ ├── local-persistentvolume.yaml │ │ │ ├── nfs-persistentvolume.yaml │ │ │ ├── secret.yaml │ │ │ ├── storageclass.yaml │ │ │ └── zookeeper │ │ │ │ ├── headless-service.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── statefulset.yaml │ │ ├── grafana │ │ │ ├── dashboard-configmap.yaml │ │ │ ├── dashboard-provider-configmap.yaml │ │ │ ├── datasource-provider-configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hostpath-persistentvolume.yaml │ │ │ ├── local-persistentvolume.yaml │ │ │ ├── nfs-persistentvolume.yaml │ │ │ ├── persistentvolumeclaim.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── storageclass.yaml │ │ ├── spark-operator │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── spark-role.yaml │ │ │ ├── spark-rolebinding.yaml │ │ │ └── spark-serviceaccount.yaml │ │ ├── theia-cli │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── secret.yaml │ │ │ └── serviceaccount.yaml │ │ └── theia-manager │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ └── values.yaml ├── vsphere-cpi │ ├── .helmignore │ ├── 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 │ │ ├── daemonset.yaml │ │ ├── deployment.yaml │ │ ├── extra-list.yaml │ │ ├── rbac.yaml │ │ ├── secret.yaml │ │ └── service-account.yaml │ ├── values.yaml │ └── vsphere-cpi-0.0.1.tgz ├── vsphere-csi-driver │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helper.tpl │ │ ├── controller.yaml │ │ ├── node.yaml │ │ ├── rbac.yaml │ │ ├── serviceaccount.yaml │ │ └── storageclass.yaml │ └── values.yaml ├── vsphere-csi │ ├── .helmignore │ ├── 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 │ │ └── vsphere-cpi │ │ │ ├── .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 │ │ │ ├── daemonset.yaml │ │ │ ├── deployment.yaml │ │ │ ├── extra-list.yaml │ │ │ ├── rbac.yaml │ │ │ ├── secret.yaml │ │ │ └── service-account.yaml │ │ │ ├── values.yaml │ │ │ └── vsphere-cpi-0.0.1.tgz │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── controller │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── rbac.yaml │ │ │ ├── service-account.yaml │ │ │ └── service.yaml │ │ ├── csi-driver.yaml │ │ ├── extra-list.yaml │ │ ├── metrics │ │ │ └── servicemonitor.yaml │ │ ├── node │ │ │ ├── daemonset-linux.yaml │ │ │ ├── daemonset-win.yaml │ │ │ ├── rbac.yaml │ │ │ └── service-account.yaml │ │ ├── secret.yaml │ │ ├── snapshot-validation-webhook │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ └── validatingwebhookconfiguration.yaml │ │ ├── storageclass.yaml │ │ └── webhook │ │ │ ├── ValidatingWebhookConfiguration.yaml │ │ │ ├── deployment.yaml │ │ │ ├── rbac.yaml │ │ │ ├── service-account.yaml │ │ │ └── service.yaml │ └── values.yaml └── ys1000 │ ├── Chart.yaml │ ├── README.md │ ├── crds │ └── crds.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── cluster-role-bindings.yaml │ ├── cluster-roles.yaml │ ├── hooks │ │ ├── helm-save.yaml │ │ └── self-restore.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── local-cluster.yaml │ ├── mig-users.yaml │ ├── migconfig.yaml │ ├── migstorage.yaml │ ├── operator-deployment.yaml │ ├── role-bindings.yaml │ ├── roles.yaml │ ├── s3-configmap.yaml │ ├── s3-secret.yaml │ ├── self-backup-plan.yaml │ ├── self-backup-policy.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml │ └── values.yaml └── test ├── antrea ├── .helmignore ├── Chart.yaml ├── README.md ├── conf │ ├── antrea-agent.conf │ ├── antrea-cni.conflist │ └── antrea-controller.conf ├── crds │ ├── antreaagentinfo.yaml │ ├── antreacontrollerinfo.yaml │ ├── clustergroup.yaml │ ├── clusternetworkpolicy.yaml │ ├── egress.yaml │ ├── externalentity.yaml │ ├── externalippool.yaml │ ├── externalnode.yaml │ ├── ippool.yaml │ ├── networkpolicy.yaml │ ├── supportbundlecollection.yaml │ ├── tier.yaml │ ├── traceflow.yaml │ └── trafficcontrol.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── agent │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── daemonset.yaml │ │ ├── ipsec-secret.yaml │ │ ├── secret.yaml │ │ └── serviceaccount.yaml │ ├── antctl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── secret.yaml │ │ └── serviceaccount.yaml │ ├── cluster-identity-reader │ │ └── clusterrolebinding.yaml │ ├── configmap.yaml │ ├── controller │ │ ├── apiservices.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ ├── crds-rbac │ │ └── clusterroles.yaml │ ├── crds │ │ └── group.yaml │ ├── simulator │ │ ├── configmap.yaml │ │ └── statefulset.yaml │ ├── webhooks │ │ ├── mutating │ │ │ ├── crdmutator.yaml │ │ │ └── labelsmutator.yaml │ │ └── validating │ │ │ └── crdvalidator.yaml │ └── whereabouts │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── secret.yaml │ │ └── serviceaccount.yaml └── values.yaml ├── apisix ├── .helmignore ├── Chart.yaml ├── LICENSE ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── service-gateway.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── aws-ebs-csi-driver ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── csidriver.yaml │ ├── daemonset.yaml │ ├── deployment.yaml │ ├── rbac.yaml │ ├── serviceaccount.yaml │ └── statefulset.yaml └── values.yaml ├── aws-efs-csi-driver ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── csidriver.yaml │ └── daemonset.yaml └── values.yaml ├── aws-fsx-csi-driver ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── _helpers.tpl │ ├── controller.yaml │ ├── csidriver.yaml │ ├── node.yaml │ └── serviceaccount.yaml └── values.yaml ├── biz-engine ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml └── values.yaml ├── ccm-qingcloud ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── _helpers.tpl │ ├── config.yaml │ └── deployment.yaml └── values.yaml ├── cni-hostnic ├── .helmignore ├── Chart.yaml ├── README.md ├── crds │ └── crd.yaml ├── templates │ ├── _helpers.tpl │ ├── config.yaml │ ├── deployment.yaml │ └── rbac.yaml └── values.yaml ├── csi-neonsan ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── controller-deploy.yaml │ ├── controller-rbac.yaml │ ├── csi-driver.yaml │ ├── node-ds.yaml │ ├── node-rbac.yaml │ ├── sc.yaml │ └── snapclass.yaml └── values.yaml ├── csi-qingcloud ├── .helmignore ├── CHANGELOG │ └── CHANGELOG-1.3.md ├── Chart.yaml ├── OWNERS ├── README.md ├── templates │ ├── _helpers.tpl │ ├── config.yaml │ ├── controller-deploy.yaml │ ├── controller-rbac.yaml │ ├── node-ds.yaml │ ├── node-rbac.yaml │ ├── qingcloud-driver.yaml │ ├── sc.yaml │ └── vpa.yaml └── values.yaml ├── etcd ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── cm.yaml │ ├── service.yaml │ ├── statefulset.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── flow-aggregator ├── .helmignore ├── Chart.yaml ├── README.md ├── conf │ └── flow-aggregator.conf ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── id-reader-clusterrole.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── secrets.yaml │ ├── service.yaml │ └── serviceaccount.yaml └── values.yaml ├── hertzbeat ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── collector │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ └── hpa.yaml │ ├── database │ │ ├── configmap.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ └── statefulset.yaml │ ├── manager │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── service-cluster.yaml │ │ └── service-expose.yaml │ └── tsdb │ │ ├── configmap.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ └── statefulset.yaml └── values.yaml ├── ks-installer ├── .helmignore ├── Chart.yaml ├── README.md ├── crds │ └── installer.kubesphere.io_clusterconfigurations.yaml ├── templates │ ├── NOTES.txt │ ├── clusterconfiguration.yaml │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── deployment.yaml │ └── serviceaccount.yaml └── values.yaml ├── metersphere ├── Chart.yaml ├── README.md ├── templates │ ├── 01-config-map │ │ ├── metersphere-config.yaml │ │ └── mysql-config.yaml │ ├── 02-pvc │ │ ├── log.yaml │ │ └── mysql.yaml │ ├── 03-modules │ │ ├── metersphere-data-streaming.yaml │ │ ├── metersphere-server.yaml │ │ └── mysql.yaml │ ├── 04-ingress.yaml │ └── NOTES.txt └── values.yaml ├── minio-gateway ├── .helmignore ├── 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 ├── ci │ ├── values-gateway.yaml │ └── values-production.yaml ├── example-minio-gateway-values.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── distributed │ │ ├── headless-svc.yaml │ │ ├── pdb.yaml │ │ └── statefulset.yaml │ ├── extra-list.yaml │ ├── gateway │ │ └── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy.yaml │ ├── pvc.yaml │ ├── secrets.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ ├── standalone │ │ └── deployment.yaml │ └── tls-secrets.yaml └── values.yaml ├── mongodb ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── cm.yaml │ ├── service.yaml │ └── statefulset.yaml ├── values.schema.json └── values.yaml ├── nacos ├── .helmignore ├── Chart.yaml ├── README.md ├── charts │ └── mysql │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── mysql-deployment.yaml │ │ ├── mysql-pvc.yaml │ │ ├── mysql-service.yaml │ │ └── storageclass.yaml │ │ └── values.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── service.yaml │ └── storageclass.yaml └── values.yaml ├── online-boutique ├── .helmignore ├── Chart.yaml ├── Readme.md ├── demo.jpg ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── ad-v1.yaml │ ├── ad.yaml │ ├── application.yaml │ ├── cart-v1.yaml │ ├── cart.yaml │ ├── checkout-v1.yaml │ ├── checkout.yaml │ ├── currency-v1.yaml │ ├── currency.yaml │ ├── email-v1.yaml │ ├── email.yaml │ ├── frontend-v1.yaml │ ├── frontend.yaml │ ├── loadgenerator.yaml │ ├── payment-v1.yaml │ ├── payment.yaml │ ├── productcatalog-v1.yaml │ ├── productcatalog.yaml │ ├── recommendation-v1.yaml │ ├── recommendation.yaml │ ├── redis-v1.yaml │ ├── redis.yaml │ ├── shipping-v1.yaml │ └── shipping.yaml └── values.yaml ├── postgresql ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── statefulset.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── rabbitmq ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── cm.yaml │ ├── service.yaml │ └── statefulset.yaml ├── values.schema.json └── values.yaml ├── radondb-clickhouse ├── Chart.yaml ├── README.md ├── templates │ ├── _helpers.yaml │ ├── configuration.yaml │ ├── instances.yaml │ ├── service.yaml │ └── zookeeper.yaml └── values.yaml ├── radondb-mysql ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── rbac.yaml │ ├── secrets.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ └── statefulset.yaml └── values.yaml ├── radondb-postgresql ├── .helmignore ├── Chart.yaml ├── README.md ├── charts │ └── common │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── 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 │ │ │ ├── _postgresql.tpl │ │ │ └── _validations.tpl │ │ └── values.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── extra-list.yaml │ ├── ldap-secrets.yaml │ ├── networkpolicy.yaml │ ├── pgpool │ │ ├── configmap.yaml │ │ ├── custom-users-secrets.yaml │ │ ├── deployment.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 │ └── serviceaccount.yaml └── values.yaml ├── rbd-provisioner ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── deployment.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── serviceaccount.yaml │ └── storageclass.yaml └── values.yaml ├── readme.md ├── redis ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── cm.yaml │ ├── service.yaml │ ├── statefulset.yaml │ └── tests │ │ └── test-connection.yaml ├── values.schema.json └── values.yaml ├── sample-bookinfo ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── application.yaml │ ├── details-v1.yaml │ ├── details.yaml │ ├── ingress.yaml │ ├── productpage-v1.yaml │ ├── productpage.yaml │ ├── ratings-v1.yaml │ ├── ratings.yaml │ ├── reviews-v1.yaml │ └── reviews.yaml └── values.yaml ├── skywalking ├── .helmignore ├── Chart.lock ├── Chart.yaml ├── OWNERS ├── README.md ├── charts │ └── elasticsearch-7.5.2.tgz ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── es-init.job.yaml │ ├── istio-adapter │ │ ├── adapter.yaml │ │ ├── handler.yaml │ │ ├── instance.yaml │ │ └── rule.yaml │ ├── oap-clusterrole.yaml │ ├── oap-clusterrolebinding.yaml │ ├── oap-configmap.yaml │ ├── oap-deployment.yaml │ ├── oap-role.yaml │ ├── oap-rolebinding.yaml │ ├── oap-serviceaccount.yaml │ ├── oap-svc.yaml │ ├── ui-deployment.yaml │ ├── ui-ingress.yaml │ └── ui-svc.yaml ├── values-es6.yaml └── values.yaml ├── snapshot-controller ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── rbac-snapshot-controller.yaml │ └── setup-snapshot-controller.yaml └── values.yaml ├── theia ├── .helmignore ├── Chart.yaml ├── README.md ├── conf │ └── theia-manager.conf ├── crds │ ├── clickhouse-operator-install-bundle.yaml │ ├── network-policy-recommendation-crd.yaml │ └── spark-operator-crds.yaml ├── provisioning │ ├── dashboards │ │ ├── dashboard_provider.yaml │ │ ├── flow_records_dashboard.json │ │ ├── homepage.json │ │ ├── networkpolicy_dashboard.json │ │ ├── node_to_node_dashboard.json │ │ ├── pod_to_external_dashboard.json │ │ ├── pod_to_pod_dashboard.json │ │ └── pod_to_service_dashboard.json │ └── datasources │ │ ├── create_table.sh │ │ ├── datasource_provider.yaml │ │ ├── init.sh │ │ └── migrators │ │ ├── 000001_0-1-0.down.sql │ │ ├── 000001_0-1-0.up.sql │ │ ├── 000002_0-2-0.down.sql │ │ ├── 000002_0-2-0.up.sql │ │ └── downgrade │ │ └── 0-3-0_0-2-0.sql ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── clickhouse │ │ ├── clickhouseinstallation.yaml │ │ ├── configmap.yaml │ │ ├── local-persistentvolume.yaml │ │ ├── nfs-persistentvolume.yaml │ │ ├── secret.yaml │ │ ├── storageclass.yaml │ │ └── zookeeper │ │ │ ├── headless-service.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── service.yaml │ │ │ └── statefulset.yaml │ ├── grafana │ │ ├── dashboard-configmap.yaml │ │ ├── dashboard-provider-configmap.yaml │ │ ├── datasource-provider-configmap.yaml │ │ ├── deployment.yaml │ │ ├── hostpath-persistentvolume.yaml │ │ ├── local-persistentvolume.yaml │ │ ├── nfs-persistentvolume.yaml │ │ ├── persistentvolumeclaim.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── storageclass.yaml │ ├── spark-operator │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── serviceaccount.yaml │ │ ├── spark-role.yaml │ │ ├── spark-rolebinding.yaml │ │ └── spark-serviceaccount.yaml │ ├── theia-cli │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── secret.yaml │ │ └── serviceaccount.yaml │ └── theia-manager │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml └── values.yaml ├── vsphere-cpi ├── .helmignore ├── 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 │ ├── daemonset.yaml │ ├── deployment.yaml │ ├── extra-list.yaml │ ├── rbac.yaml │ ├── secret.yaml │ └── service-account.yaml ├── values.yaml └── vsphere-cpi-0.0.1.tgz ├── vsphere-csi-driver ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helper.tpl │ ├── controller.yaml │ ├── node.yaml │ ├── rbac.yaml │ ├── serviceaccount.yaml │ └── storageclass.yaml └── values.yaml ├── vsphere-csi ├── .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 │ └── vsphere-cpi │ │ ├── .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 │ │ ├── daemonset.yaml │ │ ├── deployment.yaml │ │ ├── extra-list.yaml │ │ ├── rbac.yaml │ │ ├── secret.yaml │ │ └── service-account.yaml │ │ ├── values.yaml │ │ └── vsphere-cpi-0.0.1.tgz ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── controller │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── rbac.yaml │ │ ├── service-account.yaml │ │ └── service.yaml │ ├── csi-driver.yaml │ ├── extra-list.yaml │ ├── metrics │ │ └── servicemonitor.yaml │ ├── node │ │ ├── daemonset-linux.yaml │ │ ├── daemonset-win.yaml │ │ ├── rbac.yaml │ │ └── service-account.yaml │ ├── secret.yaml │ ├── snapshot-validation-webhook │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ └── validatingwebhookconfiguration.yaml │ ├── storageclass.yaml │ └── webhook │ │ ├── ValidatingWebhookConfiguration.yaml │ │ ├── deployment.yaml │ │ ├── rbac.yaml │ │ ├── service-account.yaml │ │ └── service.yaml └── values.yaml └── xenondb ├── Chart.yaml ├── README.md ├── templates ├── NOTES.txt ├── _helpers.tpl ├── configmap.yaml ├── rbac.yaml ├── secrets.yaml ├── service.yaml ├── serviceaccount.yaml ├── servicemonitor.yaml └── statefulset.yaml └── values.yaml /.github/workflows/build-chart-index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/.github/workflows/build-chart-index.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /helm 3 | .idea/ 4 | .Ds_Store 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/.travis.yml -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/OWNERS -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/readme.md -------------------------------------------------------------------------------- /src/latest/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/latest/Chart.yaml -------------------------------------------------------------------------------- /src/main/apisix-dashboard/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix-dashboard/.helmignore -------------------------------------------------------------------------------- /src/main/apisix-dashboard/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix-dashboard/Chart.yaml -------------------------------------------------------------------------------- /src/main/apisix-dashboard/charts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/apisix-dashboard/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix-dashboard/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/apisix-dashboard/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix-dashboard/templates/hpa.yaml -------------------------------------------------------------------------------- /src/main/apisix-dashboard/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix-dashboard/values.yaml -------------------------------------------------------------------------------- /src/main/apisix-ingress-controller/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix-ingress-controller/Chart.yaml -------------------------------------------------------------------------------- /src/main/apisix-ingress-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix-ingress-controller/README.md -------------------------------------------------------------------------------- /src/main/apisix-ingress-controller/charts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/apisix/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/.helmignore -------------------------------------------------------------------------------- /src/main/apisix/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/Chart.lock -------------------------------------------------------------------------------- /src/main/apisix/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/Chart.yaml -------------------------------------------------------------------------------- /src/main/apisix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/README.md -------------------------------------------------------------------------------- /src/main/apisix/charts/etcd-6.2.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/charts/etcd-6.2.6.tgz -------------------------------------------------------------------------------- /src/main/apisix/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/apisix/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/main/apisix/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/templates/configmap.yaml -------------------------------------------------------------------------------- /src/main/apisix/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/templates/deployment.yaml -------------------------------------------------------------------------------- /src/main/apisix/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/templates/hpa.yaml -------------------------------------------------------------------------------- /src/main/apisix/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/templates/ingress.yaml -------------------------------------------------------------------------------- /src/main/apisix/templates/service-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/templates/service-admin.yaml -------------------------------------------------------------------------------- /src/main/apisix/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/apisix/values.yaml -------------------------------------------------------------------------------- /src/main/elasticsearch-exporter/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/elasticsearch-exporter/.helmignore -------------------------------------------------------------------------------- /src/main/elasticsearch-exporter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/elasticsearch-exporter/Chart.yaml -------------------------------------------------------------------------------- /src/main/elasticsearch-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/elasticsearch-exporter/README.md -------------------------------------------------------------------------------- /src/main/elasticsearch-exporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/elasticsearch-exporter/values.yaml -------------------------------------------------------------------------------- /src/main/fluentbit-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/fluentbit-operator/.helmignore -------------------------------------------------------------------------------- /src/main/fluentbit-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/fluentbit-operator/Chart.yaml -------------------------------------------------------------------------------- /src/main/fluentbit-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/fluentbit-operator/README.md -------------------------------------------------------------------------------- /src/main/fluentbit-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/fluentbit-operator/values.yaml -------------------------------------------------------------------------------- /src/main/gitlab/.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /src/main/gitlab/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/.gitignore -------------------------------------------------------------------------------- /src/main/gitlab/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/.gitlab-ci.yml -------------------------------------------------------------------------------- /src/main/gitlab/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/.helmignore -------------------------------------------------------------------------------- /src/main/gitlab/.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/.markdownlint.json -------------------------------------------------------------------------------- /src/main/gitlab/.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/.vale.ini -------------------------------------------------------------------------------- /src/main/gitlab/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/CHANGELOG.md -------------------------------------------------------------------------------- /src/main/gitlab/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/main/gitlab/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/Chart.yaml -------------------------------------------------------------------------------- /src/main/gitlab/Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/Dangerfile -------------------------------------------------------------------------------- /src/main/gitlab/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/Gemfile -------------------------------------------------------------------------------- /src/main/gitlab/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/Gemfile.lock -------------------------------------------------------------------------------- /src/main/gitlab/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/LICENSE.md -------------------------------------------------------------------------------- /src/main/gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/README.md -------------------------------------------------------------------------------- /src/main/gitlab/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/Rakefile -------------------------------------------------------------------------------- /src/main/gitlab/bin/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/bin/changelog -------------------------------------------------------------------------------- /src/main/gitlab/bin/localtiller-helm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/bin/localtiller-helm -------------------------------------------------------------------------------- /src/main/gitlab/changelogs/unreleased/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/gitlab/charts/gitlab/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/charts/gitlab/.helmignore -------------------------------------------------------------------------------- /src/main/gitlab/charts/gitlab/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/charts/gitlab/Chart.yaml -------------------------------------------------------------------------------- /src/main/gitlab/charts/gitlab/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/charts/gitlab/values.yaml -------------------------------------------------------------------------------- /src/main/gitlab/charts/minio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/charts/minio/Chart.yaml -------------------------------------------------------------------------------- /src/main/gitlab/charts/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/charts/minio/values.yaml -------------------------------------------------------------------------------- /src/main/gitlab/charts/nginx-ingress/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/charts/nginx-ingress/index.md -------------------------------------------------------------------------------- /src/main/gitlab/charts/registry/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/gitlab/charts/registry/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/charts/registry/Chart.yaml -------------------------------------------------------------------------------- /src/main/gitlab/charts/registry/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/charts/registry/index.md -------------------------------------------------------------------------------- /src/main/gitlab/charts/registry/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/charts/registry/values.yaml -------------------------------------------------------------------------------- /src/main/gitlab/deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/deps.yml -------------------------------------------------------------------------------- /src/main/gitlab/doc/.vale/gitlab/Acronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/.vale/gitlab/Acronyms.yml -------------------------------------------------------------------------------- /src/main/gitlab/doc/.vale/gitlab/British.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/.vale/gitlab/British.yml -------------------------------------------------------------------------------- /src/main/gitlab/doc/.vale/gitlab/Spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/.vale/gitlab/Spelling.yml -------------------------------------------------------------------------------- /src/main/gitlab/doc/advanced/geo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/advanced/geo/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/advanced/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/advanced/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/advanced/ubi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/advanced/ubi/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/architecture/decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/architecture/decisions.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/architecture/goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/architecture/goals.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/architecture/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/architecture/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/backup-restore/backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/backup-restore/backup.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/backup-restore/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/backup-restore/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/backup-restore/restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/backup-restore/restore.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/charts/gitlab/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/charts/gitlab/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/charts/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/charts/globals.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/charts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/charts/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/charts/minio/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/charts/minio/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/charts/nginx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/charts/nginx/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/charts/redis-ha/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/charts/redis-ha/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/charts/redis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/charts/redis/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/charts/registry/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/charts/registry/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/development/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/development/changelog.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/development/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/development/deploy.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/development/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/development/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/development/kind/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/development/kind/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/development/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/development/release.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/development/rspec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/development/rspec.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/development/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/development/validation.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/example-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/example-config.yaml -------------------------------------------------------------------------------- /src/main/gitlab/doc/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/gitlab/doc/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/images/charts.png -------------------------------------------------------------------------------- /src/main/gitlab/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/installation/cloud/eks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/installation/cloud/eks.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/installation/cloud/gke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/installation/cloud/gke.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/installation/crdctl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/installation/crdctl.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/installation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/installation/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/installation/operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/installation/operator.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/installation/rbac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/installation/rbac.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/installation/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/installation/secrets.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/installation/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/installation/storage.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/installation/tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/installation/tls.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/installation/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/installation/tools.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/installation/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/installation/upgrade.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/quickstart/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/quickstart/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/releases/1_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/releases/1_0.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/releases/2_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/releases/2_0.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/releases/3_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/releases/3_0.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/releases/4_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/releases/4_0.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/releases/alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/releases/alpha.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/releases/beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/releases/beta.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/releases/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/releases/index.md -------------------------------------------------------------------------------- /src/main/gitlab/doc/troubleshooting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/doc/troubleshooting/index.md -------------------------------------------------------------------------------- /src/main/gitlab/examples/geo/primary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/examples/geo/primary.yaml -------------------------------------------------------------------------------- /src/main/gitlab/examples/geo/secondary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/examples/geo/secondary.yaml -------------------------------------------------------------------------------- /src/main/gitlab/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/examples/index.md -------------------------------------------------------------------------------- /src/main/gitlab/examples/kind/kind-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/examples/kind/kind-ssl.yaml -------------------------------------------------------------------------------- /src/main/gitlab/examples/kind/values-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/examples/kind/values-ssl.yaml -------------------------------------------------------------------------------- /src/main/gitlab/examples/redis/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/examples/redis/cache.yaml -------------------------------------------------------------------------------- /src/main/gitlab/examples/redis/multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/examples/redis/multiple.yaml -------------------------------------------------------------------------------- /src/main/gitlab/examples/redis/sentinels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/examples/redis/sentinels.yaml -------------------------------------------------------------------------------- /src/main/gitlab/examples/tracing/jaeger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/examples/tracing/jaeger.yaml -------------------------------------------------------------------------------- /src/main/gitlab/examples/ubi/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/examples/ubi/values.yaml -------------------------------------------------------------------------------- /src/main/gitlab/examples/values-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/examples/values-base.yaml -------------------------------------------------------------------------------- /src/main/gitlab/examples/values-minikube.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/examples/values-minikube.yaml -------------------------------------------------------------------------------- /src/main/gitlab/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/requirements.yaml -------------------------------------------------------------------------------- /src/main/gitlab/scripts/ci_feature_spec_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/scripts/ci_feature_spec_setup -------------------------------------------------------------------------------- /src/main/gitlab/scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/scripts/common.sh -------------------------------------------------------------------------------- /src/main/gitlab/scripts/crdctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/scripts/crdctl -------------------------------------------------------------------------------- /src/main/gitlab/scripts/database-upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/scripts/database-upgrade -------------------------------------------------------------------------------- /src/main/gitlab/scripts/deploy_chaoskube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/scripts/deploy_chaoskube.sh -------------------------------------------------------------------------------- /src/main/gitlab/scripts/eks_bootstrap_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/scripts/eks_bootstrap_script -------------------------------------------------------------------------------- /src/main/gitlab/scripts/lib/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/scripts/lib/version.rb -------------------------------------------------------------------------------- /src/main/gitlab/scripts/manage_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/scripts/manage_version.rb -------------------------------------------------------------------------------- /src/main/gitlab/scripts/tag_auto_deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/scripts/tag_auto_deploy.rb -------------------------------------------------------------------------------- /src/main/gitlab/scripts/wait_for_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/scripts/wait_for_images.sh -------------------------------------------------------------------------------- /src/main/gitlab/spec/features/backups_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/spec/features/backups_spec.rb -------------------------------------------------------------------------------- /src/main/gitlab/spec/gitlab_test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/spec/gitlab_test_helper.rb -------------------------------------------------------------------------------- /src/main/gitlab/spec/helm_template_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/spec/helm_template_helper.rb -------------------------------------------------------------------------------- /src/main/gitlab/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/spec/spec_helper.rb -------------------------------------------------------------------------------- /src/main/gitlab/support/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/support/crd.yaml -------------------------------------------------------------------------------- /src/main/gitlab/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/gitlab/templates/_application.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_application.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_boolean.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_boolean.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_certificates.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_certificates.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_checkConfig.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_checkConfig.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_deprecations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_deprecations.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_geo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_geo.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_gitaly.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_gitaly.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_migrations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_migrations.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_minio.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_minio.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_rails.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_rails.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_redis.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_registry.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_registry.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_runcheck.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_runcheck.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_runner.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_runner.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_shell.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_shell.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/_workhorse.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/_workhorse.tpl -------------------------------------------------------------------------------- /src/main/gitlab/templates/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/application.yaml -------------------------------------------------------------------------------- /src/main/gitlab/templates/chart-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/templates/chart-info.yaml -------------------------------------------------------------------------------- /src/main/gitlab/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/gitlab/values.yaml -------------------------------------------------------------------------------- /src/main/harbor/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/.helmignore -------------------------------------------------------------------------------- /src/main/harbor/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/Chart.yaml -------------------------------------------------------------------------------- /src/main/harbor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/LICENSE -------------------------------------------------------------------------------- /src/main/harbor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/README.md -------------------------------------------------------------------------------- /src/main/harbor/cert/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/cert/tls.crt -------------------------------------------------------------------------------- /src/main/harbor/cert/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/cert/tls.key -------------------------------------------------------------------------------- /src/main/harbor/conf/notary-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/conf/notary-server.json -------------------------------------------------------------------------------- /src/main/harbor/conf/notary-signer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/conf/notary-signer.json -------------------------------------------------------------------------------- /src/main/harbor/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/harbor/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/main/harbor/templates/core/core-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/templates/core/core-cm.yaml -------------------------------------------------------------------------------- /src/main/harbor/templates/core/core-dpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/templates/core/core-dpl.yaml -------------------------------------------------------------------------------- /src/main/harbor/templates/core/core-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/templates/core/core-svc.yaml -------------------------------------------------------------------------------- /src/main/harbor/templates/core/core-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/templates/core/core-tls.yaml -------------------------------------------------------------------------------- /src/main/harbor/templates/ingress/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/templates/ingress/secret.yaml -------------------------------------------------------------------------------- /src/main/harbor/templates/nginx/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/templates/nginx/secret.yaml -------------------------------------------------------------------------------- /src/main/harbor/templates/nginx/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/templates/nginx/service.yaml -------------------------------------------------------------------------------- /src/main/harbor/templates/portal/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/templates/portal/service.yaml -------------------------------------------------------------------------------- /src/main/harbor/templates/portal/tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/templates/portal/tls.yaml -------------------------------------------------------------------------------- /src/main/harbor/templates/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/templates/redis/service.yaml -------------------------------------------------------------------------------- /src/main/harbor/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/harbor/values.yaml -------------------------------------------------------------------------------- /src/main/ks-installer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/ks-installer/.helmignore -------------------------------------------------------------------------------- /src/main/ks-installer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/ks-installer/Chart.yaml -------------------------------------------------------------------------------- /src/main/ks-installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/ks-installer/README.md -------------------------------------------------------------------------------- /src/main/ks-installer/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/ks-installer/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/ks-installer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/ks-installer/values.yaml -------------------------------------------------------------------------------- /src/main/memcached/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | OWNERS 3 | -------------------------------------------------------------------------------- /src/main/memcached/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/memcached/Chart.yaml -------------------------------------------------------------------------------- /src/main/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/memcached/README.md -------------------------------------------------------------------------------- /src/main/memcached/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/memcached/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/memcached/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/memcached/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/main/memcached/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/memcached/templates/pdb.yaml -------------------------------------------------------------------------------- /src/main/memcached/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/memcached/templates/statefulset.yaml -------------------------------------------------------------------------------- /src/main/memcached/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/memcached/templates/svc.yaml -------------------------------------------------------------------------------- /src/main/memcached/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/memcached/values.yaml -------------------------------------------------------------------------------- /src/main/minio/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/.helmignore -------------------------------------------------------------------------------- /src/main/minio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/Chart.yaml -------------------------------------------------------------------------------- /src/main/minio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/README.md -------------------------------------------------------------------------------- /src/main/minio/ci/distributed-values.yaml: -------------------------------------------------------------------------------- 1 | mode: distributed 2 | -------------------------------------------------------------------------------- /src/main/minio/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/minio/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/main/minio/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/templates/configmap.yaml -------------------------------------------------------------------------------- /src/main/minio/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/templates/deployment.yaml -------------------------------------------------------------------------------- /src/main/minio/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/templates/ingress.yaml -------------------------------------------------------------------------------- /src/main/minio/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /src/main/minio/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/templates/pvc.yaml -------------------------------------------------------------------------------- /src/main/minio/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/templates/secrets.yaml -------------------------------------------------------------------------------- /src/main/minio/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/templates/service.yaml -------------------------------------------------------------------------------- /src/main/minio/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /src/main/minio/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /src/main/minio/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/templates/statefulset.yaml -------------------------------------------------------------------------------- /src/main/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/minio/values.yaml -------------------------------------------------------------------------------- /src/main/mysql-exporter/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql-exporter/.helmignore -------------------------------------------------------------------------------- /src/main/mysql-exporter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql-exporter/Chart.yaml -------------------------------------------------------------------------------- /src/main/mysql-exporter/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql-exporter/OWNERS -------------------------------------------------------------------------------- /src/main/mysql-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql-exporter/README.md -------------------------------------------------------------------------------- /src/main/mysql-exporter/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql-exporter/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/mysql-exporter/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql-exporter/templates/secret.yaml -------------------------------------------------------------------------------- /src/main/mysql-exporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql-exporter/values.yaml -------------------------------------------------------------------------------- /src/main/mysql/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | OWNERS -------------------------------------------------------------------------------- /src/main/mysql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql/Chart.yaml -------------------------------------------------------------------------------- /src/main/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql/README.md -------------------------------------------------------------------------------- /src/main/mysql/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/mysql/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/main/mysql/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql/templates/deployment.yaml -------------------------------------------------------------------------------- /src/main/mysql/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql/templates/pvc.yaml -------------------------------------------------------------------------------- /src/main/mysql/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql/templates/secrets.yaml -------------------------------------------------------------------------------- /src/main/mysql/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /src/main/mysql/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /src/main/mysql/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql/templates/svc.yaml -------------------------------------------------------------------------------- /src/main/mysql/templates/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql/templates/tests/test.yaml -------------------------------------------------------------------------------- /src/main/mysql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/mysql/values.yaml -------------------------------------------------------------------------------- /src/main/nfs-client-provisioner/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nfs-client-provisioner/.helmignore -------------------------------------------------------------------------------- /src/main/nfs-client-provisioner/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nfs-client-provisioner/Chart.yaml -------------------------------------------------------------------------------- /src/main/nfs-client-provisioner/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nfs-client-provisioner/OWNERS -------------------------------------------------------------------------------- /src/main/nfs-client-provisioner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nfs-client-provisioner/README.md -------------------------------------------------------------------------------- /src/main/nfs-client-provisioner/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nfs-client-provisioner/values.yaml -------------------------------------------------------------------------------- /src/main/nginx/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nginx/.helmignore -------------------------------------------------------------------------------- /src/main/nginx/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nginx/Chart.yaml -------------------------------------------------------------------------------- /src/main/nginx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nginx/LICENSE -------------------------------------------------------------------------------- /src/main/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nginx/README.md -------------------------------------------------------------------------------- /src/main/nginx/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nginx/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/nginx/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nginx/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/main/nginx/templates/cm-main-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nginx/templates/cm-main-config.yaml -------------------------------------------------------------------------------- /src/main/nginx/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nginx/templates/deployment.yaml -------------------------------------------------------------------------------- /src/main/nginx/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nginx/templates/ingress.yaml -------------------------------------------------------------------------------- /src/main/nginx/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nginx/templates/service.yaml -------------------------------------------------------------------------------- /src/main/nginx/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nginx/values.schema.json -------------------------------------------------------------------------------- /src/main/nginx/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/nginx/values.yaml -------------------------------------------------------------------------------- /src/main/pvc-autoresizer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/pvc-autoresizer/Chart.yaml -------------------------------------------------------------------------------- /src/main/pvc-autoresizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/pvc-autoresizer/README.md -------------------------------------------------------------------------------- /src/main/pvc-autoresizer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/pvc-autoresizer/values.yaml -------------------------------------------------------------------------------- /src/main/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/readme.md -------------------------------------------------------------------------------- /src/main/redis-exporter/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/redis-exporter/.helmignore -------------------------------------------------------------------------------- /src/main/redis-exporter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/redis-exporter/Chart.yaml -------------------------------------------------------------------------------- /src/main/redis-exporter/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/redis-exporter/OWNERS -------------------------------------------------------------------------------- /src/main/redis-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/redis-exporter/README.md -------------------------------------------------------------------------------- /src/main/redis-exporter/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/redis-exporter/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/redis-exporter/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/redis-exporter/templates/role.yaml -------------------------------------------------------------------------------- /src/main/redis-exporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/redis-exporter/values.yaml -------------------------------------------------------------------------------- /src/main/sonarqube/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/.helmignore -------------------------------------------------------------------------------- /src/main/sonarqube/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/Chart.yaml -------------------------------------------------------------------------------- /src/main/sonarqube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/README.md -------------------------------------------------------------------------------- /src/main/sonarqube/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/requirements.lock -------------------------------------------------------------------------------- /src/main/sonarqube/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/requirements.yaml -------------------------------------------------------------------------------- /src/main/sonarqube/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/sonarqube/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/main/sonarqube/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/templates/config.yaml -------------------------------------------------------------------------------- /src/main/sonarqube/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/templates/deployment.yaml -------------------------------------------------------------------------------- /src/main/sonarqube/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/templates/ingress.yaml -------------------------------------------------------------------------------- /src/main/sonarqube/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/templates/pvc.yaml -------------------------------------------------------------------------------- /src/main/sonarqube/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/templates/secret.yaml -------------------------------------------------------------------------------- /src/main/sonarqube/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/templates/service.yaml -------------------------------------------------------------------------------- /src/main/sonarqube/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/sonarqube/values.yaml -------------------------------------------------------------------------------- /src/main/storageclass-accessor/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/storageclass-accessor/Chart.yaml -------------------------------------------------------------------------------- /src/main/storageclass-accessor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/storageclass-accessor/README.md -------------------------------------------------------------------------------- /src/main/storageclass-accessor/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/storageclass-accessor/values.yaml -------------------------------------------------------------------------------- /src/main/tomcat/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/tomcat/Chart.yaml -------------------------------------------------------------------------------- /src/main/tomcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/tomcat/README.md -------------------------------------------------------------------------------- /src/main/tomcat/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/tomcat/templates/NOTES.txt -------------------------------------------------------------------------------- /src/main/tomcat/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/tomcat/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/main/tomcat/templates/appsrv-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/tomcat/templates/appsrv-svc.yaml -------------------------------------------------------------------------------- /src/main/tomcat/templates/appsrv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/tomcat/templates/appsrv.yaml -------------------------------------------------------------------------------- /src/main/tomcat/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/main/tomcat/values.yaml -------------------------------------------------------------------------------- /src/stable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/README.md -------------------------------------------------------------------------------- /src/stable/antrea/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/.helmignore -------------------------------------------------------------------------------- /src/stable/antrea/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/Chart.yaml -------------------------------------------------------------------------------- /src/stable/antrea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/README.md -------------------------------------------------------------------------------- /src/stable/antrea/conf/antrea-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/conf/antrea-agent.conf -------------------------------------------------------------------------------- /src/stable/antrea/conf/antrea-cni.conflist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/conf/antrea-cni.conflist -------------------------------------------------------------------------------- /src/stable/antrea/conf/antrea-controller.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/conf/antrea-controller.conf -------------------------------------------------------------------------------- /src/stable/antrea/crds/antreaagentinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/crds/antreaagentinfo.yaml -------------------------------------------------------------------------------- /src/stable/antrea/crds/clustergroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/crds/clustergroup.yaml -------------------------------------------------------------------------------- /src/stable/antrea/crds/egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/crds/egress.yaml -------------------------------------------------------------------------------- /src/stable/antrea/crds/externalentity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/crds/externalentity.yaml -------------------------------------------------------------------------------- /src/stable/antrea/crds/externalippool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/crds/externalippool.yaml -------------------------------------------------------------------------------- /src/stable/antrea/crds/externalnode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/crds/externalnode.yaml -------------------------------------------------------------------------------- /src/stable/antrea/crds/ippool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/crds/ippool.yaml -------------------------------------------------------------------------------- /src/stable/antrea/crds/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/crds/networkpolicy.yaml -------------------------------------------------------------------------------- /src/stable/antrea/crds/tier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/crds/tier.yaml -------------------------------------------------------------------------------- /src/stable/antrea/crds/traceflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/crds/traceflow.yaml -------------------------------------------------------------------------------- /src/stable/antrea/crds/trafficcontrol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/crds/trafficcontrol.yaml -------------------------------------------------------------------------------- /src/stable/antrea/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/antrea/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/antrea/templates/agent/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/templates/agent/secret.yaml -------------------------------------------------------------------------------- /src/stable/antrea/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/templates/configmap.yaml -------------------------------------------------------------------------------- /src/stable/antrea/templates/crds/group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/templates/crds/group.yaml -------------------------------------------------------------------------------- /src/stable/antrea/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/antrea/values.yaml -------------------------------------------------------------------------------- /src/stable/ccm-qingcloud/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ccm-qingcloud/.helmignore -------------------------------------------------------------------------------- /src/stable/ccm-qingcloud/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ccm-qingcloud/Chart.yaml -------------------------------------------------------------------------------- /src/stable/ccm-qingcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ccm-qingcloud/README.md -------------------------------------------------------------------------------- /src/stable/ccm-qingcloud/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ccm-qingcloud/values.yaml -------------------------------------------------------------------------------- /src/stable/chaos-mesh/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/chaos-mesh/.helmignore -------------------------------------------------------------------------------- /src/stable/chaos-mesh/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/chaos-mesh/Chart.yaml -------------------------------------------------------------------------------- /src/stable/chaos-mesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/chaos-mesh/README.md -------------------------------------------------------------------------------- /src/stable/chaos-mesh/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/chaos-mesh/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/chaos-mesh/templates/_certs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/chaos-mesh/templates/_certs.tpl -------------------------------------------------------------------------------- /src/stable/chaos-mesh/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/chaos-mesh/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/chaos-mesh/templates/dns-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/chaos-mesh/templates/dns-rbac.yaml -------------------------------------------------------------------------------- /src/stable/chaos-mesh/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/chaos-mesh/templates/ingress.yaml -------------------------------------------------------------------------------- /src/stable/chaos-mesh/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/chaos-mesh/values.yaml -------------------------------------------------------------------------------- /src/stable/cni-hostnic/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/cni-hostnic/.helmignore -------------------------------------------------------------------------------- /src/stable/cni-hostnic/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/cni-hostnic/Chart.yaml -------------------------------------------------------------------------------- /src/stable/cni-hostnic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/cni-hostnic/README.md -------------------------------------------------------------------------------- /src/stable/cni-hostnic/crds/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/cni-hostnic/crds/crd.yaml -------------------------------------------------------------------------------- /src/stable/cni-hostnic/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/cni-hostnic/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/cni-hostnic/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/cni-hostnic/templates/config.yaml -------------------------------------------------------------------------------- /src/stable/cni-hostnic/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/cni-hostnic/templates/rbac.yaml -------------------------------------------------------------------------------- /src/stable/cni-hostnic/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/cni-hostnic/values.yaml -------------------------------------------------------------------------------- /src/stable/crane/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/crane/.helmignore -------------------------------------------------------------------------------- /src/stable/crane/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/crane/Chart.yaml -------------------------------------------------------------------------------- /src/stable/crane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/crane/README.md -------------------------------------------------------------------------------- /src/stable/crane/keys/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/crane/keys/ca.crt -------------------------------------------------------------------------------- /src/stable/crane/keys/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/crane/keys/ca.key -------------------------------------------------------------------------------- /src/stable/crane/keys/ca.srl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/crane/keys/ca.srl -------------------------------------------------------------------------------- /src/stable/crane/keys/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/crane/keys/tls.crt -------------------------------------------------------------------------------- /src/stable/crane/keys/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/crane/keys/tls.key -------------------------------------------------------------------------------- /src/stable/crane/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/crane/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/crane/templates/craned-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/crane/templates/craned-rbac.yaml -------------------------------------------------------------------------------- /src/stable/crane/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/crane/values.yaml -------------------------------------------------------------------------------- /src/stable/csi-qingcloud/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/csi-qingcloud/.helmignore -------------------------------------------------------------------------------- /src/stable/csi-qingcloud/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/csi-qingcloud/Chart.yaml -------------------------------------------------------------------------------- /src/stable/csi-qingcloud/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/csi-qingcloud/OWNERS -------------------------------------------------------------------------------- /src/stable/csi-qingcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/csi-qingcloud/README.md -------------------------------------------------------------------------------- /src/stable/csi-qingcloud/templates/sc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/csi-qingcloud/templates/sc.yaml -------------------------------------------------------------------------------- /src/stable/csi-qingcloud/templates/vpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/csi-qingcloud/templates/vpa.yaml -------------------------------------------------------------------------------- /src/stable/csi-qingcloud/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/csi-qingcloud/values.yaml -------------------------------------------------------------------------------- /src/stable/curvefs-csi/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/curvefs-csi/.helmignore -------------------------------------------------------------------------------- /src/stable/curvefs-csi/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/curvefs-csi/Chart.yaml -------------------------------------------------------------------------------- /src/stable/curvefs-csi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/curvefs-csi/README.md -------------------------------------------------------------------------------- /src/stable/curvefs-csi/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/curvefs-csi/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/curvefs-csi/templates/driver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/curvefs-csi/templates/driver.yaml -------------------------------------------------------------------------------- /src/stable/curvefs-csi/templates/node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/curvefs-csi/templates/node.yaml -------------------------------------------------------------------------------- /src/stable/curvefs-csi/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/curvefs-csi/templates/rbac.yaml -------------------------------------------------------------------------------- /src/stable/curvefs-csi/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/curvefs-csi/values.yaml -------------------------------------------------------------------------------- /src/stable/databend-meta/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/databend-meta/.helmignore -------------------------------------------------------------------------------- /src/stable/databend-meta/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/databend-meta/Chart.yaml -------------------------------------------------------------------------------- /src/stable/databend-meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/databend-meta/README.md -------------------------------------------------------------------------------- /src/stable/databend-meta/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/databend-meta/values.yaml -------------------------------------------------------------------------------- /src/stable/databend-query/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/databend-query/.helmignore -------------------------------------------------------------------------------- /src/stable/databend-query/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/databend-query/Chart.yaml -------------------------------------------------------------------------------- /src/stable/databend-query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/databend-query/README.md -------------------------------------------------------------------------------- /src/stable/databend-query/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/databend-query/values.yaml -------------------------------------------------------------------------------- /src/stable/easegress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/easegress/.helmignore -------------------------------------------------------------------------------- /src/stable/easegress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/easegress/Chart.yaml -------------------------------------------------------------------------------- /src/stable/easegress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/easegress/README.md -------------------------------------------------------------------------------- /src/stable/easegress/templates/ConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/easegress/templates/ConfigMap.yaml -------------------------------------------------------------------------------- /src/stable/easegress/templates/Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/easegress/templates/Service.yaml -------------------------------------------------------------------------------- /src/stable/easegress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/easegress/values.yaml -------------------------------------------------------------------------------- /src/stable/edgemesh/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/edgemesh/.helmignore -------------------------------------------------------------------------------- /src/stable/edgemesh/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/edgemesh/Chart.yaml -------------------------------------------------------------------------------- /src/stable/edgemesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/edgemesh/README.md -------------------------------------------------------------------------------- /src/stable/edgemesh/charts/agent/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/edgemesh/charts/agent/.helmignore -------------------------------------------------------------------------------- /src/stable/edgemesh/charts/agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/edgemesh/charts/agent/Chart.yaml -------------------------------------------------------------------------------- /src/stable/edgemesh/charts/agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/edgemesh/charts/agent/values.yaml -------------------------------------------------------------------------------- /src/stable/edgemesh/charts/server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/edgemesh/charts/server/.helmignore -------------------------------------------------------------------------------- /src/stable/edgemesh/charts/server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/edgemesh/charts/server/Chart.yaml -------------------------------------------------------------------------------- /src/stable/edgemesh/charts/server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/edgemesh/charts/server/values.yaml -------------------------------------------------------------------------------- /src/stable/edgemesh/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/edgemesh/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/edgemesh/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/edgemesh/values.yaml -------------------------------------------------------------------------------- /src/stable/flow-aggregator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/flow-aggregator/.helmignore -------------------------------------------------------------------------------- /src/stable/flow-aggregator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/flow-aggregator/Chart.yaml -------------------------------------------------------------------------------- /src/stable/flow-aggregator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/flow-aggregator/README.md -------------------------------------------------------------------------------- /src/stable/flow-aggregator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/flow-aggregator/values.yaml -------------------------------------------------------------------------------- /src/stable/fpga-operator/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/fpga-operator/Chart.lock -------------------------------------------------------------------------------- /src/stable/fpga-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/fpga-operator/Chart.yaml -------------------------------------------------------------------------------- /src/stable/fpga-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/fpga-operator/README.md -------------------------------------------------------------------------------- /src/stable/fpga-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/fpga-operator/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/fpga-operator/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/fpga-operator/values.schema.json -------------------------------------------------------------------------------- /src/stable/fpga-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/fpga-operator/values.yaml -------------------------------------------------------------------------------- /src/stable/iomesh/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/.helmignore -------------------------------------------------------------------------------- /src/stable/iomesh/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/Chart.yaml -------------------------------------------------------------------------------- /src/stable/iomesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/README.md -------------------------------------------------------------------------------- /src/stable/iomesh/charts/blockdevice-monitor/templates/_helpers.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stable/iomesh/charts/csi-driver/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stable/iomesh/charts/deck/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/charts/deck/.helmignore -------------------------------------------------------------------------------- /src/stable/iomesh/charts/deck/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/charts/deck/Chart.yaml -------------------------------------------------------------------------------- /src/stable/iomesh/charts/deck/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/charts/deck/values.yaml -------------------------------------------------------------------------------- /src/stable/iomesh/charts/hostpath-provisioner/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stable/iomesh/rules/iomesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/rules/iomesh -------------------------------------------------------------------------------- /src/stable/iomesh/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/iomesh/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/templates/clusterrole.yaml -------------------------------------------------------------------------------- /src/stable/iomesh/templates/limitrange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/templates/limitrange.yaml -------------------------------------------------------------------------------- /src/stable/iomesh/templates/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/templates/monitor.yaml -------------------------------------------------------------------------------- /src/stable/iomesh/templates/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/templates/operator.yaml -------------------------------------------------------------------------------- /src/stable/iomesh/templates/version-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/templates/version-map.yaml -------------------------------------------------------------------------------- /src/stable/iomesh/templates/webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/templates/webhook.yaml -------------------------------------------------------------------------------- /src/stable/iomesh/templates/zookeeper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/templates/zookeeper.yaml -------------------------------------------------------------------------------- /src/stable/iomesh/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/iomesh/values.yaml -------------------------------------------------------------------------------- /src/stable/jh/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/CHANGELOG.md -------------------------------------------------------------------------------- /src/stable/jh/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/stable/jh/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/Chart.yaml -------------------------------------------------------------------------------- /src/stable/jh/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/LICENSE.md -------------------------------------------------------------------------------- /src/stable/jh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/README.md -------------------------------------------------------------------------------- /src/stable/jh/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/Rakefile -------------------------------------------------------------------------------- /src/stable/jh/charts/cert-manager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/cert-manager/Chart.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/cert-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/cert-manager/README.md -------------------------------------------------------------------------------- /src/stable/jh/charts/cert-manager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/cert-manager/values.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/gitlab-runner/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/gitlab-runner/Chart.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/gitlab-runner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/gitlab-runner/LICENSE -------------------------------------------------------------------------------- /src/stable/jh/charts/gitlab-runner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/gitlab-runner/Makefile -------------------------------------------------------------------------------- /src/stable/jh/charts/gitlab-runner/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/gitlab-runner/NOTICE -------------------------------------------------------------------------------- /src/stable/jh/charts/gitlab-runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/gitlab-runner/README.md -------------------------------------------------------------------------------- /src/stable/jh/charts/gitlab/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/gitlab/Chart.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/gitlab/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/gitlab/requirements.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/gitlab/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/gitlab/values.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/grafana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/grafana/.helmignore -------------------------------------------------------------------------------- /src/stable/jh/charts/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/grafana/Chart.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/grafana/README.md -------------------------------------------------------------------------------- /src/stable/jh/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/stable/jh/charts/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/grafana/values.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/minio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/minio/Chart.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/minio/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/minio/templates/pdb.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/minio/values.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/nginx-ingress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/nginx-ingress/Chart.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/nginx-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/nginx-ingress/README.md -------------------------------------------------------------------------------- /src/stable/jh/charts/postgresql/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/postgresql/.helmignore -------------------------------------------------------------------------------- /src/stable/jh/charts/postgresql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/postgresql/Chart.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/postgresql/README.md -------------------------------------------------------------------------------- /src/stable/jh/charts/postgresql/ci/shmvolume-disabled-values.yaml: -------------------------------------------------------------------------------- 1 | shmVolume: 2 | enabled: false 3 | -------------------------------------------------------------------------------- /src/stable/jh/charts/postgresql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/postgresql/values.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/prometheus/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/prometheus/.helmignore -------------------------------------------------------------------------------- /src/stable/jh/charts/prometheus/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/prometheus/Chart.lock -------------------------------------------------------------------------------- /src/stable/jh/charts/prometheus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/prometheus/Chart.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/prometheus/README.md -------------------------------------------------------------------------------- /src/stable/jh/charts/prometheus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/prometheus/values.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/redis/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/redis/.helmignore -------------------------------------------------------------------------------- /src/stable/jh/charts/redis/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/redis/Chart.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/redis/README.md -------------------------------------------------------------------------------- /src/stable/jh/charts/redis/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/redis/templates/pdb.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/redis/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/redis/templates/psp.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/redis/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/redis/values.schema.json -------------------------------------------------------------------------------- /src/stable/jh/charts/redis/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/redis/values.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/registry/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stable/jh/charts/registry/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/registry/Chart.yaml -------------------------------------------------------------------------------- /src/stable/jh/charts/registry/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/registry/index.md -------------------------------------------------------------------------------- /src/stable/jh/charts/registry/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/charts/registry/values.yaml -------------------------------------------------------------------------------- /src/stable/jh/deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/deps.yml -------------------------------------------------------------------------------- /src/stable/jh/icons/helm-chart-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/icons/helm-chart-icon.svg -------------------------------------------------------------------------------- /src/stable/jh/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/requirements.lock -------------------------------------------------------------------------------- /src/stable/jh/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/requirements.yaml -------------------------------------------------------------------------------- /src/stable/jh/support/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/support/crd.yaml -------------------------------------------------------------------------------- /src/stable/jh/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/jh/templates/_application.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_application.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_boolean.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_boolean.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_certificates.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_certificates.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_checkConfig.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_checkConfig.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_checkConfig_geo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_checkConfig_geo.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_deprecations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_deprecations.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_geo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_geo.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_gitaly.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_gitaly.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_ingress.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_kas.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_kas.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_migrations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_migrations.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_minio.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_minio.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_oauth.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_oauth.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_pages.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_pages.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_praefect.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_praefect.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_rails.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_rails.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_redis.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_registry.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_registry.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_runcheck.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_runcheck.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_runner.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_runner.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_shell.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_shell.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/_workhorse.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/_workhorse.tpl -------------------------------------------------------------------------------- /src/stable/jh/templates/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/application.yaml -------------------------------------------------------------------------------- /src/stable/jh/templates/chart-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/chart-info.yaml -------------------------------------------------------------------------------- /src/stable/jh/templates/initdb-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/templates/initdb-configmap.yaml -------------------------------------------------------------------------------- /src/stable/jh/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/jh/values.yaml -------------------------------------------------------------------------------- /src/stable/juicefs/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/juicefs/.helmignore -------------------------------------------------------------------------------- /src/stable/juicefs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/juicefs/Chart.yaml -------------------------------------------------------------------------------- /src/stable/juicefs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/juicefs/README.md -------------------------------------------------------------------------------- /src/stable/juicefs/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/juicefs/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/juicefs/templates/_certs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/juicefs/templates/_certs.tpl -------------------------------------------------------------------------------- /src/stable/juicefs/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/juicefs/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/juicefs/templates/controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/juicefs/templates/controller.yaml -------------------------------------------------------------------------------- /src/stable/juicefs/templates/csidriver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/juicefs/templates/csidriver.yaml -------------------------------------------------------------------------------- /src/stable/juicefs/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/juicefs/templates/daemonset.yaml -------------------------------------------------------------------------------- /src/stable/juicefs/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/juicefs/templates/secret.yaml -------------------------------------------------------------------------------- /src/stable/juicefs/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/juicefs/templates/service.yaml -------------------------------------------------------------------------------- /src/stable/juicefs/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/juicefs/values.yaml -------------------------------------------------------------------------------- /src/stable/meshery/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/meshery/.helmignore -------------------------------------------------------------------------------- /src/stable/meshery/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/meshery/Chart.yaml -------------------------------------------------------------------------------- /src/stable/meshery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/meshery/README.md -------------------------------------------------------------------------------- /src/stable/meshery/charts/meshery-broker/values.yaml: -------------------------------------------------------------------------------- 1 | name: meshery-broker 2 | replica: 1 3 | -------------------------------------------------------------------------------- /src/stable/meshery/crds/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/meshery/crds/crds.yaml -------------------------------------------------------------------------------- /src/stable/meshery/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/meshery/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/meshery/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/meshery/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/meshery/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/meshery/templates/clusterrole.yaml -------------------------------------------------------------------------------- /src/stable/meshery/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/meshery/templates/deployment.yaml -------------------------------------------------------------------------------- /src/stable/meshery/templates/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/meshery/templates/gateway.yaml -------------------------------------------------------------------------------- /src/stable/meshery/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/meshery/templates/ingress.yaml -------------------------------------------------------------------------------- /src/stable/meshery/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/meshery/templates/service.yaml -------------------------------------------------------------------------------- /src/stable/meshery/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/meshery/values.yaml -------------------------------------------------------------------------------- /src/stable/nocalhost/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/nocalhost/Chart.yaml -------------------------------------------------------------------------------- /src/stable/nocalhost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/nocalhost/README.md -------------------------------------------------------------------------------- /src/stable/nocalhost/charts/mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/nocalhost/charts/mariadb/README.md -------------------------------------------------------------------------------- /src/stable/nocalhost/sql/nocalhost-api.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/nocalhost/sql/nocalhost-api.sql -------------------------------------------------------------------------------- /src/stable/nocalhost/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/nocalhost/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/nocalhost/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/nocalhost/templates/configmap.yaml -------------------------------------------------------------------------------- /src/stable/nocalhost/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/nocalhost/values.yaml -------------------------------------------------------------------------------- /src/stable/openelb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/openelb/Chart.yaml -------------------------------------------------------------------------------- /src/stable/openelb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/openelb/README.md -------------------------------------------------------------------------------- /src/stable/openelb/crds/bgpconfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/openelb/crds/bgpconfs.yaml -------------------------------------------------------------------------------- /src/stable/openelb/crds/bgppeers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/openelb/crds/bgppeers.yaml -------------------------------------------------------------------------------- /src/stable/openelb/crds/eips.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/openelb/crds/eips.yaml -------------------------------------------------------------------------------- /src/stable/openelb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/openelb/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/openelb/templates/_helper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/openelb/templates/_helper.tpl -------------------------------------------------------------------------------- /src/stable/openelb/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/openelb/templates/clusterrole.yaml -------------------------------------------------------------------------------- /src/stable/openelb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/openelb/values.yaml -------------------------------------------------------------------------------- /src/stable/pulsar/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/.helmignore -------------------------------------------------------------------------------- /src/stable/pulsar/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/Chart.yaml -------------------------------------------------------------------------------- /src/stable/pulsar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/README.md -------------------------------------------------------------------------------- /src/stable/pulsar/templates/_autorecovery.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/_autorecovery.tpl -------------------------------------------------------------------------------- /src/stable/pulsar/templates/_bookkeeper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/_bookkeeper.tpl -------------------------------------------------------------------------------- /src/stable/pulsar/templates/_broker.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/_broker.tpl -------------------------------------------------------------------------------- /src/stable/pulsar/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/pulsar/templates/_toolset.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/_toolset.tpl -------------------------------------------------------------------------------- /src/stable/pulsar/templates/_zookeeper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/_zookeeper.tpl -------------------------------------------------------------------------------- /src/stable/pulsar/templates/broker-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/broker-pdb.yaml -------------------------------------------------------------------------------- /src/stable/pulsar/templates/broker-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/broker-rbac.yaml -------------------------------------------------------------------------------- /src/stable/pulsar/templates/keytool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/keytool.yaml -------------------------------------------------------------------------------- /src/stable/pulsar/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/namespace.yaml -------------------------------------------------------------------------------- /src/stable/pulsar/templates/proxy-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/proxy-pdb.yaml -------------------------------------------------------------------------------- /src/stable/pulsar/templates/proxy-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/proxy-rbac.yaml -------------------------------------------------------------------------------- /src/stable/pulsar/templates/toolset-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/templates/toolset-rbac.yaml -------------------------------------------------------------------------------- /src/stable/pulsar/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/pulsar/values.yaml -------------------------------------------------------------------------------- /src/stable/stonedb-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/stonedb-chart/.helmignore -------------------------------------------------------------------------------- /src/stable/stonedb-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/stonedb-chart/Chart.yaml -------------------------------------------------------------------------------- /src/stable/stonedb-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/stonedb-chart/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/stonedb-chart/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/stonedb-chart/templates/pvc.yaml -------------------------------------------------------------------------------- /src/stable/stonedb-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/stonedb-chart/values.yaml -------------------------------------------------------------------------------- /src/stable/theia/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/theia/.helmignore -------------------------------------------------------------------------------- /src/stable/theia/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/theia/Chart.yaml -------------------------------------------------------------------------------- /src/stable/theia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/theia/README.md -------------------------------------------------------------------------------- /src/stable/theia/conf/theia-manager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/theia/conf/theia-manager.conf -------------------------------------------------------------------------------- /src/stable/theia/provisioning/datasources/migrators/000001_0-1-0.down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stable/theia/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/theia/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/theia/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/theia/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/theia/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/theia/values.yaml -------------------------------------------------------------------------------- /src/stable/vsphere-cpi/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-cpi/.helmignore -------------------------------------------------------------------------------- /src/stable/vsphere-cpi/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-cpi/Chart.yaml -------------------------------------------------------------------------------- /src/stable/vsphere-cpi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-cpi/README.md -------------------------------------------------------------------------------- /src/stable/vsphere-cpi/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-cpi/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/vsphere-cpi/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-cpi/templates/rbac.yaml -------------------------------------------------------------------------------- /src/stable/vsphere-cpi/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-cpi/values.yaml -------------------------------------------------------------------------------- /src/stable/vsphere-csi-driver/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-csi-driver/Chart.yaml -------------------------------------------------------------------------------- /src/stable/vsphere-csi-driver/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-csi-driver/values.yaml -------------------------------------------------------------------------------- /src/stable/vsphere-csi/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-csi/.helmignore -------------------------------------------------------------------------------- /src/stable/vsphere-csi/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-csi/Chart.yaml -------------------------------------------------------------------------------- /src/stable/vsphere-csi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-csi/README.md -------------------------------------------------------------------------------- /src/stable/vsphere-csi/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-csi/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/vsphere-csi/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/vsphere-csi/values.yaml -------------------------------------------------------------------------------- /src/stable/ys1000/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ys1000/Chart.yaml -------------------------------------------------------------------------------- /src/stable/ys1000/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ys1000/README.md -------------------------------------------------------------------------------- /src/stable/ys1000/crds/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ys1000/crds/crds.yaml -------------------------------------------------------------------------------- /src/stable/ys1000/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ys1000/templates/NOTES.txt -------------------------------------------------------------------------------- /src/stable/ys1000/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ys1000/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/stable/ys1000/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ys1000/templates/hpa.yaml -------------------------------------------------------------------------------- /src/stable/ys1000/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ys1000/templates/ingress.yaml -------------------------------------------------------------------------------- /src/stable/ys1000/templates/mig-users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ys1000/templates/mig-users.yaml -------------------------------------------------------------------------------- /src/stable/ys1000/templates/migconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ys1000/templates/migconfig.yaml -------------------------------------------------------------------------------- /src/stable/ys1000/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ys1000/templates/roles.yaml -------------------------------------------------------------------------------- /src/stable/ys1000/templates/s3-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ys1000/templates/s3-secret.yaml -------------------------------------------------------------------------------- /src/stable/ys1000/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/stable/ys1000/values.yaml -------------------------------------------------------------------------------- /src/test/antrea/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/.helmignore -------------------------------------------------------------------------------- /src/test/antrea/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/Chart.yaml -------------------------------------------------------------------------------- /src/test/antrea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/README.md -------------------------------------------------------------------------------- /src/test/antrea/conf/antrea-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/conf/antrea-agent.conf -------------------------------------------------------------------------------- /src/test/antrea/conf/antrea-cni.conflist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/conf/antrea-cni.conflist -------------------------------------------------------------------------------- /src/test/antrea/crds/antreaagentinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/crds/antreaagentinfo.yaml -------------------------------------------------------------------------------- /src/test/antrea/crds/clustergroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/crds/clustergroup.yaml -------------------------------------------------------------------------------- /src/test/antrea/crds/egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/crds/egress.yaml -------------------------------------------------------------------------------- /src/test/antrea/crds/externalentity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/crds/externalentity.yaml -------------------------------------------------------------------------------- /src/test/antrea/crds/externalippool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/crds/externalippool.yaml -------------------------------------------------------------------------------- /src/test/antrea/crds/externalnode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/crds/externalnode.yaml -------------------------------------------------------------------------------- /src/test/antrea/crds/ippool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/crds/ippool.yaml -------------------------------------------------------------------------------- /src/test/antrea/crds/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/crds/networkpolicy.yaml -------------------------------------------------------------------------------- /src/test/antrea/crds/tier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/crds/tier.yaml -------------------------------------------------------------------------------- /src/test/antrea/crds/traceflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/crds/traceflow.yaml -------------------------------------------------------------------------------- /src/test/antrea/crds/trafficcontrol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/crds/trafficcontrol.yaml -------------------------------------------------------------------------------- /src/test/antrea/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/antrea/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/antrea/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/templates/configmap.yaml -------------------------------------------------------------------------------- /src/test/antrea/templates/crds/group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/templates/crds/group.yaml -------------------------------------------------------------------------------- /src/test/antrea/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/antrea/values.yaml -------------------------------------------------------------------------------- /src/test/apisix/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/apisix/.helmignore -------------------------------------------------------------------------------- /src/test/apisix/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/apisix/Chart.yaml -------------------------------------------------------------------------------- /src/test/apisix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/apisix/LICENSE -------------------------------------------------------------------------------- /src/test/apisix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/apisix/README.md -------------------------------------------------------------------------------- /src/test/apisix/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/apisix/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/apisix/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/apisix/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/apisix/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/apisix/templates/configmap.yaml -------------------------------------------------------------------------------- /src/test/apisix/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/apisix/templates/deployment.yaml -------------------------------------------------------------------------------- /src/test/apisix/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/apisix/templates/hpa.yaml -------------------------------------------------------------------------------- /src/test/apisix/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/apisix/templates/ingress.yaml -------------------------------------------------------------------------------- /src/test/apisix/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/apisix/values.yaml -------------------------------------------------------------------------------- /src/test/aws-ebs-csi-driver/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/aws-ebs-csi-driver/.helmignore -------------------------------------------------------------------------------- /src/test/aws-ebs-csi-driver/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/aws-ebs-csi-driver/Chart.yaml -------------------------------------------------------------------------------- /src/test/aws-ebs-csi-driver/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/aws-ebs-csi-driver/values.yaml -------------------------------------------------------------------------------- /src/test/aws-efs-csi-driver/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/aws-efs-csi-driver/Chart.yaml -------------------------------------------------------------------------------- /src/test/aws-efs-csi-driver/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/aws-efs-csi-driver/values.yaml -------------------------------------------------------------------------------- /src/test/aws-fsx-csi-driver/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/aws-fsx-csi-driver/.helmignore -------------------------------------------------------------------------------- /src/test/aws-fsx-csi-driver/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/aws-fsx-csi-driver/Chart.yaml -------------------------------------------------------------------------------- /src/test/aws-fsx-csi-driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/aws-fsx-csi-driver/README.md -------------------------------------------------------------------------------- /src/test/aws-fsx-csi-driver/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/aws-fsx-csi-driver/values.yaml -------------------------------------------------------------------------------- /src/test/biz-engine/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/biz-engine/.helmignore -------------------------------------------------------------------------------- /src/test/biz-engine/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/biz-engine/Chart.yaml -------------------------------------------------------------------------------- /src/test/biz-engine/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/biz-engine/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/biz-engine/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/biz-engine/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/biz-engine/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/biz-engine/templates/ingress.yaml -------------------------------------------------------------------------------- /src/test/biz-engine/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/biz-engine/templates/service.yaml -------------------------------------------------------------------------------- /src/test/biz-engine/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/biz-engine/values.yaml -------------------------------------------------------------------------------- /src/test/ccm-qingcloud/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/ccm-qingcloud/.helmignore -------------------------------------------------------------------------------- /src/test/ccm-qingcloud/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/ccm-qingcloud/Chart.yaml -------------------------------------------------------------------------------- /src/test/ccm-qingcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/ccm-qingcloud/README.md -------------------------------------------------------------------------------- /src/test/ccm-qingcloud/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/ccm-qingcloud/values.yaml -------------------------------------------------------------------------------- /src/test/cni-hostnic/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/cni-hostnic/.helmignore -------------------------------------------------------------------------------- /src/test/cni-hostnic/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/cni-hostnic/Chart.yaml -------------------------------------------------------------------------------- /src/test/cni-hostnic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/cni-hostnic/README.md -------------------------------------------------------------------------------- /src/test/cni-hostnic/crds/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/cni-hostnic/crds/crd.yaml -------------------------------------------------------------------------------- /src/test/cni-hostnic/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/cni-hostnic/templates/config.yaml -------------------------------------------------------------------------------- /src/test/cni-hostnic/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/cni-hostnic/templates/rbac.yaml -------------------------------------------------------------------------------- /src/test/cni-hostnic/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/cni-hostnic/values.yaml -------------------------------------------------------------------------------- /src/test/csi-neonsan/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/csi-neonsan/.helmignore -------------------------------------------------------------------------------- /src/test/csi-neonsan/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/csi-neonsan/Chart.yaml -------------------------------------------------------------------------------- /src/test/csi-neonsan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/csi-neonsan/README.md -------------------------------------------------------------------------------- /src/test/csi-neonsan/templates/sc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/csi-neonsan/templates/sc.yaml -------------------------------------------------------------------------------- /src/test/csi-neonsan/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/csi-neonsan/values.yaml -------------------------------------------------------------------------------- /src/test/csi-qingcloud/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/csi-qingcloud/.helmignore -------------------------------------------------------------------------------- /src/test/csi-qingcloud/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/csi-qingcloud/Chart.yaml -------------------------------------------------------------------------------- /src/test/csi-qingcloud/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/csi-qingcloud/OWNERS -------------------------------------------------------------------------------- /src/test/csi-qingcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/csi-qingcloud/README.md -------------------------------------------------------------------------------- /src/test/csi-qingcloud/templates/sc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/csi-qingcloud/templates/sc.yaml -------------------------------------------------------------------------------- /src/test/csi-qingcloud/templates/vpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/csi-qingcloud/templates/vpa.yaml -------------------------------------------------------------------------------- /src/test/csi-qingcloud/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/csi-qingcloud/values.yaml -------------------------------------------------------------------------------- /src/test/etcd/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/etcd/.helmignore -------------------------------------------------------------------------------- /src/test/etcd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/etcd/Chart.yaml -------------------------------------------------------------------------------- /src/test/etcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/etcd/README.md -------------------------------------------------------------------------------- /src/test/etcd/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/etcd/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/etcd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/etcd/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/etcd/templates/cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/etcd/templates/cm.yaml -------------------------------------------------------------------------------- /src/test/etcd/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/etcd/templates/service.yaml -------------------------------------------------------------------------------- /src/test/etcd/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/etcd/templates/statefulset.yaml -------------------------------------------------------------------------------- /src/test/etcd/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/etcd/values.schema.json -------------------------------------------------------------------------------- /src/test/etcd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/etcd/values.yaml -------------------------------------------------------------------------------- /src/test/flow-aggregator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/flow-aggregator/.helmignore -------------------------------------------------------------------------------- /src/test/flow-aggregator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/flow-aggregator/Chart.yaml -------------------------------------------------------------------------------- /src/test/flow-aggregator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/flow-aggregator/README.md -------------------------------------------------------------------------------- /src/test/flow-aggregator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/flow-aggregator/values.yaml -------------------------------------------------------------------------------- /src/test/hertzbeat/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/hertzbeat/.helmignore -------------------------------------------------------------------------------- /src/test/hertzbeat/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/hertzbeat/Chart.yaml -------------------------------------------------------------------------------- /src/test/hertzbeat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/hertzbeat/README.md -------------------------------------------------------------------------------- /src/test/hertzbeat/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/hertzbeat/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/hertzbeat/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/hertzbeat/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/hertzbeat/templates/tsdb/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/hertzbeat/templates/tsdb/pvc.yaml -------------------------------------------------------------------------------- /src/test/hertzbeat/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/hertzbeat/values.yaml -------------------------------------------------------------------------------- /src/test/ks-installer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/ks-installer/.helmignore -------------------------------------------------------------------------------- /src/test/ks-installer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/ks-installer/Chart.yaml -------------------------------------------------------------------------------- /src/test/ks-installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/ks-installer/README.md -------------------------------------------------------------------------------- /src/test/ks-installer/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/ks-installer/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/ks-installer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/ks-installer/values.yaml -------------------------------------------------------------------------------- /src/test/metersphere/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/metersphere/Chart.yaml -------------------------------------------------------------------------------- /src/test/metersphere/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/metersphere/README.md -------------------------------------------------------------------------------- /src/test/metersphere/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/metersphere/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/metersphere/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/metersphere/values.yaml -------------------------------------------------------------------------------- /src/test/minio-gateway/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/minio-gateway/.helmignore -------------------------------------------------------------------------------- /src/test/minio-gateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/minio-gateway/Chart.yaml -------------------------------------------------------------------------------- /src/test/minio-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/minio-gateway/README.md -------------------------------------------------------------------------------- /src/test/minio-gateway/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/minio-gateway/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/minio-gateway/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/minio-gateway/templates/pvc.yaml -------------------------------------------------------------------------------- /src/test/minio-gateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/minio-gateway/values.yaml -------------------------------------------------------------------------------- /src/test/mongodb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/mongodb/.helmignore -------------------------------------------------------------------------------- /src/test/mongodb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/mongodb/Chart.yaml -------------------------------------------------------------------------------- /src/test/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/mongodb/README.md -------------------------------------------------------------------------------- /src/test/mongodb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/mongodb/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/mongodb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/mongodb/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/mongodb/templates/cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/mongodb/templates/cm.yaml -------------------------------------------------------------------------------- /src/test/mongodb/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/mongodb/templates/service.yaml -------------------------------------------------------------------------------- /src/test/mongodb/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/mongodb/values.schema.json -------------------------------------------------------------------------------- /src/test/mongodb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/mongodb/values.yaml -------------------------------------------------------------------------------- /src/test/nacos/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/.helmignore -------------------------------------------------------------------------------- /src/test/nacos/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/Chart.yaml -------------------------------------------------------------------------------- /src/test/nacos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/README.md -------------------------------------------------------------------------------- /src/test/nacos/charts/mysql/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/charts/mysql/.helmignore -------------------------------------------------------------------------------- /src/test/nacos/charts/mysql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/charts/mysql/Chart.yaml -------------------------------------------------------------------------------- /src/test/nacos/charts/mysql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/charts/mysql/values.yaml -------------------------------------------------------------------------------- /src/test/nacos/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/nacos/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/nacos/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/templates/configmap.yaml -------------------------------------------------------------------------------- /src/test/nacos/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/templates/deployment.yaml -------------------------------------------------------------------------------- /src/test/nacos/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/templates/ingress.yaml -------------------------------------------------------------------------------- /src/test/nacos/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/templates/service.yaml -------------------------------------------------------------------------------- /src/test/nacos/templates/storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/templates/storageclass.yaml -------------------------------------------------------------------------------- /src/test/nacos/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/nacos/values.yaml -------------------------------------------------------------------------------- /src/test/online-boutique/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/online-boutique/.helmignore -------------------------------------------------------------------------------- /src/test/online-boutique/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/online-boutique/Chart.yaml -------------------------------------------------------------------------------- /src/test/online-boutique/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/online-boutique/Readme.md -------------------------------------------------------------------------------- /src/test/online-boutique/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/online-boutique/demo.jpg -------------------------------------------------------------------------------- /src/test/online-boutique/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/test/online-boutique/templates/ad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/online-boutique/templates/ad.yaml -------------------------------------------------------------------------------- /src/test/online-boutique/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/online-boutique/values.yaml -------------------------------------------------------------------------------- /src/test/postgresql/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/postgresql/.helmignore -------------------------------------------------------------------------------- /src/test/postgresql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/postgresql/Chart.yaml -------------------------------------------------------------------------------- /src/test/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/postgresql/README.md -------------------------------------------------------------------------------- /src/test/postgresql/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/postgresql/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/postgresql/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/postgresql/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/postgresql/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/postgresql/templates/service.yaml -------------------------------------------------------------------------------- /src/test/postgresql/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/postgresql/values.schema.json -------------------------------------------------------------------------------- /src/test/postgresql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/postgresql/values.yaml -------------------------------------------------------------------------------- /src/test/rabbitmq/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/rabbitmq/Chart.yaml -------------------------------------------------------------------------------- /src/test/rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/rabbitmq/README.md -------------------------------------------------------------------------------- /src/test/rabbitmq/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/rabbitmq/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/rabbitmq/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/rabbitmq/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/rabbitmq/templates/cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/rabbitmq/templates/cm.yaml -------------------------------------------------------------------------------- /src/test/rabbitmq/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/rabbitmq/templates/service.yaml -------------------------------------------------------------------------------- /src/test/rabbitmq/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/rabbitmq/values.schema.json -------------------------------------------------------------------------------- /src/test/rabbitmq/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/rabbitmq/values.yaml -------------------------------------------------------------------------------- /src/test/radondb-clickhouse/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/radondb-clickhouse/Chart.yaml -------------------------------------------------------------------------------- /src/test/radondb-clickhouse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/radondb-clickhouse/README.md -------------------------------------------------------------------------------- /src/test/radondb-clickhouse/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/radondb-clickhouse/values.yaml -------------------------------------------------------------------------------- /src/test/radondb-mysql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/radondb-mysql/Chart.yaml -------------------------------------------------------------------------------- /src/test/radondb-mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/radondb-mysql/README.md -------------------------------------------------------------------------------- /src/test/radondb-mysql/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/radondb-mysql/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/radondb-mysql/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/radondb-mysql/templates/rbac.yaml -------------------------------------------------------------------------------- /src/test/radondb-mysql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/radondb-mysql/values.yaml -------------------------------------------------------------------------------- /src/test/radondb-postgresql/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/radondb-postgresql/.helmignore -------------------------------------------------------------------------------- /src/test/radondb-postgresql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/radondb-postgresql/Chart.yaml -------------------------------------------------------------------------------- /src/test/radondb-postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/radondb-postgresql/README.md -------------------------------------------------------------------------------- /src/test/radondb-postgresql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/radondb-postgresql/values.yaml -------------------------------------------------------------------------------- /src/test/rbd-provisioner/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/rbd-provisioner/.helmignore -------------------------------------------------------------------------------- /src/test/rbd-provisioner/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/rbd-provisioner/Chart.yaml -------------------------------------------------------------------------------- /src/test/rbd-provisioner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/rbd-provisioner/README.md -------------------------------------------------------------------------------- /src/test/rbd-provisioner/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/rbd-provisioner/values.yaml -------------------------------------------------------------------------------- /src/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/readme.md -------------------------------------------------------------------------------- /src/test/redis/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/redis/.helmignore -------------------------------------------------------------------------------- /src/test/redis/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/redis/Chart.yaml -------------------------------------------------------------------------------- /src/test/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/redis/README.md -------------------------------------------------------------------------------- /src/test/redis/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/redis/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/redis/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/redis/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/redis/templates/cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/redis/templates/cm.yaml -------------------------------------------------------------------------------- /src/test/redis/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/redis/templates/service.yaml -------------------------------------------------------------------------------- /src/test/redis/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/redis/templates/statefulset.yaml -------------------------------------------------------------------------------- /src/test/redis/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/redis/values.schema.json -------------------------------------------------------------------------------- /src/test/redis/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/redis/values.yaml -------------------------------------------------------------------------------- /src/test/sample-bookinfo/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/sample-bookinfo/.helmignore -------------------------------------------------------------------------------- /src/test/sample-bookinfo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/sample-bookinfo/Chart.yaml -------------------------------------------------------------------------------- /src/test/sample-bookinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/sample-bookinfo/README.md -------------------------------------------------------------------------------- /src/test/sample-bookinfo/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Install Application Successfully. -------------------------------------------------------------------------------- /src/test/sample-bookinfo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/sample-bookinfo/values.yaml -------------------------------------------------------------------------------- /src/test/skywalking/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/skywalking/.helmignore -------------------------------------------------------------------------------- /src/test/skywalking/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/skywalking/Chart.lock -------------------------------------------------------------------------------- /src/test/skywalking/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/skywalking/Chart.yaml -------------------------------------------------------------------------------- /src/test/skywalking/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/skywalking/OWNERS -------------------------------------------------------------------------------- /src/test/skywalking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/skywalking/README.md -------------------------------------------------------------------------------- /src/test/skywalking/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/skywalking/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/skywalking/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/skywalking/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/skywalking/templates/oap-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/skywalking/templates/oap-svc.yaml -------------------------------------------------------------------------------- /src/test/skywalking/templates/ui-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/skywalking/templates/ui-svc.yaml -------------------------------------------------------------------------------- /src/test/skywalking/values-es6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/skywalking/values-es6.yaml -------------------------------------------------------------------------------- /src/test/skywalking/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/skywalking/values.yaml -------------------------------------------------------------------------------- /src/test/snapshot-controller/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/snapshot-controller/.helmignore -------------------------------------------------------------------------------- /src/test/snapshot-controller/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/snapshot-controller/Chart.yaml -------------------------------------------------------------------------------- /src/test/snapshot-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/snapshot-controller/README.md -------------------------------------------------------------------------------- /src/test/snapshot-controller/values.yaml: -------------------------------------------------------------------------------- 1 | repository: csiplugin/snapshot-controller 2 | tag: v4.0.0 3 | pullPolicy: IfNotPresent 4 | -------------------------------------------------------------------------------- /src/test/theia/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/theia/.helmignore -------------------------------------------------------------------------------- /src/test/theia/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/theia/Chart.yaml -------------------------------------------------------------------------------- /src/test/theia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/theia/README.md -------------------------------------------------------------------------------- /src/test/theia/conf/theia-manager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/theia/conf/theia-manager.conf -------------------------------------------------------------------------------- /src/test/theia/provisioning/datasources/migrators/000001_0-1-0.down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/theia/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/theia/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/theia/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/theia/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/theia/templates/grafana/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/theia/templates/grafana/role.yaml -------------------------------------------------------------------------------- /src/test/theia/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/theia/values.yaml -------------------------------------------------------------------------------- /src/test/vsphere-cpi/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-cpi/.helmignore -------------------------------------------------------------------------------- /src/test/vsphere-cpi/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-cpi/Chart.yaml -------------------------------------------------------------------------------- /src/test/vsphere-cpi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-cpi/README.md -------------------------------------------------------------------------------- /src/test/vsphere-cpi/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-cpi/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/vsphere-cpi/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-cpi/templates/rbac.yaml -------------------------------------------------------------------------------- /src/test/vsphere-cpi/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-cpi/templates/secret.yaml -------------------------------------------------------------------------------- /src/test/vsphere-cpi/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-cpi/values.yaml -------------------------------------------------------------------------------- /src/test/vsphere-cpi/vsphere-cpi-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-cpi/vsphere-cpi-0.0.1.tgz -------------------------------------------------------------------------------- /src/test/vsphere-csi-driver/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-csi-driver/Chart.yaml -------------------------------------------------------------------------------- /src/test/vsphere-csi-driver/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-csi-driver/values.yaml -------------------------------------------------------------------------------- /src/test/vsphere-csi/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-csi/.helmignore -------------------------------------------------------------------------------- /src/test/vsphere-csi/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-csi/Chart.lock -------------------------------------------------------------------------------- /src/test/vsphere-csi/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-csi/Chart.yaml -------------------------------------------------------------------------------- /src/test/vsphere-csi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-csi/README.md -------------------------------------------------------------------------------- /src/test/vsphere-csi/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-csi/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/vsphere-csi/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-csi/templates/secret.yaml -------------------------------------------------------------------------------- /src/test/vsphere-csi/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/vsphere-csi/values.yaml -------------------------------------------------------------------------------- /src/test/xenondb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/xenondb/Chart.yaml -------------------------------------------------------------------------------- /src/test/xenondb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/xenondb/README.md -------------------------------------------------------------------------------- /src/test/xenondb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/xenondb/templates/NOTES.txt -------------------------------------------------------------------------------- /src/test/xenondb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/xenondb/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/test/xenondb/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/xenondb/templates/configmap.yaml -------------------------------------------------------------------------------- /src/test/xenondb/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/xenondb/templates/rbac.yaml -------------------------------------------------------------------------------- /src/test/xenondb/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/xenondb/templates/secrets.yaml -------------------------------------------------------------------------------- /src/test/xenondb/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/xenondb/templates/service.yaml -------------------------------------------------------------------------------- /src/test/xenondb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere/helm-charts/HEAD/src/test/xenondb/values.yaml --------------------------------------------------------------------------------