diff --git a/installation/kubernetes/helm-charts/erpnext/templates/deployment-erpnext.yaml b/installation/kubernetes/helm-charts/erpnext/templates/deployment-erpnext.yaml index b97c0c67..d9c94d32 100644 --- a/installation/kubernetes/helm-charts/erpnext/templates/deployment-erpnext.yaml +++ b/installation/kubernetes/helm-charts/erpnext/templates/deployment-erpnext.yaml @@ -35,7 +35,7 @@ spec: mountPath: /var/www/html/sites imagePullPolicy: {{ .Values.nginxImage.pullPolicy }} env: - - name: "FRAPPE_PYERPNEXT_PY" + - name: "FRAPPE_PY" value: "0.0.0.0" - name: "FRAPPE_PY_PORT" value: {{ .Values.frappePyPort | quote }} diff --git a/installation/kubernetes/resources/backupsitejob.yaml.template b/installation/kubernetes/resources/backupsitejob.yaml.template index 0e8b1738..7f5a714f 100644 --- a/installation/kubernetes/resources/backupsitejob.yaml.template +++ b/installation/kubernetes/resources/backupsitejob.yaml.template @@ -10,7 +10,7 @@ spec: supplementalGroups: [1000] containers: - name: erpnext - image: castlecraft/erpnext-python:${VERSION} + image: frappe/erpnext-worker:${VERSION} command: ["docker-entrypoint.sh"] args: ["backup"] imagePullPolicy: Always diff --git a/installation/kubernetes/resources/migratesitejob.yaml.template b/installation/kubernetes/resources/migratesitejob.yaml.template index 516be626..1809df36 100644 --- a/installation/kubernetes/resources/migratesitejob.yaml.template +++ b/installation/kubernetes/resources/migratesitejob.yaml.template @@ -10,7 +10,7 @@ spec: supplementalGroups: [1000] containers: - name: erpnext - image: castlecraft/erpnext-python:${VERSION} + image: frappe/erpnext-worker:${VERSION} command: ["docker-entrypoint.sh"] args: ["migrate"] imagePullPolicy: Always diff --git a/installation/kubernetes/resources/newsitejob.yaml.template b/installation/kubernetes/resources/newsitejob.yaml.template index 9a02539b..1ecb5eaa 100644 --- a/installation/kubernetes/resources/newsitejob.yaml.template +++ b/installation/kubernetes/resources/newsitejob.yaml.template @@ -10,7 +10,7 @@ spec: supplementalGroups: [1000] containers: - name: erpnext - image: castlecraft/erpnext-python:${VERSION} + image: frappe/erpnext-worker:${VERSION} command: ["docker-entrypoint.sh"] args: ["new"] imagePullPolicy: Always @@ -22,7 +22,7 @@ spec: value: ${SITE_NAME} - name: "DB_ROOT_USER" value: ${DB_ROOT_USER} - - name: "DB_ROOT_PASSWORD" + - name: "MYSQL_ROOT_PASSWORD" valueFrom: secretKeyRef: key: password