Matt Carpenter
9ccf9cf928
Make node names RFC 1123 compliant ( #1505 )
...
* normalize node name - to lower case
Signed-off-by: Matthew Carpenter <mattcarp88@gmail.com >
* add unit test
Signed-off-by: Matthew Carpenter <mattcarp88@gmail.com >
---------
Signed-off-by: Matthew Carpenter <mattcarp88@gmail.com >
2026-04-06 22:35:24 +02:00
Martynas Deveikis
e475ac92ee
Reintroduce BGP config via node annotations ( #1499 )
...
* Check BGP config node annotations before creating server
Signed-off-by: Martynas Deveikis <martynasdev@gmail.com >
* Add E2E test for BGP config via node annotations
Signed-off-by: Martynas Deveikis <martynasdev@gmail.com >
* Escape prefix meta chars when parsing BGP config annotations
Signed-off-by: Martynas Deveikis <martynasdev@gmail.com >
* Fail when no peer IP in BGP config annotations
Signed-off-by: Martynas Deveikis <martynasdev@gmail.com >
* Stop allowing trailing characters in BGP config annotations
Signed-off-by: Martynas Deveikis <martynasdev@gmail.com >
* Compile bgp config annotation regexes outside of loops
Signed-off-by: Martynas Deveikis <martynasdev@gmail.com >
* Allow setting multi hop via BGP config annotations
Signed-off-by: Martynas Deveikis <martynasdev@gmail.com >
---------
Signed-off-by: Martynas Deveikis <martynasdev@gmail.com >
2026-04-04 12:44:53 +02:00
Patryk Strusiewicz-Surmacki
0fc31c62c7
Added e2e tests for endpoints watcher leaderelection ( #1496 )
...
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
2026-04-04 12:43:30 +02:00
Andrew Anderson
93329a5467
Add KubeStellar Console guided install reference to README
...
Add a Community Tools section with a link to the KubeStellar Console
guided kube-vip installation experience, which provides step-by-step
install with pre-flight checks, validation, troubleshooting, and
rollback support.
Signed-off-by: Andrew Anderson <andy@clubanderson.com >
2026-03-31 10:26:19 -04:00
Daniel Finneran
04becb6b9e
Update VERSION to v1.1.2
v1.1.2
2026-03-30 17:29:00 +01:00
Daniel Finneran
1824ccec78
Merge pull request #1492 from kube-vip/nftables_rule_fix
...
This adds the capability to filter on ports individually per rule
2026-03-30 12:28:13 +01:00
dependabot[bot]
11bdf4e66a
Bump k8s.io/client-go from 0.35.2 to 0.35.3 ( #1493 )
...
Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go ) from 0.35.2 to 0.35.3.
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/kubernetes/client-go/compare/v0.35.2...v0.35.3 )
---
updated-dependencies:
- dependency-name: k8s.io/client-go
dependency-version: 0.35.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-30 07:56:56 +02:00
Dan Finneran
adfc1d20fc
This adds the capability to filter on ports individually per rule
...
Signed-off-by: Dan Finneran <dan@thebsdbox.co.uk >
2026-03-29 15:16:45 +00:00
Soto Sugita
f1065a4a8c
services: retry on 403 Forbidden in ServicesWatcher WatchFunc kubeadm 1.34.x onwards ( #1465 )
...
* services: retry on 403/401 in ServicesWatcher using exponential backoff
On Kubernetes 1.34+, admin.conf uses O=kubeadm:cluster-admins instead
of O=system:masters. On joining control plane nodes, kube-vip starts
before etcd is promoted from learner to full member. RBAC data is not
yet available through the learner etcd, causing a transient 403
Forbidden or 401 Unauthorized on the first Watch call.
Replace the bare Watch call in ServicesWatcher's WatchFunc with
wait.ExponentialBackoffWithContext (from k8s.io/apimachinery/pkg/util/wait,
already in go.mod). Parameters: 2s initial, 2x factor, 0.1 jitter,
30s cap, 10 steps. Non-auth errors are returned immediately. Context
cancellation stops the retry loop cleanly.
Change Processor.rwClientSet from *kubernetes.Clientset to
kubernetes.Interface to enable fake client injection in tests.
watchEndpoint() uses p.clientSet (*kubernetes.Clientset) directly for
CreateRetryWatcher, avoiding an unnecessary type assertion.
Add unit tests covering: 403/401 retry succeeds, context cancellation
during retry. Update CHANGELOG.md.
Fixes: https://github.com/kube-vip/kube-vip/issues/1464
Signed-off-by: Soto Sugita <sotosugi@amazon.co.jp >
* fix(services): refactor watchWithAuthRetry as standalone function
Extract the retry logic into a standalone watchWithAuthRetry function
to avoid changing rwClientSet from *kubernetes.Clientset to
kubernetes.Interface. Tests now directly test watchWithAuthRetry via
closures without fake clientset injection or struct type changes.
Revert Processor.rwClientSet back to *kubernetes.Clientset and remove
the type assertion in watchEndpoint().
Signed-off-by: Soto Sugita <sotosugi@amazon.co.jp >
* fix(services): simplify watchWithAuthRetry tests to table-driven style
Signed-off-by: Soto Sugita <sotosugi@amazon.co.jp >
---------
Signed-off-by: Soto Sugita <sotosugi@amazon.co.jp >
2026-03-26 13:21:15 +01:00
Daniel
50993b63f1
Enhance WireGuard nftables and endpoint handling ( #1469 )
...
* do not masquerade for local endpoints
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* fix: do not add VIP to lo in wg mode
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* fix: setup policy routing for wg interface
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* refactor: use k8s API types for protocol
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* conservatively apply packet mark
only apply the ct mark as packet mark if it matches our calculated
fwmark
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* use new nftable setup
the nftable setup now uses only one set of chains per tunnel and
utilizes named maps and sets to match NAT the connections properly
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* ensure proper cleanup
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* watch kubernetes endpoints
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* refactor wireguard nftables implementation
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* use helper for if name determination
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
---------
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
2026-03-24 14:25:05 +01:00
Patryk Strusiewicz-Surmacki
4108a8b32a
Updated services error handling ( #1481 )
...
* Updated services error handling
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
* Fix service instance not found error
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
---------
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
2026-03-23 20:26:46 +01:00
dependabot[bot]
e6658ff32f
Bump go.etcd.io/etcd/api/v3 from 3.6.8 to 3.6.9 ( #1482 )
...
Bumps [go.etcd.io/etcd/api/v3](https://github.com/etcd-io/etcd ) from 3.6.8 to 3.6.9.
- [Release notes](https://github.com/etcd-io/etcd/releases )
- [Commits](https://github.com/etcd-io/etcd/compare/v3.6.8...v3.6.9 )
---
updated-dependencies:
- dependency-name: go.etcd.io/etcd/api/v3
dependency-version: 3.6.9
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 13:33:54 +01:00
dependabot[bot]
4bb5103f47
Bump go.etcd.io/etcd/client/v3 from 3.6.8 to 3.6.9 ( #1484 )
...
Bumps [go.etcd.io/etcd/client/v3](https://github.com/etcd-io/etcd ) from 3.6.8 to 3.6.9.
- [Release notes](https://github.com/etcd-io/etcd/releases )
- [Commits](https://github.com/etcd-io/etcd/compare/v3.6.8...v3.6.9 )
---
updated-dependencies:
- dependency-name: go.etcd.io/etcd/client/v3
dependency-version: 3.6.9
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 13:33:41 +01:00
dependabot[bot]
e3961d7404
Bump k8s.io/api from 0.35.2 to 0.35.3 ( #1486 )
...
Bumps [k8s.io/api](https://github.com/kubernetes/api ) from 0.35.2 to 0.35.3.
- [Commits](https://github.com/kubernetes/api/compare/v0.35.2...v0.35.3 )
---
updated-dependencies:
- dependency-name: k8s.io/api
dependency-version: 0.35.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 12:35:34 +01:00
dependabot[bot]
b10375824f
Bump anchore/sbom-action from 0.23.1 to 0.24.0 ( #1487 )
...
Bumps [anchore/sbom-action](https://github.com/anchore/sbom-action ) from 0.23.1 to 0.24.0.
- [Release notes](https://github.com/anchore/sbom-action/releases )
- [Changelog](https://github.com/anchore/sbom-action/blob/main/RELEASE.md )
- [Commits](https://github.com/anchore/sbom-action/compare/v0.23.1...v0.24.0 )
---
updated-dependencies:
- dependency-name: anchore/sbom-action
dependency-version: 0.24.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 12:16:23 +01:00
dependabot[bot]
1981efc95b
Bump go.etcd.io/etcd/client/pkg/v3 from 3.6.8 to 3.6.9 ( #1483 )
...
Bumps [go.etcd.io/etcd/client/pkg/v3](https://github.com/etcd-io/etcd ) from 3.6.8 to 3.6.9.
- [Release notes](https://github.com/etcd-io/etcd/releases )
- [Commits](https://github.com/etcd-io/etcd/compare/v3.6.8...v3.6.9 )
---
updated-dependencies:
- dependency-name: go.etcd.io/etcd/client/pkg/v3
dependency-version: 3.6.9
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 12:11:04 +01:00
dependabot[bot]
7cd2b00cee
Bump github.com/google/go-containerregistry from 0.21.2 to 0.21.3 ( #1485 )
...
Bumps [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry ) from 0.21.2 to 0.21.3.
- [Release notes](https://github.com/google/go-containerregistry/releases )
- [Commits](https://github.com/google/go-containerregistry/compare/v0.21.2...v0.21.3 )
---
updated-dependencies:
- dependency-name: github.com/google/go-containerregistry
dependency-version: 0.21.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 12:10:50 +01:00
Matej Kern
ba334acf7a
fix(egress): prevent unnecessary SNAT updates and fix missed updates ( #1433 )
...
* fix(egress): prevent unnecessary SNAT updates and fix missed updates #1428
Signed-off-by: RnkeZ <matej.kern@gmail.com >
* Remove ActionUpdate from services.go
Signed-off-by: RnkeZ <matej.kern@gmail.com >
* refactor(egress): remove redundant service DeepCopy
Signed-off-by: RnkeZ <matej.kern@gmail.com >
* refactor(endpoints): pass clientSet via function parameter instead of
storing in struct
Signed-off-by: RnkeZ <matej.kern@gmail.com >
* refactor(endpoints): pass egressUpdateFunc via parameter instead of storing in struct
Signed-off-by: RnkeZ <matej.kern@gmail.com >
* refactor(endpoints): update AddOrModify parameters
Signed-off-by: RnkeZ <matej.kern@gmail.com >
* fix formatting issues
Signed-off-by: RnkeZ <matej.kern@gmail.com >
---------
Signed-off-by: RnkeZ <matej.kern@gmail.com >
2026-03-20 15:01:34 +01:00
Daniel Finneran
3a387b87c5
Update version to v1.1.1
...
Bumping for a new release
v1.1.1
2026-03-20 11:05:12 +00:00
Patryk Strusiewicz-Surmacki
ca47abfc3a
Fixed services error handling ( #1478 )
...
* Fixed services error handling
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
* Removed redundant code
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
---------
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
2026-03-20 10:44:32 +01:00
Patryk Strusiewicz-Surmacki
dcd8fe0392
Fixed leader election restart issue ( #1477 )
...
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
2026-03-19 11:29:26 +01:00
dependabot[bot]
4e0de5277d
Bump google.golang.org/grpc from 1.79.2 to 1.79.3 ( #1476 )
...
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go ) from 1.79.2 to 1.79.3.
- [Release notes](https://github.com/grpc/grpc-go/releases )
- [Commits](https://github.com/grpc/grpc-go/compare/v1.79.2...v1.79.3 )
---
updated-dependencies:
- dependency-name: google.golang.org/grpc
dependency-version: 1.79.3
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-19 11:25:46 +01:00
dependabot[bot]
897a1fe6d8
Bump github.com/florianl/go-conntrack from 0.6.0 to 0.7.0 ( #1470 )
...
Bumps [github.com/florianl/go-conntrack](https://github.com/florianl/go-conntrack ) from 0.6.0 to 0.7.0.
- [Release notes](https://github.com/florianl/go-conntrack/releases )
- [Commits](https://github.com/florianl/go-conntrack/compare/v0.6.0...v0.7.0 )
---
updated-dependencies:
- dependency-name: github.com/florianl/go-conntrack
dependency-version: 0.7.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-17 14:57:29 +01:00
dependabot[bot]
25f215e38d
Bump anchore/sbom-action from 0.23.0 to 0.23.1 ( #1471 )
...
Bumps [anchore/sbom-action](https://github.com/anchore/sbom-action ) from 0.23.0 to 0.23.1.
- [Release notes](https://github.com/anchore/sbom-action/releases )
- [Changelog](https://github.com/anchore/sbom-action/blob/main/RELEASE.md )
- [Commits](https://github.com/anchore/sbom-action/compare/v0.23.0...v0.23.1 )
---
updated-dependencies:
- dependency-name: anchore/sbom-action
dependency-version: 0.23.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-17 14:57:20 +01:00
Patryk Strusiewicz-Surmacki
52d7c23db7
Fixed BGP route advertisement in control-plane only mode ( #1468 )
...
* Fixed BGP shutdown in control-plane only mode
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
* Added E2E tests for control-plane only mode
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
---------
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
2026-03-13 16:18:07 +01:00
Marcel Fest
64880b62ab
Update to v1.1.0
...
Signed-off-by: Marcel Fest <marcel.fest@telekom.de >
v1.1.0
2026-03-09 14:12:37 +01:00
Sebastian Gaiser
494c48bf21
fix(metrics): register correct gauge for BGP session info ( #1460 )
...
PrometheusCollector() was registering bgpServer.BGPSessionInfoGauge while the worker was writing to Manager.bgpSessionInfoGauge — two separate objects representing the same metric. This caused kube_vip_manager_bgp_session_info to always appear empty in Prometheus.
Signed-off-by: Sebastian Gaiser <sebastiangaiser@users.noreply.github.com >
2026-03-09 12:44:12 +01:00
dependabot[bot]
ff93e58cfd
Bump golang.org/x/sys from 0.41.0 to 0.42.0 ( #1452 )
...
Bumps [golang.org/x/sys](https://github.com/golang/sys ) from 0.41.0 to 0.42.0.
- [Commits](https://github.com/golang/sys/compare/v0.41.0...v0.42.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/sys
dependency-version: 0.42.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-09 11:24:00 +01:00
dependabot[bot]
857891f695
Bump docker/build-push-action from 6 to 7 ( #1454 )
...
Bumps [docker/build-push-action](https://github.com/docker/build-push-action ) from 6 to 7.
- [Release notes](https://github.com/docker/build-push-action/releases )
- [Commits](https://github.com/docker/build-push-action/compare/v6...v7 )
---
updated-dependencies:
- dependency-name: docker/build-push-action
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-09 08:06:08 +01:00
dependabot[bot]
377153bc52
Bump docker/setup-qemu-action from 3 to 4 ( #1456 )
...
Bumps [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action ) from 3 to 4.
- [Release notes](https://github.com/docker/setup-qemu-action/releases )
- [Commits](https://github.com/docker/setup-qemu-action/compare/v3...v4 )
---
updated-dependencies:
- dependency-name: docker/setup-qemu-action
dependency-version: '4'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-09 08:05:48 +01:00
dependabot[bot]
a46f0e76c5
Bump docker/setup-buildx-action from 3 to 4 ( #1457 )
...
Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action ) from 3 to 4.
- [Release notes](https://github.com/docker/setup-buildx-action/releases )
- [Commits](https://github.com/docker/setup-buildx-action/compare/v3...v4 )
---
updated-dependencies:
- dependency-name: docker/setup-buildx-action
dependency-version: '4'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-09 08:05:37 +01:00
dependabot[bot]
51725463d6
Bump docker/metadata-action from 5.10.0 to 6.0.0 ( #1455 )
...
Bumps [docker/metadata-action](https://github.com/docker/metadata-action ) from 5.10.0 to 6.0.0.
- [Release notes](https://github.com/docker/metadata-action/releases )
- [Commits](https://github.com/docker/metadata-action/compare/v5.10.0...v6.0.0 )
---
updated-dependencies:
- dependency-name: docker/metadata-action
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-09 08:05:22 +01:00
dependabot[bot]
001c467e36
Bump golang.org/x/sync from 0.19.0 to 0.20.0 ( #1451 )
...
Bumps [golang.org/x/sync](https://github.com/golang/sync ) from 0.19.0 to 0.20.0.
- [Commits](https://github.com/golang/sync/compare/v0.19.0...v0.20.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/sync
dependency-version: 0.20.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-09 08:05:01 +01:00
dependabot[bot]
ff33ebe6ab
Bump github.com/google/go-containerregistry from 0.21.1 to 0.21.2 ( #1450 )
...
Bumps [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry ) from 0.21.1 to 0.21.2.
- [Release notes](https://github.com/google/go-containerregistry/releases )
- [Commits](https://github.com/google/go-containerregistry/compare/v0.21.1...v0.21.2 )
---
updated-dependencies:
- dependency-name: github.com/google/go-containerregistry
dependency-version: 0.21.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-09 08:04:43 +01:00
dependabot[bot]
97fb2bd711
Bump k8s.io/klog/v2 from 2.130.1 to 2.140.0 ( #1453 )
...
Bumps [k8s.io/klog/v2](https://github.com/kubernetes/klog ) from 2.130.1 to 2.140.0.
- [Release notes](https://github.com/kubernetes/klog/releases )
- [Changelog](https://github.com/kubernetes/klog/blob/main/RELEASE.md )
- [Commits](https://github.com/kubernetes/klog/compare/v2.130.1...2.140.0 )
---
updated-dependencies:
- dependency-name: k8s.io/klog/v2
dependency-version: 2.140.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-09 08:04:27 +01:00
dependabot[bot]
e36ed5a189
Bump google.golang.org/grpc from 1.79.1 to 1.79.2 ( #1449 )
...
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go ) from 1.79.1 to 1.79.2.
- [Release notes](https://github.com/grpc/grpc-go/releases )
- [Commits](https://github.com/grpc/grpc-go/compare/v1.79.1...v1.79.2 )
---
updated-dependencies:
- dependency-name: google.golang.org/grpc
dependency-version: 1.79.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-09 08:04:10 +01:00
dependabot[bot]
342709a63e
Bump golang from 1.26.0-alpine3.23 to 1.26.1-alpine3.23 ( #1458 )
...
Bumps golang from 1.26.0-alpine3.23 to 1.26.1-alpine3.23.
---
updated-dependencies:
- dependency-name: golang
dependency-version: 1.26.1-alpine3.23
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-09 07:20:14 +01:00
dependabot[bot]
e61453ace2
Bump docker/login-action from 3 to 4 ( #1459 )
...
Bumps [docker/login-action](https://github.com/docker/login-action ) from 3 to 4.
- [Release notes](https://github.com/docker/login-action/releases )
- [Commits](https://github.com/docker/login-action/compare/v3...v4 )
---
updated-dependencies:
- dependency-name: docker/login-action
dependency-version: '4'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-09 07:19:52 +01:00
Daniel Finneran
d62dd9313a
Now will ensure egress rules are cleaned for nft-internal ( #1447 )
...
* Now will ensure egress rules are cleaned for nft-internal
Signed-off-by: Dan Finneran <dan@thebsdbox.co.uk >
* Fixed missing IPv6 rule
Signed-off-by: Dan Finneran <dan@thebsdbox.co.uk >
---------
Signed-off-by: Dan Finneran <dan@thebsdbox.co.uk >
2026-03-06 17:44:20 +01:00
Patryk Strusiewicz-Surmacki
eb18c59519
Cleanup of channels ( #1444 )
...
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
v1.1.0-rc.0
2026-03-06 16:06:02 +01:00
Olli Hauer
5f11053080
fix: skip UPNP refresh logging when no service instances ( #1446 )
...
Prevents log spam in control-plane-only deployments where
ServiceInstances is always empty. The UPNP refresh goroutine
still runs but no longer logs every 5 minutes when there's
nothing to refresh.
Fixes noise in SIEM systems and log aggregators.
Signed-off-by: Olli Hauer <ohauer@gmx.de >
2026-03-05 23:56:42 +01:00
k-jun
7caf5f656a
fix: align CLI lease flag defaults with Kubernetes client-go defaults (15/10/2) ( #1429 )
...
Signed-off-by: k-jun <keijun091221@gmail.com >
2026-03-04 16:42:26 +01:00
Patryk Strusiewicz-Surmacki
88efcc7bc2
Added waitgroups ( #1434 )
...
Signed-off-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
Co-authored-by: Patryk Strusiewicz-Surmacki <patryk.pawel.strusiewicz-surmacki@external.telekom.de >
2026-03-03 18:06:15 +01:00
Chris
abb4741d1f
fix: don't add VIP to interface in routing table and BGP service modes ( #1442 )
...
PR #1252 (fix for #1243 ) removed the guard that prevented adding the
service IP to the interface in routing table mode. This made AddIP()
unconditional in StartLoadBalancerService(), causing the LoadBalancer IP
to be added to the interface on ALL nodes.
In no-election routing table mode (vip_leaderelection=false,
svc_election=false), this leads to traffic blackholing: every node has
the VIP bound to its interface, but only the node with local endpoints
can actually serve traffic when externalTrafficPolicy is Local.
The original code correctly guarded AddIP() behind `!c.EnableRoutingTable`
because in L3 modes (routing table / BGP), traffic is attracted via
routing protocols, not by having the IP present on the interface. The
endpoint watchers (endpoints_routing_table.go, endpoints_bgp.go) manage
routes/advertisements based on local endpoint presence.
Restore the guard and extend it to also cover BGP mode:
- Routing table mode: only routes are managed (by endpoint watcher or
leader), no IP on interface
- BGP mode: only BGP advertisements are managed, no IP on interface
- ARP/L2 mode: IP is added to interface (unchanged behavior)
Control plane (cp_enable) is unaffected as vipService() has its own
independent AddIP() call.
Existing stale IPs from the buggy version are cleaned up automatically
on restart, as StartLoadBalancerService() unconditionally calls
DeleteIP() before the now-guarded AddIP().
Signed-off-by: Christopher Dziomba <christopher.dziomba@telekom.de >
2026-03-03 17:33:09 +01:00
Daniel
81cc332fd8
WireGuard for services ( #1414 )
...
* add tunnel manager
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* add wireguard endpoints and services
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* add udp support
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* fix endpoint watching
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* refactor code
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
* fix after rebase
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
---------
Signed-off-by: Daniel Nägele <daniel@naegele.dev >
Co-authored-by: Marcel Fest <marcel.fest@live.de >
2026-03-02 21:56:23 +01:00
dependabot[bot]
19b63cdbf6
Bump anchore/sbom-action from 0.22.2 to 0.23.0 ( #1439 )
...
Bumps [anchore/sbom-action](https://github.com/anchore/sbom-action ) from 0.22.2 to 0.23.0.
- [Release notes](https://github.com/anchore/sbom-action/releases )
- [Changelog](https://github.com/anchore/sbom-action/blob/main/RELEASE.md )
- [Commits](https://github.com/anchore/sbom-action/compare/v0.22.2...v0.23.0 )
---
updated-dependencies:
- dependency-name: anchore/sbom-action
dependency-version: 0.23.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 21:10:22 +01:00
dependabot[bot]
61f5dc9cf9
Bump k8s.io/api from 0.35.1 to 0.35.2 ( #1437 )
...
Bumps [k8s.io/api](https://github.com/kubernetes/api ) from 0.35.1 to 0.35.2.
- [Commits](https://github.com/kubernetes/api/compare/v0.35.1...v0.35.2 )
---
updated-dependencies:
- dependency-name: k8s.io/api
dependency-version: 0.35.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 21:09:51 +01:00
dependabot[bot]
bed8c4ccec
Bump k8s.io/client-go from 0.35.1 to 0.35.2 ( #1438 )
...
Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go ) from 0.35.1 to 0.35.2.
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/kubernetes/client-go/compare/v0.35.1...v0.35.2 )
---
updated-dependencies:
- dependency-name: k8s.io/client-go
dependency-version: 0.35.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 21:09:33 +01:00
dependabot[bot]
c74b4e4de6
Bump actions/upload-artifact from 6 to 7 ( #1440 )
...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 6 to 7.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/v6...v7 )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 18:59:47 +01:00
dependabot[bot]
ae36ce1f04
Bump github.com/google/go-containerregistry from 0.21.0 to 0.21.1 ( #1436 )
...
Bumps [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry ) from 0.21.0 to 0.21.1.
- [Release notes](https://github.com/google/go-containerregistry/releases )
- [Commits](https://github.com/google/go-containerregistry/compare/v0.21.0...v0.21.1 )
---
updated-dependencies:
- dependency-name: github.com/google/go-containerregistry
dependency-version: 0.21.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 18:58:38 +01:00