Browse Source

Switch openshift ex router/registry to oadm

Scott Dodson 9 years ago
parent
commit
c6c6a0d2b6
3 changed files with 5 additions and 5 deletions
  1. 2 2
      README_OSE.md
  2. 2 2
      README_origin.md
  3. 1 1
      roles/openshift_facts/library/openshift_facts.py

+ 2 - 2
README_OSE.md

@@ -119,7 +119,7 @@ inventory file use the -i option for ansible-playbook.
 #### Create the default router
 On the master host:
 ```sh
-openshift ex router --create=true \
+oadm router --create=true \
   --credentials=/etc/openshift/master/openshift-router.kubeconfig \
   --images='docker-buildvm-rhose.usersys.redhat.com:5000/openshift3/ose-${component}:${version}'
 ```
@@ -127,7 +127,7 @@ openshift ex router --create=true \
 #### Create the default docker-registry
 On the master host:
 ```sh
-openshift ex registry --create=true \
+oadm registry --create=true \
   --credentials=/etc/openshift/master/openshift-registry.kubeconfig \
   --images='docker-buildvm-rhose.usersys.redhat.com:5000/openshift3/ose-${component}:${version}' \
   --mount-host=/var/lib/openshift/docker-registry

+ 2 - 2
README_origin.md

@@ -91,14 +91,14 @@ inventory file use the -i option for ansible-playbook.
 #### Create the default router
 On the master host:
 ```sh
-openshift ex router --create=true \
+oadm router --create=true \
   --credentials=/etc/openshift/master/openshift-router.kubeconfig
 ```
 
 #### Create the default docker-registry
 On the master host:
 ```sh
-openshift ex registry --create=true \
+oadm registry --create=true \
   --credentials=/etc/openshift/master/openshift-registry.kubeconfig \
   --mount-host=/var/lib/openshift/docker-registry
 ```

+ 1 - 1
roles/openshift_facts/library/openshift_facts.py

@@ -487,7 +487,7 @@ def get_current_config(facts):
                 current_config['kubeconfig'] = config
 
             # override pylint broad-except warning, since we do not want
-            # to bubble up any exceptions if openshift ex config view
+            # to bubble up any exceptions if oc config view
             # fails
             # pylint: disable=broad-except
             except Exception: