├── .gitignore ├── .gitlab-ci.yml ├── .helmignore ├── .pre-commit-config.yaml ├── README.md ├── charts └── kasm │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── api-deployment.yaml │ ├── api-service.yaml │ ├── cert-manager-certificate.yaml │ ├── db-backup-cron.yaml │ ├── db-backup-pvc.yaml │ ├── db-configmap.yaml │ ├── db-init-job.yaml │ ├── db-service.yaml │ ├── db-statefulset.yaml │ ├── db-upgrade-job.yaml │ ├── extra-objects.yaml │ ├── guac-deployment.yaml │ ├── guac-service.yaml │ ├── image-pull-secret.yaml │ ├── ingress.yaml │ ├── kasm-password-secret.yaml │ ├── manager-deployment.yaml │ ├── manager-service.yaml │ ├── proxy-configmaps.yaml │ ├── proxy-deployment.yaml │ ├── proxy-service-external.yaml │ ├── proxy-service.yaml │ ├── rdp-gateway-configmap.yaml │ ├── rdp-gateway-deployment.yaml │ ├── rdp-gateway-service.yaml │ ├── rdp-https-gateway-deployment.yaml │ ├── rdp-https-gateway-service.yaml │ ├── route.yaml │ └── tests │ │ ├── db_initialization.yaml │ │ └── kasm_login.yaml │ ├── values.schema.json │ └── values.yaml └── docs ├── README.md ├── generate_toc.py ├── kasm-upgrade.md ├── legacy-helm-chart-upgrade.md ├── migrate-to-standalone-db.md ├── new-helm-chart-upgrade.md ├── proxy-multi-region-docker-and-rdp-sessions.md ├── proxy-multi-region-docker-sessions.md ├── template-files ├── db-backup.yaml ├── db-upload.yaml └── kasm-secrets.yaml ├── troubleshooting.md ├── upload-certs-to-k8s.md └── vm-to-kubernetes.md /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore cert files 2 | *.key 3 | *.crt 4 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/.helmignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/README.md -------------------------------------------------------------------------------- /charts/kasm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/Chart.yaml -------------------------------------------------------------------------------- /charts/kasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/README.md -------------------------------------------------------------------------------- /charts/kasm/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/README.md.gotmpl -------------------------------------------------------------------------------- /charts/kasm/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/kasm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/kasm/templates/api-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/api-deployment.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/api-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/api-service.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/cert-manager-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/cert-manager-certificate.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/db-backup-cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/db-backup-cron.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/db-backup-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/db-backup-pvc.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/db-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/db-configmap.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/db-init-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/db-init-job.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/db-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/db-service.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/db-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/db-statefulset.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/db-upgrade-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/db-upgrade-job.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/extra-objects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/extra-objects.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/guac-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/guac-deployment.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/guac-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/guac-service.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/image-pull-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/image-pull-secret.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/kasm-password-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/kasm-password-secret.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/manager-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/manager-deployment.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/manager-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/manager-service.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/proxy-configmaps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/proxy-configmaps.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/proxy-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/proxy-deployment.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/proxy-service-external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/proxy-service-external.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/proxy-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/proxy-service.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/rdp-gateway-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/rdp-gateway-configmap.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/rdp-gateway-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/rdp-gateway-deployment.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/rdp-gateway-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/rdp-gateway-service.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/rdp-https-gateway-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/rdp-https-gateway-deployment.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/rdp-https-gateway-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/rdp-https-gateway-service.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/templates/route.yaml -------------------------------------------------------------------------------- /charts/kasm/templates/tests/db_initialization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/kasm/templates/tests/kasm_login.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/kasm/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/values.schema.json -------------------------------------------------------------------------------- /charts/kasm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/charts/kasm/values.yaml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/generate_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/generate_toc.py -------------------------------------------------------------------------------- /docs/kasm-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/kasm-upgrade.md -------------------------------------------------------------------------------- /docs/legacy-helm-chart-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/legacy-helm-chart-upgrade.md -------------------------------------------------------------------------------- /docs/migrate-to-standalone-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/migrate-to-standalone-db.md -------------------------------------------------------------------------------- /docs/new-helm-chart-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/new-helm-chart-upgrade.md -------------------------------------------------------------------------------- /docs/proxy-multi-region-docker-and-rdp-sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/proxy-multi-region-docker-and-rdp-sessions.md -------------------------------------------------------------------------------- /docs/proxy-multi-region-docker-sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/proxy-multi-region-docker-sessions.md -------------------------------------------------------------------------------- /docs/template-files/db-backup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/template-files/db-backup.yaml -------------------------------------------------------------------------------- /docs/template-files/db-upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/template-files/db-upload.yaml -------------------------------------------------------------------------------- /docs/template-files/kasm-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/template-files/kasm-secrets.yaml -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/upload-certs-to-k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/upload-certs-to-k8s.md -------------------------------------------------------------------------------- /docs/vm-to-kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasmtech/kasm-helm/HEAD/docs/vm-to-kubernetes.md --------------------------------------------------------------------------------