├── .github ├── dependabot.yaml └── workflows │ ├── lint-test.yaml │ └── release.yml ├── .gitignore ├── .helmignore ├── CHANGELOG.md ├── Chart.yaml ├── README.md ├── ci └── kind-values.yaml ├── templates ├── _helpers.tpl ├── cronjob.yaml ├── external-secret.yaml ├── extra-manifests.yaml ├── hpa.yaml ├── ingress.yaml ├── magento-xdebug.yaml ├── magento.yaml ├── pdb.yaml ├── pvc.yaml ├── secret-store.yaml ├── secrets.yaml ├── service-headless.yaml ├── service-xdebug.yaml └── service.yaml ├── values.yaml ├── values_docker.yaml └── values_gke.yaml /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/.github/workflows/lint-test.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/.gitignore -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | .DS_Store 3 | /.* 4 | /ci 5 | *~ 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/Chart.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/README.md -------------------------------------------------------------------------------- /ci/kind-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/ci/kind-values.yaml -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/cronjob.yaml -------------------------------------------------------------------------------- /templates/external-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/external-secret.yaml -------------------------------------------------------------------------------- /templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/hpa.yaml -------------------------------------------------------------------------------- /templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/ingress.yaml -------------------------------------------------------------------------------- /templates/magento-xdebug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/magento-xdebug.yaml -------------------------------------------------------------------------------- /templates/magento.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/magento.yaml -------------------------------------------------------------------------------- /templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/pdb.yaml -------------------------------------------------------------------------------- /templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/pvc.yaml -------------------------------------------------------------------------------- /templates/secret-store.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/secret-store.yaml -------------------------------------------------------------------------------- /templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/secrets.yaml -------------------------------------------------------------------------------- /templates/service-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/service-headless.yaml -------------------------------------------------------------------------------- /templates/service-xdebug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/service-xdebug.yaml -------------------------------------------------------------------------------- /templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/templates/service.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/values.yaml -------------------------------------------------------------------------------- /values_docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/values_docker.yaml -------------------------------------------------------------------------------- /values_gke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHOENIX-MEDIA/magento2-helm/HEAD/values_gke.yaml --------------------------------------------------------------------------------