├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── dependabot.yml ├── pull_request_template.md ├── stale.yml └── workflows │ ├── lint-test.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── charts └── sorry-cypress │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── changelog.md │ ├── charts │ ├── minio-8.0.9.tgz │ └── mongodb-10.19.0.tgz │ ├── ci │ ├── isolated-director-values.yaml │ ├── kind-config.yaml │ ├── latest-image-values.yaml │ ├── minio-values.yaml │ ├── mongo-connectionstring-values.yaml │ ├── mongo-secret-connectionstring-values.yaml │ ├── mongo-values.yaml │ ├── multiple-replicas-values.yaml │ ├── run-cleaner-enabled.yaml │ └── values.yaml │ ├── contributing │ ├── README.md │ └── k3d.conf │ ├── templates │ ├── _helpers.tpl │ ├── cronjob-run-cleaner.yml │ ├── deployment-api.yml │ ├── deployment-dashboard.yml │ ├── deployment-director.yml │ ├── ingress-api.yml │ ├── ingress-dashboard.yml │ ├── ingress-director.yml │ ├── ingress-s3.tpl │ ├── poddisruptionbudget-api.yml │ ├── poddisruptionbudget-dashboard.yml │ ├── poddisruptionbudget-director.yml │ ├── secret-mongoConnectionString.yml │ ├── secret-s3SecretAccessKey.yml │ ├── service-api.yml │ ├── service-dashboard.yml │ ├── service-director.yml │ ├── service-s3.tpl │ ├── serviceaccount-director.yml │ └── test │ │ └── test-connections.yaml │ └── values.yaml ├── ci.sh ├── lint.yaml └── test.yaml /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/lint-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/.github/workflows/lint-test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Chart.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/sorry-cypress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/.helmignore -------------------------------------------------------------------------------- /charts/sorry-cypress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/Chart.yaml -------------------------------------------------------------------------------- /charts/sorry-cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/README.md -------------------------------------------------------------------------------- /charts/sorry-cypress/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/changelog.md -------------------------------------------------------------------------------- /charts/sorry-cypress/charts/minio-8.0.9.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/charts/minio-8.0.9.tgz -------------------------------------------------------------------------------- /charts/sorry-cypress/charts/mongodb-10.19.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/charts/mongodb-10.19.0.tgz -------------------------------------------------------------------------------- /charts/sorry-cypress/ci/isolated-director-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/ci/isolated-director-values.yaml -------------------------------------------------------------------------------- /charts/sorry-cypress/ci/kind-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/ci/kind-config.yaml -------------------------------------------------------------------------------- /charts/sorry-cypress/ci/latest-image-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/ci/latest-image-values.yaml -------------------------------------------------------------------------------- /charts/sorry-cypress/ci/minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/ci/minio-values.yaml -------------------------------------------------------------------------------- /charts/sorry-cypress/ci/mongo-connectionstring-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/ci/mongo-connectionstring-values.yaml -------------------------------------------------------------------------------- /charts/sorry-cypress/ci/mongo-secret-connectionstring-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/ci/mongo-secret-connectionstring-values.yaml -------------------------------------------------------------------------------- /charts/sorry-cypress/ci/mongo-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/ci/mongo-values.yaml -------------------------------------------------------------------------------- /charts/sorry-cypress/ci/multiple-replicas-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/ci/multiple-replicas-values.yaml -------------------------------------------------------------------------------- /charts/sorry-cypress/ci/run-cleaner-enabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/ci/run-cleaner-enabled.yaml -------------------------------------------------------------------------------- /charts/sorry-cypress/ci/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/sorry-cypress/contributing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/contributing/README.md -------------------------------------------------------------------------------- /charts/sorry-cypress/contributing/k3d.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/contributing/k3d.conf -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/cronjob-run-cleaner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/cronjob-run-cleaner.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/deployment-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/deployment-api.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/deployment-dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/deployment-dashboard.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/deployment-director.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/deployment-director.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/ingress-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/ingress-api.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/ingress-dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/ingress-dashboard.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/ingress-director.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/ingress-director.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/ingress-s3.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/ingress-s3.tpl -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/poddisruptionbudget-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/poddisruptionbudget-api.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/poddisruptionbudget-dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/poddisruptionbudget-dashboard.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/poddisruptionbudget-director.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/poddisruptionbudget-director.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/secret-mongoConnectionString.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/secret-mongoConnectionString.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/secret-s3SecretAccessKey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/secret-s3SecretAccessKey.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/service-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/service-api.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/service-dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/service-dashboard.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/service-director.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/service-director.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/service-s3.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/service-s3.tpl -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/serviceaccount-director.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/serviceaccount-director.yml -------------------------------------------------------------------------------- /charts/sorry-cypress/templates/test/test-connections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/templates/test/test-connections.yaml -------------------------------------------------------------------------------- /charts/sorry-cypress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/charts/sorry-cypress/values.yaml -------------------------------------------------------------------------------- /ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/ci.sh -------------------------------------------------------------------------------- /lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/lint.yaml -------------------------------------------------------------------------------- /test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorry-cypress/charts/HEAD/test.yaml --------------------------------------------------------------------------------