Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions modules/manually-configure-iam-nutanix.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,22 @@ credentials:
<2> Specify the Prism Central credentials.
<3> Optional: Specify the Prism Element credentials.

. Set a `$RELEASE_IMAGE` variable with the release image from your installation file by running the following command:
+
[source,terminal]
----
$ RELEASE_IMAGE=$(./openshift-install version | awk '/release image/ {print $3}')
----

. Extract the list of `CredentialsRequest` custom resources (CRs) from the {product-title} release image by running the following command:
+
[source,terminal]
----
$ oc adm release extract --credentials-requests --cloud=nutanix \//
--to=<path_to_directory_with_list_of_credentials_requests>/credrequests \ <1>
quay.io/<path_to>/ocp-release:<version>
$ oc adm release extract \
--from=$RELEASE_IMAGE \
--credentials-requests \
--cloud=nutanix \
--to=<path_to_directory_with_list_of_credentials_requests>/credrequests <1>
----
+
<1> Specify the path to the directory that contains the files for the component `CredentialsRequests` objects. If the specified directory does not exist, this command creates it.
Expand Down