├── .gitignore ├── .helmignore ├── Chart.yaml ├── LICENSE ├── README.md ├── requirements.yaml ├── templates ├── NOTES.txt ├── _helpers.tpl ├── configmap.yaml ├── deployment.yaml ├── gandalf-configmap.yaml ├── gandalf-deployment.yaml ├── gandalf-service.yaml ├── ingress.yaml ├── rbac.yaml ├── router-deployment.yaml ├── router-rbac.yaml ├── router-service.yaml ├── router-serviceaccount.yaml ├── service.yaml └── serviceaccount.yaml └── values.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | charts/* 2 | requirements.lock 3 | -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/.helmignore -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/README.md -------------------------------------------------------------------------------- /requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/requirements.yaml -------------------------------------------------------------------------------- /templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/NOTES.txt -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/configmap.yaml -------------------------------------------------------------------------------- /templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/deployment.yaml -------------------------------------------------------------------------------- /templates/gandalf-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/gandalf-configmap.yaml -------------------------------------------------------------------------------- /templates/gandalf-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/gandalf-deployment.yaml -------------------------------------------------------------------------------- /templates/gandalf-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/gandalf-service.yaml -------------------------------------------------------------------------------- /templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/ingress.yaml -------------------------------------------------------------------------------- /templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/rbac.yaml -------------------------------------------------------------------------------- /templates/router-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/router-deployment.yaml -------------------------------------------------------------------------------- /templates/router-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/router-rbac.yaml -------------------------------------------------------------------------------- /templates/router-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/router-service.yaml -------------------------------------------------------------------------------- /templates/router-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/router-serviceaccount.yaml -------------------------------------------------------------------------------- /templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/service.yaml -------------------------------------------------------------------------------- /templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfleury/tsuru-helm-chart/HEAD/values.yaml --------------------------------------------------------------------------------