shantanuo
shantanuo

Reputation: 32296

Using RDS instead of mysql containers in kubernetes

I used this tutorial to install wordpress using kubernetes.

https://kubernetes.io/docs/tutorials/stateful-application/mysql-wordpress-persistent-volume/

It is working as expected. But I will prefer to use Amazon RDS instead of mysql pods. I am not sure what changes are required.

Upvotes: 0

Views: 269

Answers (1)

Eamonn McEvoy
Eamonn McEvoy

Reputation: 8986

In the wordpress deployment you just need to update the host and credentials for your amazon db

enter image description here

you don't need to deploy any of the mysql resources from the tutorial.

Upvotes: 3

Related Questions