Reputation: 79
I added a PostgreSQL 9.2 database on my Openshift hosted Python/Flask app but now I don't think it will be needed. Is there an easy way to just remove this cartridge from the application?
Upvotes: 7
Views: 3624
Reputation: 200960
You can use the rhc
tool to remove a cartridge:
rhc cartridge remove -a {appName} -c {embeddedCartridgeName}
Upvotes: 20