Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 43f55c2

Browse files
committed
fix markdownlint issues
1 parent cb63b1f commit 43f55c2

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

workshop/Lab5/cos-with-s3fs/CLUSTER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ You now have an Object Storage instance with a bucket, and have found the corres
6060
1. Go to the IBM Cloud resources page at [https://cloud.ibm.com/resources](https://cloud.ibm.com/resources),
6161
Under `Clusters` find and select your cluster, and load the cluster overview page. There are two ways to retrieve the login command with token:
6262
1. Click the `Actions` drop down next to the `OpenShift web console` button, and select `Connect via CLI`, in the pop-up window, click the `oauth token request page` link, or
63-
2. Click `OpenShift web console` button, in the `OpenShift web console`, click your profile name, such as `IAM#name@email.com`, and then click `Copy Login Command`.
63+
1. Click `OpenShift web console` button, in the `OpenShift web console`, click your profile name, such as `IAM#name@email.com`, and then click `Copy Login Command`.
6464

6565
![Copy Login Command](../images/cluster/ocp_copylogincommand.png)
6666

workshop/Lab5/cos-with-s3fs/COS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ Data in `IBM Cloud Object Storage` is stored and organized in so-called `buckets
203203
ibmcloud cos config list
204204
```
205205

206-
2. Create a new bucket.
206+
1. Create a new bucket.
207207

208208
```console
209209
ibmcloud cos bucket-create --bucket $COS_BUCKET_NAME --class Standard --ibm-service-instance-id $COS_CRN
@@ -220,7 +220,7 @@ Data in `IBM Cloud Object Storage` is stored and organized in so-called `buckets
220220
Class: Standard
221221
```
222222

223-
3. Verify the new bucket was created successfully.
223+
1. Verify the new bucket was created successfully.
224224

225225
```console
226226
ibmcloud cos list-buckets --ibm-service-instance-id $COS_CRN

workshop/Lab5/cos-with-s3fs/PVC.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ In this exercise, you are going to use an existing bucket when assigning persist
1111

1212
> **Note:** Replace the values for:
1313
14-
* `ibm.io/bucket`,
15-
* `ibm.io/secret-name` and
16-
* `ibm.io/endpoint`.
14+
- `ibm.io/bucket`,
15+
- `ibm.io/secret-name` and
16+
- `ibm.io/endpoint`.
1717

1818
If your values are not exactly matching with the bucket name you created, the secret name you created and the private endpoint of your bucket, the PVC will remain in state pending and fail to create.
1919

@@ -60,10 +60,10 @@ spec:
6060

6161
and set the right values if changes are still needed,
6262

63-
* change the `namespace` value to the project name found with `oc project`,
64-
* the `ibm.io/bucket` should be set to the value defined in `echo $COS_BUCKET_NAME`,
65-
* `ibm.io/secret-name` should be set to `"cos-write-access"`,
66-
* validate the `ibm.io/endpoint` to be set to the private service endpoint for your Object Storage bucket for the correct region,
63+
- change the `namespace` value to the project name found with `oc project`,
64+
- the `ibm.io/bucket` should be set to the value defined in `echo $COS_BUCKET_NAME`,
65+
- `ibm.io/secret-name` should be set to `"cos-write-access"`,
66+
- validate the `ibm.io/endpoint` to be set to the private service endpoint for your Object Storage bucket for the correct region,
6767

6868
1. Create a `PersistentVolumeClaim`.
6969

@@ -79,7 +79,7 @@ and set the right values if changes are still needed,
7979
persistentvolumeclaim/my-iks-pvc created
8080
```
8181

82-
1. Verify the `PersistentVolumeClaim` and through the PVC also the `PersistentVolume` or PV was created successfully and that the PVC has `STATUS` of `Bound`.
82+
2. Verify the `PersistentVolumeClaim` and through the PVC also the `PersistentVolume` or PV was created successfully and that the PVC has `STATUS` of `Bound`.
8383

8484
```console
8585
oc get pvc
@@ -97,7 +97,7 @@ and set the right values if changes are still needed,
9797
> Note: If the state of the PVC remains `Pending`, you can inspect the error for why the PVC remains pending by using the `describe` command: `oc describe pvc <pvc_name>`. For example, `oc describe pvc my-iks-pvc`.
9898
> Note: If the state of the PVC stays as `Pending`, the problem must be resolved before you move to the next step.
9999

100-
1. Verify a new `PersistentVolume` was also created successfully.
100+
3. Verify a new `PersistentVolume` was also created successfully.
101101

102102
```console
103103
oc get pv

0 commit comments

Comments
 (0)