├── .github └── workflows │ ├── build.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README-browser-ops.md ├── README-license-ops.md ├── README-moon2.md ├── README.md ├── boot ├── Chart.yaml ├── crds │ └── boot.aerokube.com_virtualmachines.yaml ├── templates │ ├── config.yaml │ ├── deployment.yaml │ ├── generate-ssh-keys.yaml │ ├── license.yaml │ ├── os.yaml │ ├── roles.yaml │ ├── secret.yaml │ ├── service-account.yaml │ └── service.yaml └── values.yaml ├── browser-ops ├── Chart.yaml ├── templates │ ├── _checkers.tpl │ ├── cron-job.yaml │ ├── role-binding.yaml │ ├── role.yaml │ └── service-account.yaml └── values.yaml ├── ci ├── build.sh ├── static │ ├── favicon.ico │ ├── index.html │ └── og-image.jpg └── test.sh ├── license-ops ├── Chart.yaml ├── templates │ ├── cluster-role-binding.yaml │ ├── cluster-role.yaml │ ├── cron-job.yaml │ ├── role-binding.yaml │ ├── role.yaml │ └── service-account.yaml └── values.yaml ├── moon ├── Chart.yaml ├── templates │ ├── config-map-config.yaml │ ├── config-map-quota.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── resourceqouta.yaml │ ├── role-binding.yaml │ ├── role.yaml │ ├── secret-credentials.yaml │ ├── secret-license.yaml │ ├── secret-users.yaml │ ├── service-account.yaml │ ├── service-browsers.yaml │ └── service-moon.yaml └── values.yaml └── moon2 ├── Chart.yaml ├── crds ├── moon.aerokube.com_browsersets.yaml ├── moon.aerokube.com_configs.yaml ├── moon.aerokube.com_devicesets.yaml ├── moon.aerokube.com_licenses.yaml └── moon.aerokube.com_quotas.yaml ├── templates ├── _checkers.tpl ├── _helpers.tpl ├── browsers.yaml ├── configs.yaml ├── deployment.yaml ├── devices.yaml ├── ingress.yaml ├── license.yaml ├── moon-roles.yaml ├── namespaces.yaml ├── quota.yaml ├── roles.yaml ├── sa.yaml ├── scc.yaml ├── service-accounts.yaml └── service.yaml └── values.yaml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .idea 3 | output 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README-browser-ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/README-browser-ops.md -------------------------------------------------------------------------------- /README-license-ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/README-license-ops.md -------------------------------------------------------------------------------- /README-moon2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/README-moon2.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/README.md -------------------------------------------------------------------------------- /boot/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/boot/Chart.yaml -------------------------------------------------------------------------------- /boot/crds/boot.aerokube.com_virtualmachines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/boot/crds/boot.aerokube.com_virtualmachines.yaml -------------------------------------------------------------------------------- /boot/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/boot/templates/config.yaml -------------------------------------------------------------------------------- /boot/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/boot/templates/deployment.yaml -------------------------------------------------------------------------------- /boot/templates/generate-ssh-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/boot/templates/generate-ssh-keys.yaml -------------------------------------------------------------------------------- /boot/templates/license.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/boot/templates/license.yaml -------------------------------------------------------------------------------- /boot/templates/os.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/boot/templates/os.yaml -------------------------------------------------------------------------------- /boot/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/boot/templates/roles.yaml -------------------------------------------------------------------------------- /boot/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/boot/templates/secret.yaml -------------------------------------------------------------------------------- /boot/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/boot/templates/service-account.yaml -------------------------------------------------------------------------------- /boot/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/boot/templates/service.yaml -------------------------------------------------------------------------------- /boot/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/boot/values.yaml -------------------------------------------------------------------------------- /browser-ops/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/browser-ops/Chart.yaml -------------------------------------------------------------------------------- /browser-ops/templates/_checkers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/browser-ops/templates/_checkers.tpl -------------------------------------------------------------------------------- /browser-ops/templates/cron-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/browser-ops/templates/cron-job.yaml -------------------------------------------------------------------------------- /browser-ops/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/browser-ops/templates/role-binding.yaml -------------------------------------------------------------------------------- /browser-ops/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/browser-ops/templates/role.yaml -------------------------------------------------------------------------------- /browser-ops/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/browser-ops/templates/service-account.yaml -------------------------------------------------------------------------------- /browser-ops/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/browser-ops/values.yaml -------------------------------------------------------------------------------- /ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/ci/build.sh -------------------------------------------------------------------------------- /ci/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/ci/static/favicon.ico -------------------------------------------------------------------------------- /ci/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/ci/static/index.html -------------------------------------------------------------------------------- /ci/static/og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/ci/static/og-image.jpg -------------------------------------------------------------------------------- /ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/ci/test.sh -------------------------------------------------------------------------------- /license-ops/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/license-ops/Chart.yaml -------------------------------------------------------------------------------- /license-ops/templates/cluster-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/license-ops/templates/cluster-role-binding.yaml -------------------------------------------------------------------------------- /license-ops/templates/cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/license-ops/templates/cluster-role.yaml -------------------------------------------------------------------------------- /license-ops/templates/cron-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/license-ops/templates/cron-job.yaml -------------------------------------------------------------------------------- /license-ops/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/license-ops/templates/role-binding.yaml -------------------------------------------------------------------------------- /license-ops/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/license-ops/templates/role.yaml -------------------------------------------------------------------------------- /license-ops/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/license-ops/templates/service-account.yaml -------------------------------------------------------------------------------- /license-ops/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/license-ops/values.yaml -------------------------------------------------------------------------------- /moon/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/Chart.yaml -------------------------------------------------------------------------------- /moon/templates/config-map-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/config-map-config.yaml -------------------------------------------------------------------------------- /moon/templates/config-map-quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/config-map-quota.yaml -------------------------------------------------------------------------------- /moon/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/deployment.yaml -------------------------------------------------------------------------------- /moon/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/ingress.yaml -------------------------------------------------------------------------------- /moon/templates/resourceqouta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/resourceqouta.yaml -------------------------------------------------------------------------------- /moon/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/role-binding.yaml -------------------------------------------------------------------------------- /moon/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/role.yaml -------------------------------------------------------------------------------- /moon/templates/secret-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/secret-credentials.yaml -------------------------------------------------------------------------------- /moon/templates/secret-license.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/secret-license.yaml -------------------------------------------------------------------------------- /moon/templates/secret-users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/secret-users.yaml -------------------------------------------------------------------------------- /moon/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/service-account.yaml -------------------------------------------------------------------------------- /moon/templates/service-browsers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/service-browsers.yaml -------------------------------------------------------------------------------- /moon/templates/service-moon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/templates/service-moon.yaml -------------------------------------------------------------------------------- /moon/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon/values.yaml -------------------------------------------------------------------------------- /moon2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/Chart.yaml -------------------------------------------------------------------------------- /moon2/crds/moon.aerokube.com_browsersets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/crds/moon.aerokube.com_browsersets.yaml -------------------------------------------------------------------------------- /moon2/crds/moon.aerokube.com_configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/crds/moon.aerokube.com_configs.yaml -------------------------------------------------------------------------------- /moon2/crds/moon.aerokube.com_devicesets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/crds/moon.aerokube.com_devicesets.yaml -------------------------------------------------------------------------------- /moon2/crds/moon.aerokube.com_licenses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/crds/moon.aerokube.com_licenses.yaml -------------------------------------------------------------------------------- /moon2/crds/moon.aerokube.com_quotas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/crds/moon.aerokube.com_quotas.yaml -------------------------------------------------------------------------------- /moon2/templates/_checkers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/_checkers.tpl -------------------------------------------------------------------------------- /moon2/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/_helpers.tpl -------------------------------------------------------------------------------- /moon2/templates/browsers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/browsers.yaml -------------------------------------------------------------------------------- /moon2/templates/configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/configs.yaml -------------------------------------------------------------------------------- /moon2/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/deployment.yaml -------------------------------------------------------------------------------- /moon2/templates/devices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/devices.yaml -------------------------------------------------------------------------------- /moon2/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/ingress.yaml -------------------------------------------------------------------------------- /moon2/templates/license.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/license.yaml -------------------------------------------------------------------------------- /moon2/templates/moon-roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/moon-roles.yaml -------------------------------------------------------------------------------- /moon2/templates/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/namespaces.yaml -------------------------------------------------------------------------------- /moon2/templates/quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/quota.yaml -------------------------------------------------------------------------------- /moon2/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/roles.yaml -------------------------------------------------------------------------------- /moon2/templates/sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/sa.yaml -------------------------------------------------------------------------------- /moon2/templates/scc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/scc.yaml -------------------------------------------------------------------------------- /moon2/templates/service-accounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/service-accounts.yaml -------------------------------------------------------------------------------- /moon2/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/templates/service.yaml -------------------------------------------------------------------------------- /moon2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/charts/HEAD/moon2/values.yaml --------------------------------------------------------------------------------