├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── check ├── common.sh ├── in └── out └── test ├── .gitignore ├── name ├── nginx-0.1.0.tgz └── payload.json.template /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkyard/concourse-helm-resource/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkyard/concourse-helm-resource/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkyard/concourse-helm-resource/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkyard/concourse-helm-resource/HEAD/README.md -------------------------------------------------------------------------------- /assets/check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkyard/concourse-helm-resource/HEAD/assets/check -------------------------------------------------------------------------------- /assets/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkyard/concourse-helm-resource/HEAD/assets/common.sh -------------------------------------------------------------------------------- /assets/in: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo '{"version":{"ref":"none"}}' -------------------------------------------------------------------------------- /assets/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkyard/concourse-helm-resource/HEAD/assets/out -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | payload.json 2 | -------------------------------------------------------------------------------- /test/name: -------------------------------------------------------------------------------- 1 | cit -------------------------------------------------------------------------------- /test/nginx-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkyard/concourse-helm-resource/HEAD/test/nginx-0.1.0.tgz -------------------------------------------------------------------------------- /test/payload.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkyard/concourse-helm-resource/HEAD/test/payload.json.template --------------------------------------------------------------------------------