Skip to content

Commit cbfda4a

Browse files
authored
Merge pull request #4558 from Ankitasw/fix-metadata
[release-2.2] [E2E] Fix E2E pipeline failures
2 parents b0a62c8 + fbacb32 commit cbfda4a

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

scripts/ci-conformance.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ trap cleanup EXIT
3838

3939
# Ensure that python3-pip is installed.
4040
apt update
41-
apt install -y python3-pip
41+
apt install -y python3-pip python3-requests
4242
rm -rf /var/lib/apt/lists/*
4343

4444
# Install/upgrade pip and requests module explicitly for HTTP calls.

scripts/ci-e2e-eks-gc.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ cleanup() {
4747
trap cleanup EXIT
4848

4949
#Install requests module explicitly for HTTP calls
50-
python3 -m pip install requests
50+
apt update
51+
apt install -y python3-pip python3-requests
5152

5253
# If BOSKOS_HOST is set then acquire an AWS account from Boskos.
5354
if [ -n "${BOSKOS_HOST:-}" ]; then

scripts/ci-e2e-eks.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ cleanup() {
4747
trap cleanup EXIT
4848

4949
#Install requests module explicitly for HTTP calls
50-
python3 -m pip install requests
50+
apt update
51+
apt install -y python3-pip python3-requests
5152

5253
# If BOSKOS_HOST is set then acquire an AWS account from Boskos.
5354
if [ -n "${BOSKOS_HOST:-}" ]; then

scripts/ci-e2e-gc.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ cleanup() {
4747
trap cleanup EXIT
4848

4949
#Install requests module explicitly for HTTP calls
50-
python3 -m pip install requests
50+
apt update
51+
apt install -y python3-pip python3-requests
5152

5253
# If BOSKOS_HOST is set then acquire an AWS account from Boskos.
5354
if [ -n "${BOSKOS_HOST:-}" ]; then

scripts/ci-e2e.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ apt install -y python3-pip
5353
rm -rf /var/lib/apt/lists/*
5454

5555
# Install/upgrade pip and requests module explicitly for HTTP calls.
56-
python3 -m pip install --upgrade pip requests
56+
apt update
57+
apt install -y python3-pip python3-requests
5758

5859
# If BOSKOS_HOST is set then acquire an AWS account from Boskos.
5960
if [ -n "${BOSKOS_HOST:-}" ]; then

test/e2e/data/e2e_conf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ providers:
123123
files:
124124
- sourcePath: "./shared/v1beta1_provider/metadata.yaml"
125125
- sourcePath: "./infrastructure-aws/capi-upgrades/v1beta1/cluster-template.yaml"
126-
- name: v2.0.99
126+
- name: v2.2.99
127127
# Use manifest from source files
128128
value: ../../../config/default
129129
# Do not add contract field for v1beta1 --> v1beta2 clusterctl upgrades test to work.

0 commit comments

Comments
 (0)