├── .github └── workflows │ └── test.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── src └── entrypoint.sh └── testdata ├── README.md ├── notchart └── README.md ├── test ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml └── test1 ├── .helmignore ├── Chart.yaml ├── templates ├── NOTES.txt ├── _helpers.tpl ├── deployment.yaml ├── hpa.yaml ├── ingress.yaml ├── service.yaml ├── serviceaccount.yaml └── tests │ └── test-connection.yaml └── values.yaml /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/action.yml -------------------------------------------------------------------------------- /src/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/src/entrypoint.sh -------------------------------------------------------------------------------- /testdata/README.md: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /testdata/notchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/notchart/README.md -------------------------------------------------------------------------------- /testdata/test/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test/.helmignore -------------------------------------------------------------------------------- /testdata/test/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test/Chart.yaml -------------------------------------------------------------------------------- /testdata/test/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test/templates/NOTES.txt -------------------------------------------------------------------------------- /testdata/test/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test/templates/_helpers.tpl -------------------------------------------------------------------------------- /testdata/test/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test/templates/deployment.yaml -------------------------------------------------------------------------------- /testdata/test/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test/templates/hpa.yaml -------------------------------------------------------------------------------- /testdata/test/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test/templates/ingress.yaml -------------------------------------------------------------------------------- /testdata/test/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test/templates/service.yaml -------------------------------------------------------------------------------- /testdata/test/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /testdata/test/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /testdata/test/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test/values.yaml -------------------------------------------------------------------------------- /testdata/test1/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test1/.helmignore -------------------------------------------------------------------------------- /testdata/test1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test1/Chart.yaml -------------------------------------------------------------------------------- /testdata/test1/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test1/templates/NOTES.txt -------------------------------------------------------------------------------- /testdata/test1/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test1/templates/_helpers.tpl -------------------------------------------------------------------------------- /testdata/test1/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test1/templates/deployment.yaml -------------------------------------------------------------------------------- /testdata/test1/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test1/templates/hpa.yaml -------------------------------------------------------------------------------- /testdata/test1/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test1/templates/ingress.yaml -------------------------------------------------------------------------------- /testdata/test1/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test1/templates/service.yaml -------------------------------------------------------------------------------- /testdata/test1/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test1/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /testdata/test1/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test1/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /testdata/test1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/helm-gh-pages/HEAD/testdata/test1/values.yaml --------------------------------------------------------------------------------