Hello everyone,
I’ve been trying to install a demo Erpnext environment on our K8s cluster for one week now. We are using Helm, Customize, and Fluxed to automate the deployment.
Everything is deployed correctly. But the backend cannot be connecting to the mariadb. It seems that the db user is generated randomly and it’s not added in the database so it cannot be authenticated. Here is the values
replicas: 1
mariadb:
enabled: true
auth:
username: "erpnext_user"
password: "secure_password"
replicationPassword: "secure_password"
rootPassword: "root_password"
primary:
persistence:
storageClass: "local-path"
size: 8Gi
persistence:
storageClass: "nfs"
size: 8Gi
dbHost: "erpnext-mariadb"
dbPort: "3306"
dbRootUser: "root"
dbRootPassword: "root_password"
ingress:
enabled: true
className: traefik
ingressName: "erp-techbricks-io"
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
kubernetes.io/ingress.class: traefik
hosts:
- host: erp.techbricks.io
paths:
- path: /
pathType: Prefix
tls:
- secretName: erp-techbricks-io-tls
hosts:
- erp.techbricks.io
jobs:
createSite:
enabled: true
forceCreate: true
siteName: erp.techbricks.io
adminPassword: "changeitroot"
adminExistingSecretKey: "changeitroot"
dbType: "mariadb"
dbName: "erpnext_db"
dbUser: "erpnext_user"
dbPassword: "secure_password"
dbRootUser: "root"
dbRootPassword: "root_password"
dbHost: "erpnext-mariadb"
dbPort: "3306"
dbRootUser: "root"
dbRootPassword: "root_password"
and here is the error from db logs:
command: kubectl logs -n erpnext pod/erpnext-mariadb-0
result: 2025-04-01 12:31:47 296 [Warning] Access denied for user ‘_e63942ff0a00f92c’@‘10.42.0.31’ (using password: YES)