File tree 2 files changed +11
-8
lines changed
2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 1
- # Install Openshift 4.6.11 on AWS (Internal Red Hat)
1
+ # Install Openshift 4.7.4 on AWS (Internal Red Hat)
2
2
OpenShift 4 AWS Installation IPI at OpenTLC
3
3
4
4
### Prerequisite
@@ -11,7 +11,7 @@ OpenShift 4 AWS Installation IPI at OpenTLC
11
11
```
12
12
### Step 2: Clone Preparation script from Git and Change below parameter
13
13
``` bash
14
- > git clone https://github.com/erfinfeluzy /ocp4-at-opentlc.git
14
+ > git clone https://github.com/okkyhtf /ocp4-at-opentlc.git
15
15
> cd ocp4-at-opentlc/
16
16
> vim prepare-openshift-installer.sh
17
17
```
@@ -20,7 +20,7 @@ OpenShift 4 AWS Installation IPI at OpenTLC
20
20
export AWSKEY ={AWSKEY generated from opentlc}
21
21
export AWSSECRETKEY ={AWSSECRETKEY generated from opentlc}
22
22
export REGION =ap-southeast-1
23
- export OCP_VERSION =4.6.11
23
+ export OCP_VERSION =4.7.4
24
24
export GUID ={GUID generated from opentlc}
25
25
```
26
26
Original file line number Diff line number Diff line change 1
1
#! /bin/env bash
2
2
3
3
# Make sure you setup these ENV variables
4
- export AWSKEY=
5
- export AWSSECRETKEY=
4
+ export AWSKEY=CHANGETHIS
5
+ export AWSSECRETKEY=CHANGETHIS
6
6
export REGION=ap-southeast-1
7
- export OCP_VERSION=4.6.11
8
- export GUID=
7
+ export OCP_VERSION=4.7.4
8
+ export GUID=CHANGETHIS
9
9
10
10
set -xe
11
11
@@ -16,7 +16,10 @@ curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscli-bundl
16
16
unzip ./awscli-bundle.zip
17
17
18
18
# Install the AWS CLI into /bin/aws
19
- ./aws/install -i /usr/local/aws-cli -b /usr/local/bin
19
+ ./aws/install -i /usr/local/aws-cli -b /usr/local/bin --update
20
+
21
+ # Add AWS CLI to PATH
22
+ export PATH=" $PATH :/usr/local/bin"
20
23
21
24
# Validate that the AWS CLI works
22
25
aws --version
You can’t perform that action at this time.
0 commit comments