After doing so we are unable to grant LDAP users access to the controller model:
ERROR could not look up model access for user: state changing too quickly; try again soon
The error message suggests this may be transient, but it is not.
We are able to grant LDAP users access to other (non-controller) models. I was able to grant an LDAP user access to the controller model after the bootstrap, but before restoring the backup.
Has anyone encountered this scenario before or have any suggestions on how to resolve it?
Hey @GrumpyBear, when you do juju create-backup juju will literally create a backup of its Mongo state. When you load that onto a controller of a different version this can cause issues, if any of the mongo database keys have changed between versions the old data will appear missing to the 3.6.1 controller. Our documentation on this could admittedly be clearer.
The error you are getting, state changing too quickly comes from our mongo driver. The error occours when a precondition for a query fails (despite the name). I would guess that there is some query that is expecting a collection to exist, or some field within it, that cannot be found due to the fact that you have a 3.5.5 state loaded on a 3.6.1 controller.
To configure integration with Candid on the 3.6.1 controller you will have to follow the same procedure you used to initially configure it on the 3.5.5 controller. If there are any issues you have with that let me know!
Is there a different process I should be following to port the old controller configuration over to the new controller? I did include the Candid information while bootstrapping the new controller and that seemed to be fine before restoring the backup onto it.