File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ //go:build e2e
2+
3+ package e2e
4+
5+ import (
6+ "context"
7+
8+ "sigs.k8s.io/cluster-api/test/e2e"
9+
10+ "github.com/neoaggelos/cluster-api-provider-lxc/internal/ptr"
11+ "github.com/neoaggelos/cluster-api-provider-lxc/test/e2e/shared"
12+
13+ . "github.com/onsi/ginkgo/v2"
14+ )
15+
16+ var _ = Describe ("ClusterClassRollout" , func () {
17+ e2e .ClusterClassRolloutSpec (context .TODO (), func () e2e.ClusterClassRolloutSpecInput {
18+ return e2e.ClusterClassRolloutSpecInput {
19+ E2EConfig : e2eCtx .E2EConfig ,
20+ ClusterctlConfigPath : e2eCtx .Environment .ClusterctlConfigPath ,
21+ BootstrapClusterProxy : e2eCtx .Environment .BootstrapClusterProxy ,
22+ ArtifactFolder : e2eCtx .Settings .ArtifactFolder ,
23+ SkipCleanup : e2eCtx .Settings .SkipCleanup ,
24+ PostNamespaceCreated : e2eCtx .DefaultPostNamespaceCreated (),
25+ ControlPlaneWaiters : e2eCtx .DefaultControlPlaneWaiters (),
26+ InfrastructureProvider : ptr .To ("lxc:v0.88.99" ),
27+
28+ Flavor : shared .FlavorDefault ,
29+ }
30+ })
31+ })
You can’t perform that action at this time.
0 commit comments