Skip to content

Commit 56acc19

Browse files
committed
MAX_AGE_DAYS: 0
1 parent 730fdb4 commit 56acc19

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/e2e-rosa-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
id: check_cluster_age
115115
working-directory: tests/e2e-kubernetes/rosa/
116116
env:
117-
MAX_AGE_DAYS: 3
117+
MAX_AGE_DAYS: 0
118118
run: |
119119
# Check if cluster creation timestamp exists in Terraform state
120120
CLUSTER_CREATED=$(terraform show -json | jq -r '
@@ -144,7 +144,7 @@ jobs:
144144
echo "destroy_cluster=false" >> $GITHUB_OUTPUT
145145
fi
146146
- name: Destroy old cluster
147-
if: steps.check_cluster_age.outputs.destroy_cluster == 'true'
147+
if: steps.check_cluster_age.outputs.destroy_cluster != 'false'
148148
working-directory: tests/e2e-kubernetes/rosa/
149149
env:
150150
TF_VAR_aws_region: "${{ vars.AWS_REGION }}"

tests/e2e-kubernetes/testsuites/credentials.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ func (t *s3CSICredentialsTestSuite) DefineTests(driver storageframework.TestDriv
139139
// we're trying to set a more restricted role (e.g. with "AmazonS3ReadOnlyAccess" policy),
140140
// in these test cases to ensure it does not fallback to Driver-level 4) credentials.
141141
// NOTE: In OpenShift clusters as IMDS is not available we rely on Driver-level IRSA 2)
142-
// credentials instead of IAM instance profile.
142+
// credentials instead of IAM instance profile. EKS Pod Identity and IAM Instance Profile
143+
// are not tested on OpenShift because they are not supported.
143144

144145
f := framework.NewFrameworkWithCustomTimeouts(NamespacePrefix+"credentials", storageframework.GetDriverTimeouts(driver))
145146
f.NamespacePodSecurityLevel = admissionapi.LevelPrivileged

0 commit comments

Comments
 (0)