mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-15 17:51:03 +00:00
508 B
508 B
layout | title | parent |
---|---|---|
page | How to set root user password | How to ... |
How to set root user password
- Create a kubernetes Secret with root password:
kubectl create secret generic arango-root-pwd --from-literal=password=<paste_your_password_here>
- Then specify the newly created secret in the ArangoDeploymentSpec:
spec:
bootstrap:
passwordSecretNames:
root: arango-root-pwd