github.com/hetznercloud/hcloud-cloud-controller-manager
v1.35.0
#2407 most downloaded on Go modules
hetznercloud/hcloud-cloud-controller-manager
What this package is like to depend on
Last release 13 days ago
11 Aug 2026
Release timing varies
gaps range from 8 days to 2 months
Nearly every release is documented
notes for 51 of 52 stable releases
Nothing withdrawn
no release was ever pulled
8 years old
148 releases · first in 2018
35 releases in the last 12 months
see the full history below
Release timeline
148 releases · Mar 2018 to Aug 2026Releases
latest 60 of 148-
v1.35.011 Aug 2026Release notes
Open source →Zone Label
The
datacenterproperty was removed from the Server object (see changelog. For backwards compatibility, we statically compute the datacenter from the location to fill thetopology.kubernetes.io/zoneandfailure-domain.beta.kubernetes.io/zonelabels. In the next major release we will stop setting these values. To stop setting these values now, you can set the environment variableHCLOUD_INSTANCES_ZONE_LABEL_ENABLED=false. See here for more details.Features
Release notes
Open source →Zone Label
The
datacenterproperty was removed from the Server object (see changelog. For backwards compatibility, we statically compute the datacenter from the location to fill thetopology.kubernetes.io/zoneandfailure-domain.beta.kubernetes.io/zonelabels. In the next major release we will stop setting these values. To stop setting these values now, you can set the environment variableHCLOUD_INSTANCES_ZONE_LABEL_ENABLED=false. See here for more details.Features
-
v1.34.1-0.20260804110647-926a08a6bec904 Aug 2026 pre-releaseNothing published for this version
-
v1.34.1-0.20260729085529-27253f52c33629 Jul 2026 pre-releaseNothing published for this version
-
v1.34.1-0.20260720045012-555df141e7b220 Jul 2026 pre-releaseNothing published for this version
-
v1.34.1-0.20260717121059-f4bf0d32a33e17 Jul 2026 pre-releaseNothing published for this version
-
v1.34.017 Jul 2026Release notes
Open source → -
v1.33.1-0.20260716072857-4de676966d8416 Jul 2026 pre-releaseNothing published for this version
-
v1.33.018 Jun 2026Release notes
Open source →Changed
Renamed
HCLOUD_SERVER_CACHE_TTLtoHCLOUD_SERVER_CACHE_MAX_AGE. The server cache lifetime is now configured viaHCLOUD_SERVER_CACHE_MAX_AGE(default 10s). Individual controllers may override this default for specific lookups — for example, the routes controller uses a longer max age. Action required: if you setHCLOUD_SERVER_CACHE_TTL, switch toHCLOUD_SERVER_CACHE_MAX_AGE; the old variable is no longer recognized.Removed
Removed the
hcops/AllServersCache.*operation metrics. The legacy AllServersCache was replaced by the shared server cache, so the followingcloud_controller_manager_operations_totalseries labeled op="hcops/AllServersCache.*" are no longer emitted:hcops/AllServersCache.ByIDhcops/AllServersCache.ByNamehcops/AllServersCache.ByPrivateIPhcops/AllServersCache.getCachehcops/AllServersCache.refreshCache
They are superseded by the new server cache metric
cloud_controller_manager_server_cache_requests_total, a counter partitioned by subsystem, mode, and result:- subsystem: instances_v2, routes (or none when unset)
- mode: all, one, off
- result: hit, miss
cloud_controller_manager_server_cache_requests_total{subsystem="instances_v2", mode="all", result="hit"} cloud_controller_manager_server_cache_requests_total{subsystem="routes", mode="all", result="miss"}Update any dashboards or alerts referencing the old op series accordingly.
Features
- cache: replace TTL with max-age
- cache: use server cache in routes controller
Bug Fixes
- cache: when api returns not found do not return an expired entry (#1271)
Release notes
Open source →Changed
Renamed
HCLOUD_SERVER_CACHE_TTLtoHCLOUD_SERVER_CACHE_MAX_AGE. The server cache lifetime is now configured viaHCLOUD_SERVER_CACHE_MAX_AGE(default 10s). Individual controllers may override this default for specific lookups — for example, the routes controller uses a longer max age. Action required: if you setHCLOUD_SERVER_CACHE_TTL, switch toHCLOUD_SERVER_CACHE_MAX_AGE; the old variable is no longer recognized.Removed
Removed the
hcops/AllServersCache.*operation metrics. The legacy AllServersCache was replaced by the shared server cache, so the followingcloud_controller_manager_operations_totalseries labeled op="hcops/AllServersCache.*" are no longer emitted:hcops/AllServersCache.ByIDhcops/AllServersCache.ByNamehcops/AllServersCache.ByPrivateIPhcops/AllServersCache.getCachehcops/AllServersCache.refreshCache
They are superseded by the new server cache metric
cloud_controller_manager_server_cache_requests_total, a counter partitioned by subsystem, mode, and result:- subsystem: instances_v2, routes (or none when unset)
- mode: all, one, off
- result: hit, miss
cloud_controller_manager_server_cache_requests_total{subsystem="instances_v2", mode="all", result="hit"} cloud_controller_manager_server_cache_requests_total{subsystem="routes", mode="all", result="miss"}Update any dashboards or alerts referencing the old op series accordingly.
Features
- cache: replace TTL with max-age
- cache: use server cache in routes controller
Bug Fixes
- cache: when api returns not found do not return an expired entry (#1271)
-
v1.32.1-0.20260614161804-cb9c1a126cde14 Jun 2026 pre-releaseNothing published for this version
-
v1.32.012 Jun 2026Release notes
Open source →Cache Server Lookups in Node Controllers
This release introduces an experimental server cache to reduce Hetzner Cloud API calls. During an experimental phase, breaking changes on those features may occur within minor releases.
The node and node lifecycle controllers look up Servers by ID or name, generating significant API traffic during cluster scaling. A new cache sits between the controllers and the API to serve these lookups, reducing the number of requests.
It is enabled by default since we believe the implementation is safe in practice, but is experimental and may see breaking changes within minor releases. Configure it via environment variables:
-
HCLOUD_SERVER_CACHE_MODE(all|one|off, defaultall):all— fetch all Servers once and serve lookups from the snapshot until the TTL expires.one— cache each Server individually with its own expiration.off— disable caching; every lookup hits the API.
-
HCLOUD_SERVER_CACHE_TTL(duration, default10s): lifetime of cached entries (e.g.30s,2m); values above a minute are not recommended.
Features
- instances: cache server lookups to reduce API calls (#1252)
Release notes
Open source →Cache Server Lookups in Node Controllers
This release introduces an experimental server cache to reduce Hetzner Cloud API calls. During an experimental phase, breaking changes on those features may occur within minor releases.
The node and node lifecycle controllers look up Servers by ID or name, generating significant API traffic during cluster scaling. A new cache sits between the controllers and the API to serve these lookups, reducing the number of requests.
It is enabled by default since we believe the implementation is safe in practice, but is experimental and may see breaking changes within minor releases. Configure it via environment variables:
-
HCLOUD_SERVER_CACHE_MODE(all|one|off, defaultall):all— fetch all Servers once and serve lookups from the snapshot until the TTL expires.one— cache each Server individually with its own expiration.off— disable caching; every lookup hits the API.
-
HCLOUD_SERVER_CACHE_TTL(duration, default10s): lifetime of cached entries (e.g.30s,2m); values above a minute are not recommended.
Features
- instances: cache server lookups to reduce API calls (#1252)
-
-
v1.31.2-0.20260522055103-86fc68c06f0f22 May 2026 pre-releaseNothing published for this version
-
v1.31.119 May 2026 -
v1.31.1-0.20260508091413-f4c2735affa608 May 2026 pre-releaseNothing published for this version
-
v1.31.008 May 2026Release notes
Open source →Features
- robot: allow Robot support without API credentials for IP-based LB targets (#1163)
- helm: allow customizing chart deployment strategy (#1190)
- support Kubernetes v1.36
- drop support for Kubernetes v1.32
Bug Fixes
Release notes
Open source →Features
- robot: allow Robot support without API credentials for IP-based LB targets (#1163)
- helm: allow customizing chart deployment strategy (#1190)
- support Kubernetes v1.36
- drop support for Kubernetes v1.32
Bug Fixes
- helm: remove permissions for persistentvolumes (#1203)
- route: error handling on locked networks (#1215)
-
v1.30.2-0.20260302072907-ac208a50774002 Mar 2026 pre-releaseNothing published for this version
-
v1.30.120 Feb 2026Release notes
Open source →Datacenter Deprecation
The
server.datacenterfield is deprecated and will be removed from the API response after July 2026: https://docs.hetzner.cloud/changelog#2025-12-16-phasing-out-datacentersTo avoid a breaking change in HCCM, we decided to statically map from the old location names to the existing datacenter names for the
topology.kubernetes.io/zonelabel. For new locations we will return the location name without a-dcxxsuffix.Deployments of
hcloud-cloud-controller-managerthat are not updated when the field is removed from the API will panic with the following error:"Observed a panic" panic="runtime error: invalid memory address or nil pointer dereference" panicGoValue=""invalid memory address or nil pointer dereference""
We have published an RFC which details how we want to continue utilizing the labels
topology.kubernetes.io/zoneandtopology.kubernetes.io/region: #1146 (comment)Bug Fixes
- statically map deprecated datacenter names (#1159)
Release notes
Open source →Datacenter Deprecation
The
server.datacenterfield is deprecated and will be removed from the API response after July 2026: https://docs.hetzner.cloud/changelog#2025-12-16-phasing-out-datacentersTo avoid a breaking change in HCCM, we decided to statically map from the old location names to the existing datacenter names for the
topology.kubernetes.io/zonelabel. For new locations we will return the location name without a-dcxxsuffix.Deployments of
hcloud-cloud-controller-managerthat are not updated when the field is removed from the API will panic with the following error:"Observed a panic" panic="runtime error: invalid memory address or nil pointer dereference" panicGoValue=""invalid memory address or nil pointer dereference""
We have published an RFC which details how we want to continue utilizing the labels
topology.kubernetes.io/zoneandtopology.kubernetes.io/region: https://github.com/hetznercloud/hcloud-cloud-controller-manager/issues/1146#issuecomment-3919929223Bug Fixes
- statically map deprecated datacenter names (#1159)
-
v1.30.1-0.20260213133124-4ef93316f23b13 Feb 2026 pre-releaseNothing published for this version
-
v1.30.011 Feb 2026Release notes
Open source →Features
- support Kubernetes v1.35
- drop support for Kubernetes v1.31
Bug Fixes
- load-balancer: wait for action of managed certificate (#1144)
Release notes
Open source →Features
- support Kubernetes v1.35
- drop support for Kubernetes v1.31
Bug Fixes
- load-balancer: wait for action of managed certificate (#1144)
-
v1.29.3-0.20260130120045-8045e966bcab30 Jan 2026 pre-releaseNothing published for this version
-
v1.29.222 Jan 2026Release notes
Open source →Bug Fixes
- tcp service created for service with unsupported load balancer protocol (#1129)
Release notes
Open source →Bug Fixes
- tcp service created for service with unsupported load balancer protocol (#1129)
-
v1.29.120 Jan 2026Release notes
Open source →Bug Fixes
- respect proxy protocol default from config for load balancer status (#1131)
Release notes
Open source →Bug Fixes
- respect proxy protocol default from config for load balancer status (#1131)
-
v1.29.1-0.20251222112831-d97c59c8a54422 Dec 2025 pre-releaseNothing published for this version
-
v1.29.018 Dec 2025Release notes
Open source →Watch-Based Route Reconciliation
Previously, route reconciliation is performed at a fixed interval of 30s. This leads to unnecessary API requests, as a
GET /v1/networks/{id}call is triggered every 30s, even when no changes have occurred.Upstream, we have contributed an event-driven approach, similar to the mechanisms used by other controllers such as the Load Balancer controller. With this new approach, route reconciliation is triggered by node additions, node deletions, or changes to a node’s
PodCIDRsorAddresses. Additionally, to ensure consistency, reconciliation still occurs periodically at a randomized interval between 12 and 24 hours.Enabled by default
This feature is now enabled by default.
If you encounter any problems you can disable the feature by setting the following Helm value:
args.feature-gates=CloudControllerManagerWatchBasedRoutesReconciliation=falseGlobal Load Balancer Defaults
Configure cluster-wide defaults for Load Balancers via the extended
HCLOUD_LOAD_BALANCERS_*env vars. These values automatically apply during Load Balancer creation and reconciliation whenever annotations are omitted. Learn more about it in the reference documentationFeatures
- extend environment variables for default load balancer configuration (#1052)
- enable watch based route reconciliation by default (#1112)
-
v1.28.1-0.20251125115807-24f9d7cf48c825 Nov 2025 pre-releaseNothing published for this version
-
v1.28.1-0.20251114071357-d946fd9c080514 Nov 2025 pre-releaseNothing published for this version
-
v1.28.1-0.20251112065452-5fcaf36b601712 Nov 2025 pre-releaseNothing published for this version
-
v1.28.1-0.20251107133432-eaf41084ea4807 Nov 2025 pre-releaseNothing published for this version
-
v1.28.1-0.20251103094743-d746f122644203 Nov 2025 pre-releaseNothing published for this version
-
v1.28.1-0.20251031071320-42695c3eea4a31 Oct 2025 pre-releaseNothing published for this version
-
v1.28.1-0.20251030043356-fc6572f8f35930 Oct 2025 pre-releaseNothing published for this version
-
v1.28.029 Oct 2025Release notes
Open source →Updated ClusterRole for HCCM
We have introduced a custom
ClusterRolefor the HCCM component, based on the upstream recommendation from sig-cloud-provider.To ensure a smooth transition, we renamed the
ClusterRoleBindingby adding the:restrictedsuffix. This change was necessary because theroleReffield in aClusterRoleBindingis immutable, which would otherwise cause errors during a Helm upgrade.As a result, users who deploy HCCM using the provided Kubernetes manifests must manually delete the old
ClusterRoleBindingafter applying the updated manifests. Users deploying via the Helm chart do not need to take any action.kubectl delete clusterrolebindings.rbac.authorization.k8s.io system:hcloud-cloud-controller-managerFeatures
- helm: use custom ClusterRole
- configurable metrics address (#1055)
Bug Fixes
- add client-side timeouts to hcloud and robot clients (#1058)
-
v1.28.0-rc.128 Oct 2025 pre-releaseRelease notes
Open source →Updated ClusterRole for HCCM
We have introduced a custom
ClusterRolefor the HCCM component, based on the upstream recommendation from sig-cloud-provider.Due to this change, users who deploy HCCM using the provided Kubernetes manifests must manually remove the old ClusterRoleBinding after applying the updated manifests. Users deploying via the Helm chart do not need to perform any migration steps.
kubectl delete clusterrolebindings.rbac.authorization.k8s.io system:hcloud-cloud-controller-manager -
v1.28.0-rc.028 Oct 2025 pre-releaseRelease notes
Open source →Updated ClusterRole for HCCM
We have introduced a custom
ClusterRolefor the HCCM component, based on the upstream recommendation from sig-cloud-provider.Because of this change, a simple
helm upgrademay fail due to immutable fields in the existingClusterRoleBinding. To ensure a successful upgrade, you must delete the existingClusterRoleBindingbefore upgrading. This will make HCCM temporarily unavailable until the new version is deployed. Please avoid making any changes to the clusters, especially node- or service-related modifications, during this time.kubectl delete clusterrolebindings.rbac.authorization.k8s.io system:hcloud-cloud-controller-managerFeatures
- helm: use custom ClusterRole
- configurable metrics address (#1055)
Bug Fixes
- add client-side timeouts to hcloud and robot clients (#1058)
-
v1.27.1-0.20251002070750-a7144fe1dc7602 Oct 2025 pre-releaseNothing published for this version
-
v1.27.001 Oct 2025Release notes
Open source →Attach Load Balancer to a Subnet
If your CCM is configured for a Private Network, Load Balancers can now join one of its subnets. To place a Load Balancer in a specific subnet, use the new
load-balancer.hetzner.cloud/private-subnet-ip-rangeannotation. Learn more about this feature here.Watch-Based Route Reconciliation (Experimental)
Currently, route reconciliation is performed at a fixed interval of 30s. This leads to unnecessary API requests, as a
GET /v1/networks/{id}call is triggered every 30s, even when no changes have occurred.Upstream we have proposed an event-driven approach, similar to the mechanism used by other controllers such as the Load Balancer Controller. With this new approach, route reconciliation is triggered on node additions, node deletions, or when the
PodCIDRsorAddressesof nodes change. Additionally, to ensure consistency, reconciliation will still occur periodically at a randomized interval between 12 and 24 hours.We are close to merging a Kubernetes Enhancement Proposal (KEP). Furthermore, a pull request containing the implementation is already open in the Kubernetes repository.
Forked Upstream Libraries
In this release, we replaced the upstream
controller-managerandcloud-providerlibraries with our own forks. These forks are based on the upstreamv0.34.1release (aligned with Kubernetes v1.34.1) and include our patches on top.Enabling the Feature
This feature is disabled by default and will not affect existing deployments unless explicitly enabled. We recommend testing it in a non-production environment before considering use in production.
As the KEP has not yet been reviewed for production readiness, the feature gate name may change in an upcoming release. Since this feature is marked as experimental, such changes will not be considered breaking.
To enable the feature, set the following Helm value:
args.feature-gates=CloudControllerManagerWatchBasedRoutesReconciliation=trueFeatures
- watch-based route reconciliation (#970)
- set dns config via helm chart values (#1027)
- support Kubernetes v1.34 and drop v1.30 (#1037)
- load-balancer: attach load balancer to specific subnetwork (#1031)
Bug Fixes
- feature gate cannot be enabled (#980)
-
v1.27.0-alpha.1.0.20250721115320-25021a20601a21 Jul 2025 pre-releaseNothing published for this version
-
v1.27.0-alpha.118 Jul 2025 pre-releaseRelease notes
Open source →This release introduces an experimental feature to address #395.
Watch-Based Route Reconciliation (Experimental)
Currently, route reconciliation is performed at a fixed interval of 30s. This leads to unnecessary API requests, as a
GET /v1/networks/{id}call is triggered every 30s, even when no changes have occurred.Upstream we have proposed an event-driven approach, similar to the mechanism used by other controllers such as the Load Balancer Controller. With this new approach, route reconciliation is triggered on node additions, node deletions, or when the
PodCIDRsorAddressesof nodes change. Additionally, to ensure consistency, reconciliation will still occur periodically at a randomized interval between 12 and 24 hours.We are close to merging a Kubernetes Enhancement Proposal (KEP). Furthermore, a work-in-progress pull request containing the implementation is already open in the Kubernetes repository.
Forked Upstream Libraries
In this release, we replaced the upstream
controller-managerandcloud-providerlibraries with our own forks. These forks are based on the upstreamv0.33.2release (aligned with Kubernetes v1.33.2) and include our patches on top.Enabling the Feature
This feature is disabled by default and will not impact existing deployments unless explicitly enabled. We do not recommend running this feature in production environments at this stage. However, we welcome early testers who can try it in non-critical setups. Running with this feature active is enough for us to analyze its impact. No additional feedback is required.
To enable the feature, set the following Helm value:
args.feature-gates=CloudControllerManagerWatchBasedRoutesReconciliation=trueBug Fixes
- feature gate cannot be enabled (#980)
-
v1.27.0-alpha.011 Jul 2025 pre-releaseRelease notes
Open source →This release introduces an experimental feature to address #395.
Watch-Based Route Reconciliation (Experimental)
Currently, route reconciliation is performed at a fixed interval of 30 seconds. This leads to unnecessary API requests, as a
GET /v1/networks/{id}call is triggered every 30 seconds, even when no changes have occurred.Upstream we have proposed an event-driven approach, similar to the mechanism used by other controllers such as the Load Balancer Controller. With this new approach, route reconciliation is triggered on node additions, node deletions, or when the
PodCIDRsorAddressesof nodes change. Additionally, to ensure consistency, reconciliation will still occur periodically at a randomized interval between 12 and 24 hours.We are close to merging a Kubernetes Enhancement Proposal (KEP). Furthermore, a work-in-progress pull request containing the implementation is already open in the Kubernetes repository.
Forked Upstream Libraries
In this release, we replaced the upstream
controller-managerandcloud-providerlibraries with our own forks. These forks are based on the upstreamv0.33.2release (aligned with Kubernetes v1.33.2) and include our patches on top.Enabling the Feature
This feature is disabled by default and will not impact existing deployments unless explicitly enabled. We do not recommend running this feature in production environments at this stage. However, we welcome early testers who can try it in non-critical setups. Running with this feature active is enough for us to analyze its impact. No additional feedback is required.
To enable the feature, set the following Helm value:
args.feature-gates=CloudControllerManagerWatchBasedRoutesReconciliation=trueFeatures
- watch-based route reconciliation (#970)
-
v1.26.002 Jul 2025Release notes
Open source →Features
- add Kubernetes v1.33 and remove EOL version v1.29 (#934)
- helm: add value to disable ClusterRoleBinding for out-of-cluster install (#962)
-
v1.25.2-0.20250626023958-d752b271795e26 Jun 2025 pre-releaseNothing published for this version
-
v1.25.2-0.20250606202336-e6a1eb8cc12d06 Jun 2025 pre-releaseNothing published for this version
-
v1.25.2-0.20250602044734-ba7a5f0d54c102 Jun 2025 pre-releaseNothing published for this version
-
v1.25.2-0.20250529003103-13b41242879f29 May 2025 pre-releaseNothing published for this version
-
v1.25.2-0.20250522224618-b4b336b76b3a22 May 2025 pre-releaseNothing published for this version
-
v1.25.2-0.20250521153940-f430ff59daeb21 May 2025 pre-releaseNothing published for this version
-
v1.25.121 May 2025 -
v1.25.1-rc.021 May 2025 pre-release -
v1.25.020 May 2025Release notes
Open source →Features
- helm: support custom priorityClassName (#908)
- helm: support imagePullSecrets (#907)
-
v1.24.016 Apr 2025Release notes
Open source →Improved Robot Support in hcloud-cloud-controller-manager
The hcloud-cloud-controller-manager now forwards
InternalIPsby default on Robot nodes when the--node-ipflag is used. If the provided IP is not already registered as anExternalIPand matches the expected address family, it will be forwarded automatically during initialization.This allows the use of vSwitch IPs in private networks and Load Balancers.
🔗 Learn more in our updated Robot documentation 📘 Follow our how-to-guide to set up Load Balancers with vSwitch IPs.
Features
- robot: forward InternalIPs by default on Robot nodes (#865)
- load-balancer: enable use-private-ip annotation for Robot servers (#898)
Bug Fixes
- load-balancer: don't print entire node object when adding robot target (#904)
-
v1.23.1-0.20250303065912-427ea3513cdf03 Mar 2025 pre-releaseNothing published for this version
-
v1.23.022 Jan 2025Release notes
Open source →Features
- add support and tests for Kubernetes 1.32 (#846)
Bug Fixes
- metrics: do not emit kubernetes_build_info metric (#849)
-
v1.22.010 Jan 2025Release notes
Open source →This release includes an extension of our current metrics to also include the internals of
k8s.io/cloud-providerwith respect to the work queue depth and requests to the Kubernetes API.Besides having all data available, this will also help us with debugging #661.
Features
- metrics: add metrics from cloud-provider library (#824)
- load-balancer: emit warning if unsupported port protocol is configured (#828)
- allow arbitrary length API tokens (#752)
-
v1.21.1-0.20241209152151-6a5267f0ca6109 Dec 2024 pre-releaseNothing published for this version
-
v1.21.1-0.20241209120308-9c50200bdc4d09 Dec 2024 pre-releaseNothing published for this version
-
v1.21.1-0.20241204083757-dedc259439f404 Dec 2024 pre-releaseNothing published for this version
-
v1.21.026 Nov 2024Release notes
Open source →Feature Highlights & Upgrade Notes
Load Balancer IPs set to Private IPs
If networking support is enabled, the load balancer IPs are now populated with the private IPs, unless the
load-balancer.hetzner.cloud/disable-private-ingressannotation is set totrue. Please make sure that you configured the annotation according to your needs, for example if you are usingexternal-dns.Provided-By Label
We introduced a the label
instance.hetzner.cloud/provided-by, which will be automatically added to all new nodes. This label can have the valuescloudorrobotto distinguish between our products. We use this label in the csi-driver to ensure the daemonset is only running on cloud nodes. We recommend to add this label to your existing nodes with the appropriate value.kubectl label node $CLOUD_NODE_NAME instance.hetzner.cloud/provided-by=cloudkubectl label node $ROBOT_NODE_NAME instance.hetzner.cloud/provided-by=robot
Load Balancer IPMode Proxy
Kubernetes KEP-1860 added a new field to the Load Balancer Service Status that allows us to mark if the IP address we add should be considered as a Proxy (always send traffic here) and VIP (allow optimization by keeping the traffic in the cluster).
Previously Kubernetes considered all IPs as VIP, which caused issues when when the PROXY protocol was in use. We have previously recommended to use the annotation
load-balancer.hetzner.cloud/hostnameto workaround this problem.We now set the new field to
Proxyif the PROXY protocol is active so the issue should no longer appear. If you only added theload-balancer.hetzner.cloud/hostnameannotation for this problem, you can remove it after upgrading.Further information:
- https://github.com/kubernetes/enhancements/issues/1860
- https://github.com/hetznercloud/hcloud-cloud-controller-manager/issues/160#issuecomment-788638132
Features
- service: Specify private ip for loadbalancer (#724)
- add support & tests for Kubernetes 1.31 (#747)
- helm: allow setting extra pod volumes via chart values (#744)
- instance: add label to distinguish servers from Cloud and Robot (#764)
- emit event when robot server name and node name mismatch (#773)
- load-balancer: Set IPMode to "Proxy" if load balancer is configured to use proxy protocol (#727) (#783)
- routes: emit warning if cluster cidr is misconfigured (#793)
- load-balancer: ignore nodes that don't use known provider IDs (#780)
- drop tests for kubernetes v1.27 and v1.28
Bug Fixes
- populate ingress private ip when disable-private-ingress is false (#715)
- wrong version logged on startup (#729)
- invalid characters in label instance-type of robot servers (#770)
- no events are emitted as broadcaster has no sink configured (#774)
Kubernetes Support
This version was tested with Kubernetes 1.29 - 1.31. Furthermore, we dropped v1.27 and v1.28 support.
-
v1.20.1-0.20241126102615-23167695206426 Nov 2024 pre-releaseNothing published for this version
-
v1.20.1-0.20241125181059-4277b074d52b25 Nov 2024 pre-releaseNothing published for this version
-
v1.20.1-0.20241120113944-6544740be9b020 Nov 2024 pre-releaseNothing published for this version
-
v1.20.1-0.20241119142910-81cc8b2c9f7619 Nov 2024 pre-releaseNothing published for this version