I am using openshift command oc new-app <git-url> [OPTIONS..] to add a new application into the openshift project.
As part of the process, it creates :
- build config & starts the build
- image stream
- replication controller
- deploy config & deploys the application
I do not intend to deploy the application instantly.
Is there a way to skip application from starting up a pod in Openshift, similar to cf push --no-start (in PCF)
oc set triggersand disable the image change trigger. You can then enable the image change trigger later, or force a new rollout somehow using the newer image. - Graham Dumpleton