From 3908a46b2222280a94646873dfa02deec73308d1 Mon Sep 17 00:00:00 2001 From: Antonio Ojea Date: Thu, 15 Feb 2024 22:51:09 +0000 Subject: [PATCH 1/3] bump cloud controller manager to v29.0.0 Change-Id: I1287c7e7cdca67daa7dc7f7dfdc0b8ed10b1f6ae --- cluster/gce/manifests/cloud-controller-manager.manifest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/gce/manifests/cloud-controller-manager.manifest b/cluster/gce/manifests/cloud-controller-manager.manifest index 511fd4a4cb8..0107c45fe82 100644 --- a/cluster/gce/manifests/cloud-controller-manager.manifest +++ b/cluster/gce/manifests/cloud-controller-manager.manifest @@ -23,7 +23,7 @@ "containers":[ { "name": "cloud-controller-manager", - "image": "gcr.io/k8s-staging-cloud-provider-gcp/cloud-controller-manager:v28.2.1", + "image": "gcr.io/k8s-staging-cloud-provider-gcp/cloud-controller-manager:v29.0.0", "resources": { "requests": { "cpu": "{{cpurequest}}" From b4b4784c6c4ad5f5271162be43a1b74da703314f Mon Sep 17 00:00:00 2001 From: Antonio Ojea Date: Fri, 16 Feb 2024 11:59:54 +0000 Subject: [PATCH 2/3] enable ip aliases on clusters by default Change-Id: I2f98af61b5a8d98742510dd0a2b66d1bb6df02eb --- cluster/gce/config-default.sh | 2 +- cluster/gce/config-test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/gce/config-default.sh b/cluster/gce/config-default.sh index 4abc7969e4a..d014395921b 100755 --- a/cluster/gce/config-default.sh +++ b/cluster/gce/config-default.sh @@ -311,7 +311,7 @@ fi # IP_ALIAS_SIZE is the size of the podCIDR allocated to a node. # IP_ALIAS_SUBNETWORK is the subnetwork to allocate from. If empty, a # new subnetwork will be created for the cluster. -ENABLE_IP_ALIASES=${KUBE_GCE_ENABLE_IP_ALIASES:-false} +ENABLE_IP_ALIASES=${KUBE_GCE_ENABLE_IP_ALIASES:-true} NODE_IPAM_MODE=${KUBE_GCE_NODE_IPAM_MODE:-RangeAllocator} if [ "${ENABLE_IP_ALIASES}" = true ]; then # Number of Pods that can run on this node. diff --git a/cluster/gce/config-test.sh b/cluster/gce/config-test.sh index a2d84415d56..8a862d22578 100755 --- a/cluster/gce/config-test.sh +++ b/cluster/gce/config-test.sh @@ -353,7 +353,7 @@ fi # IP_ALIAS_SIZE is the size of the podCIDR allocated to a node. # IP_ALIAS_SUBNETWORK is the subnetwork to allocate from. If empty, a # new subnetwork will be created for the cluster. -ENABLE_IP_ALIASES=${KUBE_GCE_ENABLE_IP_ALIASES:-false} +ENABLE_IP_ALIASES=${KUBE_GCE_ENABLE_IP_ALIASES:-true} export NODE_IPAM_MODE=${KUBE_GCE_NODE_IPAM_MODE:-RangeAllocator} if [ "${ENABLE_IP_ALIASES}" = true ]; then # Number of Pods that can run on this node. From 3636971c39c0d83d5c88c393605736b0eacf5d3f Mon Sep 17 00:00:00 2001 From: Antonio Ojea Date: Mon, 19 Feb 2024 08:44:19 +0000 Subject: [PATCH 3/3] add aojea as reviewer Change-Id: Ie69e01542f9c8420aa0d0275378acd838e77eca9 --- staging/src/k8s.io/cloud-provider/OWNERS | 1 + 1 file changed, 1 insertion(+) diff --git a/staging/src/k8s.io/cloud-provider/OWNERS b/staging/src/k8s.io/cloud-provider/OWNERS index 19a29715a24..1ac1c0f0e62 100644 --- a/staging/src/k8s.io/cloud-provider/OWNERS +++ b/staging/src/k8s.io/cloud-provider/OWNERS @@ -7,6 +7,7 @@ approvers: - andrewsykim - cheftako reviewers: + - aojea - wojtek-t - deads2k - derekwaynecarr