Skip to content

Commit

Permalink
Merge pull request #8313 from r4f4/capi-aws-preserve-ignition
Browse files Browse the repository at this point in the history
CORS-2893: capi-aws: implement preserveBootstrapIgnition
  • Loading branch information
openshift-merge-bot[bot] committed Apr 26, 2024
2 parents 35acc7c + 6b68a44 commit 5cd8528
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/asset/manifests/aws/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,9 @@ func GenerateClusterAssets(ic *installconfig.InstallConfig, clusterID *installco
},
},
S3Bucket: &capa.S3Bucket{
Name: fmt.Sprintf("openshift-bootstrap-data-%s", clusterID.InfraID),
PresignedURLDuration: &metav1.Duration{Duration: 1 * time.Hour},
Name: fmt.Sprintf("openshift-bootstrap-data-%s", clusterID.InfraID),
PresignedURLDuration: &metav1.Duration{Duration: 1 * time.Hour},
BestEffortDeleteObjects: ptr.To(ic.Config.AWS.PreserveBootstrapIgnition),
},
ControlPlaneLoadBalancer: &capa.AWSLoadBalancerSpec{
Name: ptr.To(clusterID.InfraID + "-int"),
Expand Down

0 comments on commit 5cd8528

Please sign in to comment.