1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
kube-arangodb/docs/how-to/set_root_user_password.md
2024-12-13 10:13:58 +01:00

537 B

layout title parent
page How to set root user password How to ...

How to set root user password

  1. Create a kubernetes Secret with root password:
kubectl create secret generic arango-root-pwd --from-literal=password=<paste_your_password_here> --from-literal=username=root
  1. Then specify the newly created secret in the ArangoDeploymentSpec:
spec:
  bootstrap:
    passwordSecretNames:
      root: arango-root-pwd