Skip to content

Commit 11bb6c8

Browse files
author
Vijayv
committed
resolving review comments
Signed-off-by: Vijayv <[email protected]>
1 parent 9845282 commit 11bb6c8

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Where <args>:
117117
118118
Environment Variables:
119119
IBMCLOUD_API_KEY IBM Cloud API key
120-
RELEASE_VER OpenShift release version (Default: 4.15)
120+
RELEASE_VER OpenShift release version (Default: 4.20)
121121
ARTIFACTS_VERSION Tag or Branch name of ocp4-upi-powervs repository (Default: main)
122122
RHEL_SUBS_PASSWORD RHEL subscription password if not provided in variables
123123
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
158158

159159
## Quickstart
160160

161-
1. Export the IBM Cloud API Key and RHEL Subscription Password.
161+
1. Export the IBM Cloud API Key and RHEL Subscription Password. Export RHEL_SUBS_PASSWORD only if your bastion server is based on RHEL.
162162
```
163163
$ set +o history
164164
$ export IBMCLOUD_API_KEY='<your API key>'
@@ -190,12 +190,13 @@ Before running the script, you may choose to override some environment variables
190190
191191
### Different OpenShift Versions
192192
193+
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
193194
194-
By default OpenShift version 4.15 is installed.
195+
By default OpenShift version 4.20 is installed.
195196
196-
If you want to install 4.14, then export the variable `RELEASE_VER`.
197+
If you want to install 4.19, then export the variable `RELEASE_VER`.
197198
```
198-
$ export RELEASE_VER="4.14"
199+
$ export RELEASE_VER="4.19"
199200
```
200201
201202
### Non-interactive mode
@@ -214,8 +215,8 @@ You can avoid the interactive mode by having the required input files available
214215
rhel_image_name = "rhel-83"
215216
rhcos_image_name = "rhcos-415"
216217
network_name = "ocp-net"
217-
openshift_install_tarball = "https://mirror.openshift.com/pub/openshift-v4/ppc64le/clients/ocp/stable-4.15/openshift-install-linux.tar.gz"
218-
openshift_client_tarball = "https://mirror.openshift.com/pub/openshift-v4/ppc64le/clients/ocp/stable-4.15/openshift-client-linux.tar.gz"
218+
openshift_install_tarball = "https://mirror.openshift.com/pub/openshift-v4/ppc64le/clients/ocp/stable-4.20/openshift-install-linux.tar.gz"
219+
openshift_client_tarball = "https://mirror.openshift.com/pub/openshift-v4/ppc64le/clients/ocp/stable-4.20/openshift-client-linux.tar.gz"
219220
cluster_id_prefix = "test-ocp"
220221
cluster_domain = "xip.io"
221222
storage_type = "nfs"

openshift-install-powervs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Where <args>:
4949
5050
Environment Variables:
5151
IBMCLOUD_API_KEY IBM Cloud API key
52-
RELEASE_VER OpenShift release version (Default: 4.15)
53-
RHCOS_RELEASE_VER RHCOS Release version (Default: 9.4)
52+
RELEASE_VER OpenShift release version (Default: 4.20)
53+
RHCOS_RELEASE_VER RHCOS Release version (Default: 9-6)
5454
ARTIFACTS_VERSION Tag or Branch name of ocp4-upi-powervs repository (Default: main)
5555
RHEL_SUBS_PASSWORD RHEL subscription password if not provided in variables
5656
NO_OF_RETRY Number of retries/attempts to run repeatable actions such as create (Default: 5)
@@ -61,8 +61,8 @@ EOF
6161
exit 0
6262
}
6363

64-
RELEASE_VER=${RELEASE_VER:-"4.15"}
65-
RHCOS_RELEASE_VER=${RHCOS_RELEASE_VER:-"9.4"}
64+
RELEASE_VER=${RELEASE_VER:-"4.20"}
65+
RHCOS_RELEASE_VER=${RHCOS_RELEASE_VER:-"9-6"}
6666
ARTIFACTS_REPO=${ARTIFACTS_REPO:-"https://github.com/ocp-power-automation/ocp4-upi-powervs"}
6767
ARTIFACTS_VERSION=${ARTIFACTS_VERSION:-"main"}
6868
#ARTIFACTS_VERSION=${ARTIFACTS_VERSION:-"release-$RELEASE_VER"}

0 commit comments

Comments
 (0)