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