mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * rosa_install_access_delete_clusters/rosa_getting_started_iam/rosa-quickstart.adoc
|
|
|
|
:_mod-docs-content-type: REFERENCE
|
|
[id="rosa-quickstart-instructions"]
|
|
= Command quick reference list
|
|
|
|
If you have already created your first cluster and users, this list can serve as a command quick reference list when creating additional clusters and users.
|
|
|
|
[source,terminal]
|
|
----
|
|
## Configures your AWS account and ensures everything is setup correctly
|
|
$ rosa init
|
|
----
|
|
|
|
[source,terminal]
|
|
----
|
|
## Starts the cluster creation process (~30-40minutes)
|
|
$ rosa create cluster --cluster-name=<cluster_name>
|
|
----
|
|
|
|
[source,terminal]
|
|
----
|
|
## Connect your IDP to your cluster
|
|
$ rosa create idp --cluster=<cluster_name> --interactive
|
|
----
|
|
|
|
[source,terminal]
|
|
----
|
|
## Promotes a user from your IDP to dedicated-admin level
|
|
$ rosa grant user dedicated-admin --user=<idp_user_name> --cluster=<cluster_name>
|
|
----
|
|
|
|
[source,terminal]
|
|
----
|
|
## Checks if your install is ready (look for State: Ready),
|
|
## and provides your Console URL to login to the web console.
|
|
$ rosa describe cluster --cluster=<cluster_name>
|
|
----
|