-
Notifications
You must be signed in to change notification settings - Fork 27
Fix deprecated system-pools option #235
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
Open
vijay-vin
wants to merge
3
commits into
ocp-power-automation:devel
Choose a base branch
from
vijay-vin:deprecatedcmd
base: devel
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
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 |
|---|---|---|
|
|
@@ -117,7 +117,7 @@ Where <args>: | |
|
|
||
| Environment Variables: | ||
| IBMCLOUD_API_KEY IBM Cloud API key | ||
| RELEASE_VER OpenShift release version (Default: 4.15) | ||
| RELEASE_VER OpenShift release version (Default: 4.20) | ||
| ARTIFACTS_VERSION Tag or Branch name of ocp4-upi-powervs repository (Default: main) | ||
| RHEL_SUBS_PASSWORD RHEL subscription password if not provided in variables | ||
| NO_OF_RETRY Number of retries/attempts to run repeatable actions such as create (Default: 5) | ||
|
|
@@ -158,7 +158,7 @@ You'll need to place the file in the install directory and name it as **pull-sec | |
|
|
||
| ## Quickstart | ||
|
|
||
| 1. Export the IBM Cloud API Key and RHEL Subscription Password. | ||
| 1. Export the IBM Cloud API Key and RHEL Subscription Password. Export RHEL_SUBS_PASSWORD only if your bastion server is based on RHEL. | ||
| ``` | ||
| $ set +o history | ||
| $ export IBMCLOUD_API_KEY='<your API key>' | ||
|
|
@@ -190,12 +190,13 @@ Before running the script, you may choose to override some environment variables | |
|
|
||
| ### Different OpenShift Versions | ||
|
|
||
| This [link](https://access.redhat.com/articles/6907891) shows the mapping of versions between OCP, RHCOS and RHEL. Note that the RHCOS versions are now aligned with RHEL version and not with OCP versions. For example, for OCP 4.20, RHCOS version is 9-6 and RHEL version is 9.6 | ||
|
|
||
| By default OpenShift version 4.15 is installed. | ||
| By default OpenShift version 4.20 is installed. | ||
|
|
||
| If you want to install 4.14, then export the variable `RELEASE_VER`. | ||
| If you want to install 4.19, then export the variable `RELEASE_VER`. | ||
vijay-vin marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ``` | ||
| $ export RELEASE_VER="4.14" | ||
| $ export RELEASE_VER="4.19" | ||
| ``` | ||
|
|
||
| ### Non-interactive mode | ||
|
|
@@ -214,8 +215,8 @@ You can avoid the interactive mode by having the required input files available | |
| rhel_image_name = "rhel-83" | ||
| rhcos_image_name = "rhcos-415" | ||
|
||
| network_name = "ocp-net" | ||
| openshift_install_tarball = "https://mirror.openshift.com/pub/openshift-v4/ppc64le/clients/ocp/stable-4.15/openshift-install-linux.tar.gz" | ||
| openshift_client_tarball = "https://mirror.openshift.com/pub/openshift-v4/ppc64le/clients/ocp/stable-4.15/openshift-client-linux.tar.gz" | ||
| openshift_install_tarball = "https://mirror.openshift.com/pub/openshift-v4/ppc64le/clients/ocp/stable-4.20/openshift-install-linux.tar.gz" | ||
| openshift_client_tarball = "https://mirror.openshift.com/pub/openshift-v4/ppc64le/clients/ocp/stable-4.20/openshift-client-linux.tar.gz" | ||
| cluster_id_prefix = "test-ocp" | ||
| cluster_domain = "xip.io" | ||
| storage_type = "nfs" | ||
|
|
||
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add
RHCOS_RELEASE_VERto this list with appropriate information.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the README file accordingly.