How to remove database cartridge in Openshift app?

I added the PostgreSQL 9.2 database to my OpenShift application for Python / Flask, but now I don’t think it will be necessary. Is there an easy way to simply remove this cartridge from the application?

+7
database postgresql openshift
source share
1 answer

You can use the rhc tool to remove the cartridge:

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

+20
source share

All Articles