├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── chart └── spin-helm-demo │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ └── service.yaml │ └── values.yaml ├── src ├── images │ └── spinnaker-logo-inline.svg ├── index.html └── site.conf └── values ├── dev.yaml └── prod.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | .env -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/README.md -------------------------------------------------------------------------------- /chart/spin-helm-demo/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/chart/spin-helm-demo/.helmignore -------------------------------------------------------------------------------- /chart/spin-helm-demo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/chart/spin-helm-demo/Chart.yaml -------------------------------------------------------------------------------- /chart/spin-helm-demo/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/chart/spin-helm-demo/templates/_helpers.tpl -------------------------------------------------------------------------------- /chart/spin-helm-demo/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/chart/spin-helm-demo/templates/deployment.yaml -------------------------------------------------------------------------------- /chart/spin-helm-demo/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/chart/spin-helm-demo/templates/service.yaml -------------------------------------------------------------------------------- /chart/spin-helm-demo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/chart/spin-helm-demo/values.yaml -------------------------------------------------------------------------------- /src/images/spinnaker-logo-inline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/src/images/spinnaker-logo-inline.svg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/src/index.html -------------------------------------------------------------------------------- /src/site.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/src/site.conf -------------------------------------------------------------------------------- /values/dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/values/dev.yaml -------------------------------------------------------------------------------- /values/prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armory/spin-helm-demo/HEAD/values/prod.yaml --------------------------------------------------------------------------------