You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently floating IP remains after cluster deleted.
This commit deletes floating IP when deleting cluster if it is not in
the specs.
Both Non HA and HA uses common parameters to set
openStackCluster.Spec.ControlPlaneEndpoint.
- APIServerFloatingIP
- APIServerPort
return reconcile.Result{}, errors.Errorf("failed to delete security group: %v", err)
143
149
}
144
150
r.Recorder.Eventf(openStackCluster, corev1.EventTypeNormal, "SuccessfulDeleteSecurityGroup", "Deleted security group %s with id %s", bastionSecGroup.Name, bastionSecGroup.ID)
Copy file name to clipboardExpand all lines: docs/configuration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ Note: If your openstack cluster does not already have a public network, you shou
114
114
115
115
## Floating IP
116
116
117
-
A floating IP is automatically created and associated with the load balancer or controller node, but you can specify the floating IP explicitly. When `managedAPIServerLoadBalancer: true`, `spec.apiServerLoadBalancerFlotingIP` of `OpenStackCluster` is used. When `managedAPIServerLoadBalancer: false`, `spec.controlPlaneEndpoint.host` of `OpenStackCluster` is used.
117
+
A floating IP is automatically created and associated with the load balancer or controller node, but you can specify the floating IP explicitly by `spec.apiServerFloatingIP` of `OpenStackCluster`.
118
118
119
119
You have to be able to create a floating IP in your OpenStack in advance. You can create one using,
0 commit comments