Logic9
Logic9

Reputation: 79

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?

Upvotes: 7

Views: 3624

Answers (1)

Mark B
Mark B

Reputation: 200960

You can use the rhc tool to remove a cartridge:

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

Upvotes: 20

Related Questions