Skip to content

Commit fd119b4

Browse files
Merge pull request #5951 from sjenning/e2e-set-default-expiration-date
NO-JIRA: set default expriationDate tag in AWS if not set
2 parents 3283bb9 + 07135b1 commit fd119b4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

test/e2e/util/options.go

+15
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"os"
77
"strings"
88
"testing"
9+
"time"
910

1011
hyperv1 "github.com/openshift/hypershift/api/hypershift/v1beta1"
1112
hypershiftaws "github.com/openshift/hypershift/cmd/cluster/aws"
@@ -254,6 +255,20 @@ func (o *Options) DefaultAWSOptions() hypershiftaws.RawCreateOptions {
254255
opts.PublicOnly = false
255256
}
256257

258+
// Set an expiration date tag if it's not already set
259+
expirationDateTagSet := false
260+
for _, tag := range o.AdditionalTags {
261+
key := strings.Split(tag, "=")[0]
262+
if key == "expirationDate" {
263+
expirationDateTagSet = true
264+
break
265+
}
266+
}
267+
if !expirationDateTagSet {
268+
// Set the expiration date tag to be 4 hours from now
269+
o.AdditionalTags = append(o.AdditionalTags, fmt.Sprintf("expirationDate=%s", time.Now().Add(4*time.Hour).UTC().Format(time.RFC3339)))
270+
}
271+
257272
opts.AdditionalTags = append(opts.AdditionalTags, o.AdditionalTags...)
258273
if len(o.ConfigurableClusterOptions.Zone) == 0 {
259274
// align with default for e2e.aws-region flag

0 commit comments

Comments
 (0)