File tree Expand file tree Collapse file tree
tests/e2e-kubernetes/testsuites Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }}"
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments