@@ -124,46 +124,46 @@ You can now access the application at http://localhost:3000
124124
1251253 . Log into your IBM Cloud account
126126```
127- bx login
127+ ibmcloud login
128128```
129129
130- If you have a federated ID, use bx login --sso to log in to the IBM Cloud CLI.
130+ If you have a federated ID, use ibmcloud login --sso to log in to the IBM Cloud CLI.
131131
1321324 . Install the Container Registry plug-in.
133133```
134- bx plugin install container-registry -r Bluemix
134+ ibmcloud plugin install container-registry -r Bluemix
135135```
136136
1371375 . Install the Container Service plug-in.
138138```
139- bx plugin install IBM-Containers -r Bluemix
139+ ibmcloud plugin install IBM-Containers -r Bluemix
140140```
141141
1421426 . [ Install kubectl] ( https://kubernetes.io/docs/tasks/tools/install-kubectl/#install-kubectl )
143143
1441447 . Create cluster
145145```
146- bx cs cluster-create --name YOUR_CLUSTER_NAME
146+ ibmcloud cs cluster-create --name YOUR_CLUSTER_NAME
147147```
148148
1491498 . Configure Kubernetes cluster
150150```
151- $ bx cs cluster-config YOUR_CLUSTER_NAME
151+ $ ibmcloud cs cluster-config YOUR_CLUSTER_NAME
152152```
153153
154154Copy and paste response in CLI
155155
1561569 . Choose a name for your first namespace, and create that namespace. Use this namespace for the rest of the Quick Start.
157157```
158- $ bx cr namespace-add YOUR_NAMESPACE
158+ $ ibmcloud cr namespace-add YOUR_NAMESPACE
159159```
160160
161161
162162### 1. Build image
163163
164164Build image in the IBM Container Registry:
165165```
166- $ bx cr build -t registry.<ibm_cloud_region>.bluemix.net/<your_namespace>/deploy-react-kubernetes .
166+ $ ibmcloud cr build -t registry.<ibm_cloud_region>.bluemix.net/<your_namespace>/deploy-react-kubernetes .
167167```
168168
169169### 2. Deploy the application
@@ -188,7 +188,7 @@ $ kubectl expose deployment/deploy-react-kubernetes-deployment
188188
189189```
190190# For clusters provisioned with IBM Cloud
191- $ bx cs workers YOUR_CLUSTER_NAME
191+ $ ibmcloud cs workers YOUR_CLUSTER_NAME
192192```
193193
194194```
0 commit comments