1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-15 17:51:03 +00:00
kube-arangodb/docs/how-to/set_root_user_password.md

508 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>
  1. Then specify the newly created secret in the ArangoDeploymentSpec:
spec:
  bootstrap:
    passwordSecretNames:
      root: arango-root-pwd