├── .github └── workflows │ ├── on-pull-request.yaml │ └── on-push.yaml ├── .gitignore ├── .whitesource ├── LICENSE ├── README.md └── charts └── vouch ├── .helmignore ├── .test_values.yaml ├── .yamllint ├── Chart.yaml ├── README.md ├── templates ├── NOTES.txt ├── _helpers.tpl ├── deployment.yaml ├── ingress.yaml ├── secret.yaml ├── service.yaml ├── serviceaccount.yaml └── tests │ └── test-connection.yaml └── values.yaml /.github/workflows/on-pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/.github/workflows/on-pull-request.yaml -------------------------------------------------------------------------------- /.github/workflows/on-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/.github/workflows/on-push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | artifacts 3 | -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/.whitesource -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/vouch/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/.helmignore -------------------------------------------------------------------------------- /charts/vouch/.test_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/.test_values.yaml -------------------------------------------------------------------------------- /charts/vouch/.yamllint: -------------------------------------------------------------------------------- 1 | extends: default 2 | 3 | rules: 4 | line-length: {max: 800} 5 | -------------------------------------------------------------------------------- /charts/vouch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/Chart.yaml -------------------------------------------------------------------------------- /charts/vouch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/README.md -------------------------------------------------------------------------------- /charts/vouch/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/vouch/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/vouch/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/vouch/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/vouch/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/templates/secret.yaml -------------------------------------------------------------------------------- /charts/vouch/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/templates/service.yaml -------------------------------------------------------------------------------- /charts/vouch/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/vouch/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/vouch/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vouch/helm-charts/HEAD/charts/vouch/values.yaml --------------------------------------------------------------------------------