├── .github └── ISSUE_TEMPLATE │ └── issue.md ├── .gitignore ├── ADDING_NEW_PROJECTS.md ├── ADD_ORG_REPO.md ├── ARCHIVING.md ├── BACKUPS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── CSTOR.md ├── GRADUATING.md ├── INSTALL.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── NVME.md ├── PULL_REQUEST_TEMPLATE.md ├── README-prev.md ├── README.md ├── SSL.md ├── SSL.old ├── cert └── cert-issuer.yaml.example ├── cluster_updated.txt ├── current_context.sh ├── devstats-helm ├── .helmignore ├── Chart.yaml ├── secrets │ ├── GF_SECURITY_ADMIN_PASSWORD.secret.example │ ├── GF_SECURITY_ADMIN_USER.secret.example │ ├── GHA2DB_GITHUB_OAUTH.secret.example │ ├── PG_ADMIN_USER.secret.example │ ├── PG_HOST.secret.example │ ├── PG_HOST_RO.secret.example │ ├── PG_PASS.secret.example │ ├── PG_PASS_REP.secret.example │ ├── PG_PASS_RO.secret.example │ ├── PG_PASS_TEAM.secret.example │ ├── PG_PORT.secret.example │ └── PG_USER_RO.secret.example ├── templates.old │ └── devstats-ingress.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── devstats-affiliations-sync.yaml │ ├── devstats-api.yaml │ ├── devstats-backups-pv.yaml │ ├── devstats-backups.yaml │ ├── devstats-bootstrap.yaml │ ├── devstats-grafana-service.yaml │ ├── devstats-grafana.yaml │ ├── devstats-hourly-sync.yaml │ ├── devstats-ingress.yaml │ ├── devstats-namespaces.yaml │ ├── devstats-postgres-endpoint.yaml │ ├── devstats-postgres-role.yaml │ ├── devstats-postgres-rolebinding.yaml │ ├── devstats-postgres-statefulset.yaml │ ├── devstats-postgres-svc-config.yaml │ ├── devstats-postgres-svc-ro.yaml │ ├── devstats-postgres-svc.yaml │ ├── devstats-postgres-svcacct.yaml │ ├── devstats-provisions.yaml │ ├── devstats-pvs.yaml │ ├── devstats-reports.yaml │ ├── devstats-secrets.yaml │ ├── devstats-static-pages.yaml │ ├── devstats-tests.yaml │ └── devstats-vacuum.yaml └── values.yaml ├── equinix ├── NVME_equinix.md └── README_equinix.md ├── find.sh ├── k8s ├── drain-flannel-node.sh └── test-networking.sh ├── manifests ├── columns-kubernetes-cronjob.yaml └── columns-kubernetes-pod.yaml ├── metallb └── config.yaml.example ├── oci ├── oci-create-nlbs-before-fixes.sh ├── oci-create-nlbs-old-wip.sh ├── oci-create-nlbs.sh ├── oci-env.sh ├── oci-find-ubuntu-24.04.sh ├── oci-list-ads.sh ├── oci-list-instances.sh └── oci-net-diagnose.sh ├── openebs ├── cstor-pool-config.yaml.example └── cstor-storageclass.yaml ├── prod ├── README.md └── run.sh ├── scripts ├── autovacuum.sql ├── autovacuum_params_defaults.sh ├── check_cron.sh ├── cleanup_completed_pods.sh ├── cncfkubectl.sh ├── contributors.sh ├── delete_all.sh ├── deploy_backup_to_prod.sh ├── deploy_backup_to_test.sh ├── deploy_prod.sh ├── deploy_test.sh ├── list_all.sh └── patroni_rest_api.sh ├── switch_context.sh └── test ├── README.md └── run.sh /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/.gitignore -------------------------------------------------------------------------------- /ADDING_NEW_PROJECTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/ADDING_NEW_PROJECTS.md -------------------------------------------------------------------------------- /ADD_ORG_REPO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/ADD_ORG_REPO.md -------------------------------------------------------------------------------- /ARCHIVING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/ARCHIVING.md -------------------------------------------------------------------------------- /BACKUPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/BACKUPS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /CSTOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/CSTOR.md -------------------------------------------------------------------------------- /GRADUATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/GRADUATING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/INSTALL.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/LICENSE -------------------------------------------------------------------------------- /NVME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/NVME.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README-prev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/README-prev.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/README.md -------------------------------------------------------------------------------- /SSL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/SSL.md -------------------------------------------------------------------------------- /SSL.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/SSL.old -------------------------------------------------------------------------------- /cert/cert-issuer.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/cert/cert-issuer.yaml.example -------------------------------------------------------------------------------- /cluster_updated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/cluster_updated.txt -------------------------------------------------------------------------------- /current_context.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | kubectl config current-context 3 | -------------------------------------------------------------------------------- /devstats-helm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/.helmignore -------------------------------------------------------------------------------- /devstats-helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/Chart.yaml -------------------------------------------------------------------------------- /devstats-helm/secrets/GF_SECURITY_ADMIN_PASSWORD.secret.example: -------------------------------------------------------------------------------- 1 | password -------------------------------------------------------------------------------- /devstats-helm/secrets/GF_SECURITY_ADMIN_USER.secret.example: -------------------------------------------------------------------------------- 1 | admin -------------------------------------------------------------------------------- /devstats-helm/secrets/GHA2DB_GITHUB_OAUTH.secret.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/secrets/GHA2DB_GITHUB_OAUTH.secret.example -------------------------------------------------------------------------------- /devstats-helm/secrets/PG_ADMIN_USER.secret.example: -------------------------------------------------------------------------------- 1 | postgres -------------------------------------------------------------------------------- /devstats-helm/secrets/PG_HOST.secret.example: -------------------------------------------------------------------------------- 1 | devstats-postgres -------------------------------------------------------------------------------- /devstats-helm/secrets/PG_HOST_RO.secret.example: -------------------------------------------------------------------------------- 1 | devstats-postgres-ro -------------------------------------------------------------------------------- /devstats-helm/secrets/PG_PASS.secret.example: -------------------------------------------------------------------------------- 1 | yourpassword -------------------------------------------------------------------------------- /devstats-helm/secrets/PG_PASS_REP.secret.example: -------------------------------------------------------------------------------- 1 | yourpassword -------------------------------------------------------------------------------- /devstats-helm/secrets/PG_PASS_RO.secret.example: -------------------------------------------------------------------------------- 1 | yourpassword -------------------------------------------------------------------------------- /devstats-helm/secrets/PG_PASS_TEAM.secret.example: -------------------------------------------------------------------------------- 1 | yourpassword -------------------------------------------------------------------------------- /devstats-helm/secrets/PG_PORT.secret.example: -------------------------------------------------------------------------------- 1 | 5432 -------------------------------------------------------------------------------- /devstats-helm/secrets/PG_USER_RO.secret.example: -------------------------------------------------------------------------------- 1 | ro -------------------------------------------------------------------------------- /devstats-helm/templates.old/devstats-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates.old/devstats-ingress.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/NOTES.txt -------------------------------------------------------------------------------- /devstats-helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-affiliations-sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-affiliations-sync.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-api.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-backups-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-backups-pv.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-backups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-backups.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-bootstrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-bootstrap.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-grafana-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-grafana-service.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-grafana.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-hourly-sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-hourly-sync.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-ingress.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-namespaces.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-postgres-endpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-postgres-endpoint.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-postgres-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-postgres-role.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-postgres-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-postgres-rolebinding.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-postgres-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-postgres-statefulset.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-postgres-svc-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-postgres-svc-config.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-postgres-svc-ro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-postgres-svc-ro.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-postgres-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-postgres-svc.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-postgres-svcacct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-postgres-svcacct.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-provisions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-provisions.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-pvs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-pvs.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-reports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-reports.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-secrets.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-static-pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-static-pages.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-tests.yaml -------------------------------------------------------------------------------- /devstats-helm/templates/devstats-vacuum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/templates/devstats-vacuum.yaml -------------------------------------------------------------------------------- /devstats-helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/devstats-helm/values.yaml -------------------------------------------------------------------------------- /equinix/NVME_equinix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/equinix/NVME_equinix.md -------------------------------------------------------------------------------- /equinix/README_equinix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/equinix/README_equinix.md -------------------------------------------------------------------------------- /find.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/find.sh -------------------------------------------------------------------------------- /k8s/drain-flannel-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/k8s/drain-flannel-node.sh -------------------------------------------------------------------------------- /k8s/test-networking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/k8s/test-networking.sh -------------------------------------------------------------------------------- /manifests/columns-kubernetes-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/manifests/columns-kubernetes-cronjob.yaml -------------------------------------------------------------------------------- /manifests/columns-kubernetes-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/manifests/columns-kubernetes-pod.yaml -------------------------------------------------------------------------------- /metallb/config.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/metallb/config.yaml.example -------------------------------------------------------------------------------- /oci/oci-create-nlbs-before-fixes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/oci/oci-create-nlbs-before-fixes.sh -------------------------------------------------------------------------------- /oci/oci-create-nlbs-old-wip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/oci/oci-create-nlbs-old-wip.sh -------------------------------------------------------------------------------- /oci/oci-create-nlbs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/oci/oci-create-nlbs.sh -------------------------------------------------------------------------------- /oci/oci-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/oci/oci-env.sh -------------------------------------------------------------------------------- /oci/oci-find-ubuntu-24.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/oci/oci-find-ubuntu-24.04.sh -------------------------------------------------------------------------------- /oci/oci-list-ads.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/oci/oci-list-ads.sh -------------------------------------------------------------------------------- /oci/oci-list-instances.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/oci/oci-list-instances.sh -------------------------------------------------------------------------------- /oci/oci-net-diagnose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/oci/oci-net-diagnose.sh -------------------------------------------------------------------------------- /openebs/cstor-pool-config.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/openebs/cstor-pool-config.yaml.example -------------------------------------------------------------------------------- /openebs/cstor-storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/openebs/cstor-storageclass.yaml -------------------------------------------------------------------------------- /prod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/prod/README.md -------------------------------------------------------------------------------- /prod/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/prod/run.sh -------------------------------------------------------------------------------- /scripts/autovacuum.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/scripts/autovacuum.sql -------------------------------------------------------------------------------- /scripts/autovacuum_params_defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/scripts/autovacuum_params_defaults.sh -------------------------------------------------------------------------------- /scripts/check_cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/scripts/check_cron.sh -------------------------------------------------------------------------------- /scripts/cleanup_completed_pods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/scripts/cleanup_completed_pods.sh -------------------------------------------------------------------------------- /scripts/cncfkubectl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | KUBECONFIG=/root/.kube/config_cncf kubectl "$@" 3 | -------------------------------------------------------------------------------- /scripts/contributors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/scripts/contributors.sh -------------------------------------------------------------------------------- /scripts/delete_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/scripts/delete_all.sh -------------------------------------------------------------------------------- /scripts/deploy_backup_to_prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/scripts/deploy_backup_to_prod.sh -------------------------------------------------------------------------------- /scripts/deploy_backup_to_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/scripts/deploy_backup_to_test.sh -------------------------------------------------------------------------------- /scripts/deploy_prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/scripts/deploy_prod.sh -------------------------------------------------------------------------------- /scripts/deploy_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/scripts/deploy_test.sh -------------------------------------------------------------------------------- /scripts/list_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/scripts/list_all.sh -------------------------------------------------------------------------------- /scripts/patroni_rest_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/scripts/patroni_rest_api.sh -------------------------------------------------------------------------------- /switch_context.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/switch_context.sh -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/test/README.md -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/devstats-helm/HEAD/test/run.sh --------------------------------------------------------------------------------