-
Notifications
You must be signed in to change notification settings - Fork 1.9k
OSDOCS-12546 unconditionalize AWS sample install config doc #84385
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
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| // Module included in the following assemblies: | ||
| // | ||
| // * installing/installing_aws/ipi/installing-aws-customizations.adoc | ||
|
|
||
| :_mod-docs-content-type: REFERENCE | ||
| [id="installation-aws-config-yaml-customizations_{context}"] | ||
| = Sample customized install-config.yaml file for AWS | ||
|
|
||
| You can customize the installation configuration file (`install-config.yaml`) to specify more details about your {product-title} cluster's platform or modify the values of the required parameters. | ||
|
|
||
| [IMPORTANT] | ||
| ==== | ||
| This sample YAML file is provided for reference only. You must obtain your `install-config.yaml` file by using the installation program and modify it. | ||
| For a full list and description of all installation configuration parameters, see _Installation configuration parameters for AWS_. | ||
| ==== | ||
|
|
||
| .Sample `install-config.yaml` file for {aws-short} | ||
| [source,yaml] | ||
bscott-rh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ---- | ||
| apiVersion: v1 <1> | ||
| baseDomain: example.com | ||
| sshKey: ssh-ed25519 AAAA... | ||
| pullSecret: '{"auths": ...}' | ||
| metadata: | ||
| name: example-cluster | ||
| controlPlane: <2> | ||
| name: master | ||
| platform: | ||
| aws: | ||
| type: m6i.xlarge | ||
| replicas: 3 | ||
| compute: <3> | ||
| - name: worker | ||
| platform: | ||
| aws: | ||
| type: c5.4xlarge | ||
| replicas: 3 | ||
| networking: <4> | ||
| clusterNetwork: | ||
| - cidr: 10.128.0.0/14 | ||
| hostPrefix: 23 | ||
| platform: <5> | ||
| aws: | ||
| region: us-west-2 | ||
| ---- | ||
| <1> Parameters at the first level of indentation apply to the cluster globally. | ||
| <2> The `controlPlane` stanza applies to control plane machines. | ||
| <3> The `compute` stanza applies to compute machines. | ||
| <4> The `networking` stanza applies to the cluster networking configuration. If you do not provide networking values, the installation program provides default values. | ||
| <5> The `platform` stanza applies to the infrastructure platform that hosts the cluster. | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.