You need to recreate your application, however there is an easy way to create a copy using the --from-app
flag.
To resize, scale, and / or scope, you can use rhc app create
to clone an existing application. The following command will create a full copy of the original application and create a new unscaled version of the application using the default small.highcpu mechanism in the US region:
$ rhc app create <new_app_name> --from-app <existing_app_name> --no-scaling --gear-size small.highcpu
The following command will create a full copy of the original application and create a new scalable version of the application using medium gear in the European region:
$ rhc app create <new_app_name> --from-app <existing_app_name> --scaling --gear-size medium --region aws-eu-west-1
For more information on scaling and available disk sizes, check out the OpenShift Developer Portal .
source share