@@ -124,46 +124,46 @@ You can now access the application at http://localhost:3000
124
124
125
125
3 . Log into your IBM Cloud account
126
126
```
127
- bx login
127
+ ibmcloud login
128
128
```
129
129
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.
131
131
132
132
4 . Install the Container Registry plug-in.
133
133
```
134
- bx plugin install container-registry -r Bluemix
134
+ ibmcloud plugin install container-registry -r Bluemix
135
135
```
136
136
137
137
5 . Install the Container Service plug-in.
138
138
```
139
- bx plugin install IBM-Containers -r Bluemix
139
+ ibmcloud plugin install IBM-Containers -r Bluemix
140
140
```
141
141
142
142
6 . [ Install kubectl] ( https://kubernetes.io/docs/tasks/tools/install-kubectl/#install-kubectl )
143
143
144
144
7 . Create cluster
145
145
```
146
- bx cs cluster-create --name YOUR_CLUSTER_NAME
146
+ ibmcloud cs cluster-create --name YOUR_CLUSTER_NAME
147
147
```
148
148
149
149
8 . Configure Kubernetes cluster
150
150
```
151
- $ bx cs cluster-config YOUR_CLUSTER_NAME
151
+ $ ibmcloud cs cluster-config YOUR_CLUSTER_NAME
152
152
```
153
153
154
154
Copy and paste response in CLI
155
155
156
156
9 . Choose a name for your first namespace, and create that namespace. Use this namespace for the rest of the Quick Start.
157
157
```
158
- $ bx cr namespace-add YOUR_NAMESPACE
158
+ $ ibmcloud cr namespace-add YOUR_NAMESPACE
159
159
```
160
160
161
161
162
162
### 1. Build image
163
163
164
164
Build image in the IBM Container Registry:
165
165
```
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 .
167
167
```
168
168
169
169
### 2. Deploy the application
@@ -188,7 +188,7 @@ $ kubectl expose deployment/deploy-react-kubernetes-deployment
188
188
189
189
```
190
190
# For clusters provisioned with IBM Cloud
191
- $ bx cs workers YOUR_CLUSTER_NAME
191
+ $ ibmcloud cs workers YOUR_CLUSTER_NAME
192
192
```
193
193
194
194
```
0 commit comments