|
| 1 | +//go:build e2e |
| 2 | +// +build e2e |
| 3 | + |
| 4 | +/* |
| 5 | +Copyright 2024 The Kubernetes Authors. |
| 6 | +
|
| 7 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | +you may not use this file except in compliance with the License. |
| 9 | +You may obtain a copy of the License at |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | +Unless required by applicable law or agreed to in writing, software |
| 14 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | +See the License for the specific language governing permissions and |
| 17 | +limitations under the License. |
| 18 | +*/ |
| 19 | + |
| 20 | +package e2e |
| 21 | + |
| 22 | +import ( |
| 23 | + "context" |
| 24 | + |
| 25 | + . "github.com/onsi/ginkgo/v2" |
| 26 | + "k8s.io/utils/ptr" |
| 27 | + capi_e2e "sigs.k8s.io/cluster-api/test/e2e" |
| 28 | + |
| 29 | + "sigs.k8s.io/cluster-api-provider-openstack/test/e2e/shared" |
| 30 | +) |
| 31 | + |
| 32 | +var _ = Describe("When following the Cluster API quick-start with ClusterClass [PR-Blocking] [ClusterClass]", func() { |
| 33 | + capi_e2e.QuickStartSpec(context.TODO(), func() capi_e2e.QuickStartSpecInput { |
| 34 | + return capi_e2e.QuickStartSpecInput{ |
| 35 | + E2EConfig: e2eCtx.E2EConfig, |
| 36 | + ClusterctlConfigPath: e2eCtx.Environment.ClusterctlConfigPath, |
| 37 | + BootstrapClusterProxy: e2eCtx.Environment.BootstrapClusterProxy, |
| 38 | + ArtifactFolder: e2eCtx.Settings.ArtifactFolder, |
| 39 | + SkipCleanup: false, |
| 40 | + Flavor: ptr.To(shared.FlavorTopology), |
| 41 | + } |
| 42 | + }) |
| 43 | +}) |
0 commit comments