You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today we had an edge case because the manager container of the dbaas operator pod was in OOM.
For a project, we had the mariadbconsumer object created and the spec.consumer info correctly filled in, but actually, no username, password, and database were created in the cluster.
Checking the code, it seems the creation of the username (password) and database happens AFTER the consumer's Infos are defined into the k8s object.
The text was updated successfully, but these errors were encountered:
So the username and database are created prior to the k8s resource being updated.
If the MariaDBConsumer resource had the username, password, and database, along with all the associated services created, but there was no matching database or user in the actual destination MariaDBProvider, then that would be interesting to see.
You don't happen to have the logs from the operator when this was occuring? It would have been vomiting up errors the entire time it tried to do anything.
Today we had an edge case because the
manager
container of thedbaas
operator pod was in OOM.For a project, we had the
mariadbconsumer
object created and thespec.consumer
info correctly filled in, but actually, no username, password, and database were created in the cluster.Checking the code, it seems the creation of the username (password) and database happens AFTER the consumer's Infos are defined into the k8s object.
The text was updated successfully, but these errors were encountered: