├── .helmignore ├── Chart.yaml ├── LICENSE ├── README.md ├── charts └── mysql-1.6.2.tgz ├── initdb.sql ├── requirements.lock ├── requirements.yaml ├── templates ├── NOTES.txt ├── _helpers.tpl ├── configurationFiles-configmap.yaml ├── deployment.guacd.yaml ├── deployment.yaml ├── ingress.yaml ├── pvc.yaml ├── service.guacd.yaml └── service.yaml └── values.yaml /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/.helmignore -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/README.md -------------------------------------------------------------------------------- /charts/mysql-1.6.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/charts/mysql-1.6.2.tgz -------------------------------------------------------------------------------- /initdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/initdb.sql -------------------------------------------------------------------------------- /requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/requirements.lock -------------------------------------------------------------------------------- /requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/requirements.yaml -------------------------------------------------------------------------------- /templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/templates/NOTES.txt -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/configurationFiles-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/templates/configurationFiles-configmap.yaml -------------------------------------------------------------------------------- /templates/deployment.guacd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/templates/deployment.guacd.yaml -------------------------------------------------------------------------------- /templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/templates/deployment.yaml -------------------------------------------------------------------------------- /templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/templates/ingress.yaml -------------------------------------------------------------------------------- /templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/templates/pvc.yaml -------------------------------------------------------------------------------- /templates/service.guacd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/templates/service.guacd.yaml -------------------------------------------------------------------------------- /templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/templates/service.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhatsharma/apache-guacamole-helm-chart/HEAD/values.yaml --------------------------------------------------------------------------------