├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question-about-using-frappe_docker.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── release_chart.yml │ ├── stale.yml │ └── test_pull.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── README.md.gotmpl ├── chartpress.yaml ├── erpnext ├── .helmignore ├── Chart.lock ├── Chart.yaml ├── README.md ├── charts │ ├── mariadb-11.5.7.tgz │ ├── postgresql-12.1.6.tgz │ └── redis-17.15.2.tgz ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap-nginx-config.yaml │ ├── deployment-gunicorn.yaml │ ├── deployment-nginx.yaml │ ├── deployment-scheduler.yaml │ ├── deployment-socketio.yaml │ ├── deployment-worker-default.yaml │ ├── deployment-worker-long.yaml │ ├── deployment-worker-short.yaml │ ├── hpa-gunicorn.yaml │ ├── hpa-nginx.yaml │ ├── hpa-socketio.yaml │ ├── hpa-worker-default.yaml │ ├── hpa-worker-long.yaml │ ├── hpa-worker-short.yaml │ ├── httproute.yaml │ ├── ingress.yaml │ ├── job-backup.yaml │ ├── job-configure-bench.yaml │ ├── job-create-site.yaml │ ├── job-custom.yaml │ ├── job-drop-site.yaml │ ├── job-fix-volume-permission.yaml │ ├── job-migrate-site.yaml │ ├── pvc-logs.yaml │ ├── pvc.yaml │ ├── secret.yaml │ ├── service-gunicorn.yaml │ ├── service-nginx.yaml │ ├── service-socketio.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── release_wizard ├── requirements.txt ├── setup.sh └── wizard └── tests ├── compose.yaml ├── erpnext ├── values-ingress-mysite.yaml ├── values-job-create-mysite.yaml ├── values-job-migrate-mysite.yaml └── values.yaml ├── mariadb └── values.yaml ├── nfs └── values.yaml ├── registries.yaml └── script.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-about-using-frappe_docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/.github/ISSUE_TEMPLATE/question-about-using-frappe_docker.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/release_chart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/.github/workflows/release_chart.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test_pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/.github/workflows/test_pull.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/README.md -------------------------------------------------------------------------------- /README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/README.md.gotmpl -------------------------------------------------------------------------------- /chartpress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/chartpress.yaml -------------------------------------------------------------------------------- /erpnext/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/.helmignore -------------------------------------------------------------------------------- /erpnext/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/Chart.lock -------------------------------------------------------------------------------- /erpnext/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/Chart.yaml -------------------------------------------------------------------------------- /erpnext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/README.md -------------------------------------------------------------------------------- /erpnext/charts/mariadb-11.5.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/charts/mariadb-11.5.7.tgz -------------------------------------------------------------------------------- /erpnext/charts/postgresql-12.1.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/charts/postgresql-12.1.6.tgz -------------------------------------------------------------------------------- /erpnext/charts/redis-17.15.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/charts/redis-17.15.2.tgz -------------------------------------------------------------------------------- /erpnext/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/NOTES.txt -------------------------------------------------------------------------------- /erpnext/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/_helpers.tpl -------------------------------------------------------------------------------- /erpnext/templates/configmap-nginx-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/configmap-nginx-config.yaml -------------------------------------------------------------------------------- /erpnext/templates/deployment-gunicorn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/deployment-gunicorn.yaml -------------------------------------------------------------------------------- /erpnext/templates/deployment-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/deployment-nginx.yaml -------------------------------------------------------------------------------- /erpnext/templates/deployment-scheduler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/deployment-scheduler.yaml -------------------------------------------------------------------------------- /erpnext/templates/deployment-socketio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/deployment-socketio.yaml -------------------------------------------------------------------------------- /erpnext/templates/deployment-worker-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/deployment-worker-default.yaml -------------------------------------------------------------------------------- /erpnext/templates/deployment-worker-long.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/deployment-worker-long.yaml -------------------------------------------------------------------------------- /erpnext/templates/deployment-worker-short.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/deployment-worker-short.yaml -------------------------------------------------------------------------------- /erpnext/templates/hpa-gunicorn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/hpa-gunicorn.yaml -------------------------------------------------------------------------------- /erpnext/templates/hpa-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/hpa-nginx.yaml -------------------------------------------------------------------------------- /erpnext/templates/hpa-socketio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/hpa-socketio.yaml -------------------------------------------------------------------------------- /erpnext/templates/hpa-worker-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/hpa-worker-default.yaml -------------------------------------------------------------------------------- /erpnext/templates/hpa-worker-long.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/hpa-worker-long.yaml -------------------------------------------------------------------------------- /erpnext/templates/hpa-worker-short.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/hpa-worker-short.yaml -------------------------------------------------------------------------------- /erpnext/templates/httproute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/httproute.yaml -------------------------------------------------------------------------------- /erpnext/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/ingress.yaml -------------------------------------------------------------------------------- /erpnext/templates/job-backup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/job-backup.yaml -------------------------------------------------------------------------------- /erpnext/templates/job-configure-bench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/job-configure-bench.yaml -------------------------------------------------------------------------------- /erpnext/templates/job-create-site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/job-create-site.yaml -------------------------------------------------------------------------------- /erpnext/templates/job-custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/job-custom.yaml -------------------------------------------------------------------------------- /erpnext/templates/job-drop-site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/job-drop-site.yaml -------------------------------------------------------------------------------- /erpnext/templates/job-fix-volume-permission.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/job-fix-volume-permission.yaml -------------------------------------------------------------------------------- /erpnext/templates/job-migrate-site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/job-migrate-site.yaml -------------------------------------------------------------------------------- /erpnext/templates/pvc-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/pvc-logs.yaml -------------------------------------------------------------------------------- /erpnext/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/pvc.yaml -------------------------------------------------------------------------------- /erpnext/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/secret.yaml -------------------------------------------------------------------------------- /erpnext/templates/service-gunicorn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/service-gunicorn.yaml -------------------------------------------------------------------------------- /erpnext/templates/service-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/service-nginx.yaml -------------------------------------------------------------------------------- /erpnext/templates/service-socketio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/service-socketio.yaml -------------------------------------------------------------------------------- /erpnext/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /erpnext/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /erpnext/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/erpnext/values.yaml -------------------------------------------------------------------------------- /release_wizard/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/release_wizard/requirements.txt -------------------------------------------------------------------------------- /release_wizard/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/release_wizard/setup.sh -------------------------------------------------------------------------------- /release_wizard/wizard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/release_wizard/wizard -------------------------------------------------------------------------------- /tests/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/tests/compose.yaml -------------------------------------------------------------------------------- /tests/erpnext/values-ingress-mysite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/tests/erpnext/values-ingress-mysite.yaml -------------------------------------------------------------------------------- /tests/erpnext/values-job-create-mysite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/tests/erpnext/values-job-create-mysite.yaml -------------------------------------------------------------------------------- /tests/erpnext/values-job-migrate-mysite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/tests/erpnext/values-job-migrate-mysite.yaml -------------------------------------------------------------------------------- /tests/erpnext/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/tests/erpnext/values.yaml -------------------------------------------------------------------------------- /tests/mariadb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/tests/mariadb/values.yaml -------------------------------------------------------------------------------- /tests/nfs/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/tests/nfs/values.yaml -------------------------------------------------------------------------------- /tests/registries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/tests/registries.yaml -------------------------------------------------------------------------------- /tests/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frappe/helm/HEAD/tests/script.sh --------------------------------------------------------------------------------