Martin Montes
Martin Montes
Hey there, that's a fair point. Re-iterating on my previous proposal, we could introduce a new resource, the `ExternalMariaDB`: ```yaml apiVersion: mariadb.mmontes.io/v1alpha1 kind: ExternalMariaDB metadata: name: my-rds-instance spec: host: mydb.123456789012.us-east-1.rds.amazonaws.com....
Thanks a lot for your input @loffa ! Yes, some adaptations need to be made in order to support `ExternalMariadb` resources. I think it makes total sense to reuse part...
@loffa actually, we should be able to do it for `Backup` and `Restore` resources as well.
Hey there @juulSme ! Thanks for bringing this up The TLS support is yet very limited, as we describe here: - https://github.com/mariadb-operator/mariadb-operator/issues/137#issuecomment-1585819345 As you pointed out, the operator controller needs...
@pasztorl I encourage you to take a look at this: - https://github.com/mariadb-operator/mariadb-operator/issues/507 Following a similar approach as @harunkucuk5, we are intentding to refactor this and support PITR based on mariabackup...
@harunkucuk5 no prob! I will use and refactor these changes to implement [PITR](https://github.com/mariadb-operator/mariadb-operator/issues/507) and add you as a co-author if that's ok
Thanks for the detailed information! This most likely means that the replicas are missing some binary log operations from the primary and therefore are unable to unable to apply some...
Hey there! With the release of [v0.0.25](https://github.com/mariadb-operator/mariadb-operator/releases/tag/v0.0.25), primary failover done by the operator has been superseded by MaxScale: a sophisticated database proxy, router, and load balancer designed specifically for and...
Hey there @lukasmu ! Thanks for reporting We are mounting the passwords `Secrets` as environment variables of the [MariaDB official image](https://hub.docker.com/_/mariadb), which unfortunately only takes them into account when bootstrapping...
@pratik705 the only way you can achieve is as of today is: - Update the `Secret` manually - Run the following statement in all the `Pods`: ```bash SET PASSWORD FOR...