Hello,
After a first install of neo4j-4.1.1
with helm
and automatic generated password , I'm doing an upgrade with
helm upgrade --install --atomic --cleanup-on-fail --values neo4j_values.yml db https://github.com/neo4j-contrib/neo4j-helm/archive/4.1.1-4.tar.gz
and values.yml
contains
acceptLicenseAgreement: "yes"
neo4jPassword: test1
plugins: "[\"apoc\", \"n10s\"]"
core:
standalone: true
persistentVolume:
size: 10Gi # might be needed later to get more space
service:
type: NodePort # expose service to Internet. default: ClusterIP
The issue is that the password is not updated.
The secret is updated
The variable NEO4J_AUTH
used by the docker-entrypoint.sh
seems to be ok.
Even if I open a shell in the running neo4j container and run neo4j-admin set-initial-password test1
, then kill the pod, the new password is not taken into account.
Any reason for this behavior or is that a bug ?
Best regards,