Skip to content

Commit 876de2c

Browse files
committed
Addressed review comments
1 parent 3a30b9e commit 876de2c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

serverless-fleets/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ Switch to the `serverless-fleets` directory, which will be the root directory fo
8282

8383
To run this end-to-end sample, open a terminal, [login into your IBM Cloud account using the IBM Cloud CLI](https://cloud.ibm.com/docs/codeengine?topic=codeengine-install-cli).
8484

85-
Install the Code Engine CLI with the latest version and enable fleets:
85+
Install the Code Engine CLI with the latest version:
8686
```
87-
CE_EXPERIMENTAL_FLEET=true ibmcloud plugin install code-engine -f --quiet
87+
ibmcloud plugin install code-engine -f --quiet
8888
```
8989

9090
If you don't have a fleet sandbox, choose one of the two methods to create one.
@@ -572,10 +572,10 @@ If you need to end your fleet's processing before it ran to completion, or to ge
572572
Run the following command to delete a single worker:
573573
574574
```
575-
ibmcloud ce exp fleet worker delete -n <worker-name>
575+
ibmcloud ce fleet worker delete -n <worker-name>
576576
```
577577
578578
Run the following command to delete all workers in your project:
579579
```
580-
ibmcloud ce exp fleet worker list | grep "fleet-" | awk '{print $1}' | xargs -L1 -I {} ibmcloud ce exp fleet worker delete --name {} -f
580+
ibmcloud ce fleet worker list | grep "fleet-" | awk '{print $1}' | xargs -L1 -I {} ibmcloud ce fleet worker delete --name {} -f
581581
```

serverless-fleets/init-fleet-sandbox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ print_msg "\nPulling latest IBM Cloud CLI release ..."
171171
ibmcloud update --force
172172

173173
# Ensure that latest versions of used IBM Cloud CLI plugins are installed
174-
print_msg "\nInstalling required experiemental IBM Cloud CLI plugins ..."
174+
print_msg "\nInstalling required IBM Cloud CLI plugins ..."
175175
ensure_plugin_is_up_to_date code-engine
176176
ensure_plugin_is_up_to_date vpc-infrastructure
177177
ensure_plugin_is_up_to_date cloud-object-storage

0 commit comments

Comments
 (0)