File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 6
6
"os"
7
7
"strings"
8
8
"testing"
9
+ "time"
9
10
10
11
hyperv1 "github.com/openshift/hypershift/api/hypershift/v1beta1"
11
12
hypershiftaws "github.com/openshift/hypershift/cmd/cluster/aws"
@@ -254,6 +255,20 @@ func (o *Options) DefaultAWSOptions() hypershiftaws.RawCreateOptions {
254
255
opts .PublicOnly = false
255
256
}
256
257
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
+
257
272
opts .AdditionalTags = append (opts .AdditionalTags , o .AdditionalTags ... )
258
273
if len (o .ConfigurableClusterOptions .Zone ) == 0 {
259
274
// align with default for e2e.aws-region flag
You can’t perform that action at this time.
0 commit comments