Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## unreleased

* Add public ipv6 node address handling (@gottwald)
* Add automatic dual-stack support for REGIONAL_NETWORK load balancers when all cluster nodes support dual-stack networking (@gottwald)
* Add node filtering to load balancers: only LB-Ready nodes with appropriate IP addresses are included in load balancers (@gottwald)
* Emit Kubernetes events when load balancer configuration errors occur (e.g., explicit dual-stack annotation with IPv4-only nodes) (@gottwald)

## v0.1.65 (beta) - January 14, 2026

Expand Down
18 changes: 3 additions & 15 deletions cloud-controller-manager/do/certificates_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -312,21 +312,9 @@ func Test_LBaaSCertificateScenarios(t *testing.T) {
}

nodes := []*v1.Node{
{
ObjectMeta: metav1.ObjectMeta{
Name: "node-1",
},
},
{
ObjectMeta: metav1.ObjectMeta{
Name: "node-2",
},
},
{
ObjectMeta: metav1.ObjectMeta{
Name: "node-3",
},
},
newNodeWithIPs("node-1", "10.0.0.1", "2001:db8::1", true),
newNodeWithIPs("node-2", "10.0.0.2", "2001:db8::2", true),
newNodeWithIPs("node-3", "10.0.0.3", "2001:db8::3", true),
}
droplets := []godo.Droplet{
{
Expand Down
Loading