You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use deployment instead deploymentconfigs (dc) for rollout status
With newer version of oc binary when you use a mapping github repo
for your app deployment which have deploymentconfig as template
then it uses deployment instead dc.
```
$ ~/.crc/bin/oc/oc version
Client Version: 4.5.0-202005291417-9933eb9
$ ~/.crc/bin/oc/oc new-app centos/httpd-24-centos7~https://github.com/sclorg/httpd-ex
[...]
deployment.apps "httpd-ex" created
$ oc version
Client Version: 4.5.0-20200326-010450
$ oc new-app centos/httpd-24-centos7~https://github.com/sclorg/httpd-ex && oc rollout status dc/httpd-ex
[...]
deploymentconfig.apps.openshift.io "httpd-ex" created
```
0 commit comments