Skip to content

UDP Loadbalancer

Shape of the UDP load balancer replace specification.

ToolDescription
f5xc-api-virtual-udp-loadbalancer-createCreate UDP Load Balancer.
f5xc-api-virtual-udp-loadbalancer-getGET UDP Load Balancer.
f5xc-api-virtual-udp-loadbalancer-listList Configure UDP Load Balancer.
f5xc-api-virtual-udp-loadbalancer-updateReplace UDP Load Balancer.
f5xc-api-virtual-udp-loadbalancer-deleteDELETE Configure UDP Load Balancer.
ParameterDescriptionExample
metadata.namespaceNamespace-
nameName-
namespaceNamespace-
metadata.nameName-
ParameterDescriptionExample
response_formatThe format in which the configuration object is to be fetched. This could be for example-
label_filterA LabelSelectorType expression that every item in list response will satisfy.-
report_fieldsThe report_fields parameter-
report_status_fieldsThe report_status_fields parameter-

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
spec.advertise_custom-
spec.advertise_on_public-
spec.advertise_on_public_default_vip-
spec.do_not_advertise-
OptionDescriptionRecommended
OptionDescriptionRecommended
spec.hash_policy_choice_random-
spec.hash_policy_choice_round_robin-
spec.hash_policy_choice_source_ip_stickiness-
OptionDescriptionRecommended
spec.udp-
OptionDescriptionRecommended
spec.listen_port-
spec.port_ranges-
OptionDescriptionRecommended
spec.advertise_custom.advertise_where[].advertise_on_public-
spec.advertise_custom.advertise_where[].cloud_edge_segment-
spec.advertise_custom.advertise_where[].segment-
spec.advertise_custom.advertise_where[].site-
spec.advertise_custom.advertise_where[].site_segment-
spec.advertise_custom.advertise_where[].virtual_network-
spec.advertise_custom.advertise_where[].virtual_site-
spec.advertise_custom.advertise_where[].virtual_site_segment-
spec.advertise_custom.advertise_where[].virtual_site_with_vip-
spec.advertise_custom.advertise_where[].vk8s_service-
OptionDescriptionRecommended
spec.advertise_custom.advertise_where[].virtual_network.default_v6_vip-
spec.advertise_custom.advertise_where[].virtual_network.specific_v6_vip-
OptionDescriptionRecommended
spec.advertise_custom.advertise_where[].virtual_network.default_vip-
spec.advertise_custom.advertise_where[].virtual_network.specific_vip-
OptionDescriptionRecommended
spec.origin_pools_weights[].cluster-
spec.origin_pools_weights[].pool-

Ask Claude to help you work with UDP Loadbalancer resources:

“Create a udp-loadbalancer named ‘example’ in the ‘production’ namespace”

“List all udp-loadbalancers in the ‘production’ namespace”

“Get details of the udp-loadbalancer named ‘example’ in namespace ‘production‘“

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/udp_loadbalancers" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/udp_loadbalancers/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/udp_loadbalancers" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @udp_loadbalancer.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/udp_loadbalancers/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"