Skip to content

OCPBUGS#54405 removing invalid parameters from AWS #97449

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 13, 2025
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
39 changes: 16 additions & 23 deletions modules/installation-configuration-parameters.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -895,23 +895,6 @@ such as `io1`.
|A list of valid AWS availability zones, such as `us-east-1c`, in a
link:https://yaml.org/spec/1.2/spec.html#sequence//[YAML sequence].

|compute:
aws:
region:
|The AWS region that the installation program creates compute resources in.
|Any valid link:https://docs.aws.amazon.com/general/latest/gr/rande.html[AWS region], such as `us-east-1`. You can use the AWS CLI to access the regions available based on your selected instance type. For example:
[source,terminal]
----
aws ec2 describe-instance-type-offerings --filters Name=instance-type,Values=c7g.xlarge
----
ifndef::openshift-origin[]
[IMPORTANT]
====
When running on ARM based AWS instances, ensure that you enter a region where AWS Graviton processors are available. See link:https://aws.amazon.com/ec2/graviton/#Global_availability[Global availability] map in the AWS documentation. Currently, AWS Graviton3 processors are only available in some regions.
====
endif::openshift-origin[]


|controlPlane:
platform:
aws:
Expand Down Expand Up @@ -981,12 +964,6 @@ such as `io1`.
control plane machine pool.
|A list of valid AWS availability zones, such as `us-east-1c`, in a link:https://yaml.org/spec/1.2/spec.html#sequence//[YAML sequence].

|controlPlane:
aws:
region:
|The AWS region that the installation program creates control plane resources in.
|Valid link:https://docs.aws.amazon.com/general/latest/gr/rande.html[AWS region], such as `us-east-1`.

|platform:
aws:
amiID:
Expand All @@ -1006,6 +983,22 @@ belong to the same region as the cluster. This is required for regions that requ
|An Amazon Resource Name (ARN) for an existing IAM role in the account containing the specified hosted zone. The installation program and cluster operators will assume this role when performing operations on the hosted zone. This parameter should only be used if you are installing a cluster into a shared VPC.
|String, for example `arn:aws:iam::1234567890:role/shared-vpc-role`.

|platform:
aws:
region:
|The AWS region that the installation program creates all cluster resources in.
|Any valid link:https://docs.aws.amazon.com/general/latest/gr/rande.html[AWS region], such as `us-east-1`. You can use the AWS CLI to access the regions available based on your selected instance type by running the following command:
[source,terminal]
----
$ aws ec2 describe-instance-type-offerings --filters Name=instance-type,Values=c7g.xlarge
----
ifndef::openshift-origin[]
[IMPORTANT]
====
When running on ARM based AWS instances, ensure that you enter a region where AWS Graviton processors are available. See link:https://aws.amazon.com/ec2/graviton/#Global_availability[Global availability] map in the AWS documentation. Currently, AWS Graviton3 processors are only available in some regions.
====
endif::openshift-origin[]

|platform:
aws:
serviceEndpoints:
Expand Down