File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 87
87
- name
88
88
type : object
89
89
preAllocatedFloatingIPs :
90
+ description : |-
91
+ PreAllocatedFloatingIPs is a list of preallocated floating ips existing in openstack that should be used by this pool
92
+ preallocated floating ips are used before allocating new ones and are not deleted when the pool is deleted
90
93
items :
91
94
type : string
92
95
type : array
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ import (
43
43
"sigs.k8s.io/controller-runtime/pkg/controller"
44
44
"sigs.k8s.io/controller-runtime/pkg/webhook"
45
45
46
+ infrav1alpha1 "sigs.k8s.io/cluster-api-provider-openstack/api/v1alpha1"
46
47
infrav1alpha5 "sigs.k8s.io/cluster-api-provider-openstack/api/v1alpha5"
47
48
infrav1alpha6 "sigs.k8s.io/cluster-api-provider-openstack/api/v1alpha6"
48
49
infrav1alpha7 "sigs.k8s.io/cluster-api-provider-openstack/api/v1alpha7"
@@ -90,6 +91,7 @@ func init() {
90
91
_ = infrav1alpha5 .AddToScheme (scheme )
91
92
_ = infrav1alpha6 .AddToScheme (scheme )
92
93
_ = infrav1alpha7 .AddToScheme (scheme )
94
+ _ = infrav1alpha1 .AddToScheme (scheme )
93
95
// +kubebuilder:scaffold:scheme
94
96
95
97
metrics .RegisterAPIPrometheusMetrics ()
You can’t perform that action at this time.
0 commit comments