You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 22, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: workshop/Lab5/cos-with-s3fs/CLUSTER.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ You now have an Object Storage instance with a bucket, and have found the corres
60
60
1. Go to the IBM Cloud resources page at [https://cloud.ibm.com/resources](https://cloud.ibm.com/resources),
61
61
Under `Clusters` find and select your cluster, and load the cluster overview page. There are two ways to retrieve the login command with token:
62
62
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`.
Copy file name to clipboardExpand all lines: workshop/Lab5/cos-with-s3fs/PVC.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,9 @@ In this exercise, you are going to use an existing bucket when assigning persist
11
11
12
12
> **Note:** Replace the values for:
13
13
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`.
17
17
18
18
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.
19
19
@@ -60,10 +60,10 @@ spec:
60
60
61
61
and set the right values if changes are still needed,
62
62
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,
67
67
68
68
1. Create a `PersistentVolumeClaim`.
69
69
@@ -79,7 +79,7 @@ and set the right values if changes are still needed,
79
79
persistentvolumeclaim/my-iks-pvc created
80
80
```
81
81
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`.
83
83
84
84
```console
85
85
oc get pvc
@@ -97,7 +97,7 @@ and set the right values if changes are still needed,
97
97
> 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`.
98
98
> Note: If the state of the PVC stays as `Pending`, the problem must be resolved before you move to the next step.
99
99
100
-
1. Verify a new `PersistentVolume` was also created successfully.
100
+
3. Verify a new `PersistentVolume` was also created successfully.
0 commit comments