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
Copy file name to clipboardExpand all lines: cloud_experts_tutorials/cloud-experts-aws-secret-manager.adoc
+48-36Lines changed: 48 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,38 +17,50 @@ toc::[]
17
17
// - Chris Kang
18
18
// ---
19
19
20
-
The AWS Secrets and Configuration Provider (ASCP) provides a way to expose AWS Secrets as Kubernetes storage volumes. With the ASCP, you can store and manage your secrets in Secrets Manager and then retrieve them through your workloads running on ROSA.
21
-
22
-
This is made even easier and more secure through the use of AWS STS and Kubernetes PodIdentity.
20
+
The AWS Secrets and Configuration Provider (ASCP) provides a way to expose AWS Secrets as Kubernetes storage volumes. With the ASCP, you can store and manage your secrets in Secrets Manager and then retrieve them through your workloads running on {product-title} (ROSA).
You can find your login token by accessing your cluster in {cluster-manager-url-pull}.
45
+
46
+
. Validate that your cluster has STS by running the following command:
37
47
+
38
48
[source,terminal]
39
49
----
40
50
$ oc get authentication.config.openshift.io cluster -o json \
41
51
| jq .spec.serviceAccountIssuer
42
52
----
43
53
+
44
-
You should see something like the following, if not you should not proceed, instead look to the link:https://docs.openshift.com/rosa/rosa_getting_started_sts/rosa_creating_a_cluster_with_sts/rosa-sts-creating-a-cluster-quickly.html[Red Hat documentation on creating an STS cluster].
54
+
.Example output
45
55
+
46
56
[source,terminal]
47
57
----
48
58
"https://xxxxx.cloudfront.net/xxxxx"
49
59
----
60
+
+
61
+
If your output is different, do not proceed. See xref:../rosa_install_access_delete_clusters/rosa-sts-creating-a-cluster-quickly.adoc#rosa-sts-creating-a-cluster-quickly[Red Hat documentation on creating an STS cluster] before continuing this process.
50
62
51
-
. Set SecurityContextConstraintsto allow the CSI driver to run:
63
+
. Set the `SecurityContextConstraints` permission to allow the CSI driver to run by running the following command:
0 commit comments