Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you delete a database cartridge on an Openshift app?

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?

like image 740
Logic9 Avatar asked Jul 09 '15 16:07

Logic9


1 Answers

You can use the rhc tool to remove a cartridge:

rhc cartridge remove -a {appName} -c {embeddedCartridgeName}

like image 85
Mark B Avatar answered Oct 18 '22 19:10

Mark B