Skip to content

Commit dc8e21c

Browse files
authored
add f5 as supported LB (#2733)
* add f5 as supported LB * update doc for supported LB provider
1 parent a1afb70 commit dc8e21c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/openstack-cloud-controller-manager/using-openstack-cloud-controller-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ Although the openstack-cloud-controller-manager was initially implemented with N
211211
If `lb-provider` is set to "ovn" the value must be set to `SOURCE_IP_PORT`.
212212

213213
* `lb-provider`
214-
Optional. Used to specify the provider of the load balancer, e.g. "amphora" (default), "octavia" (deprecated alias for "amphora"), or "ovn". Only the "amphora", "octavia", and "ovn" providers are officially tested, other providers will cause a warning log.
214+
Optional. Used to specify the provider of the load balancer, e.g. "amphora" (default), "octavia" (deprecated alias for "amphora"), "ovn" or "f5". Only the "amphora", "octavia", "ovn" and "f5" providers are officially tested, other providers will cause a warning log.
215215

216216
* `lb-version`
217217
Optional. If specified, only "v2" is supported.

pkg/openstack/openstack.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const (
6363
var userAgentData []string
6464

6565
// supportedLBProvider map is used to define LoadBalancer providers that we support
66-
var supportedLBProvider = []string{"amphora", "octavia", "ovn"}
66+
var supportedLBProvider = []string{"amphora", "octavia", "ovn", "f5"}
6767

6868
// supportedContainerStore map is used to define supported tls-container-ref store
6969
var supportedContainerStore = []string{"barbican", "external"}

0 commit comments

Comments
 (0)