mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
537 B
537 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> --from-literal=username=root
- Then specify the newly created secret in the ArangoDeploymentSpec:
spec:
bootstrap:
passwordSecretNames:
root: arango-root-pwd