Skip to content

Commit 7cdecd1

Browse files
authored
Merge pull request #8639 from zalando-incubator/kubernetes-v1.31.4
Update to Kubernetes v1.31.4
2 parents 98dad21 + 549f4aa commit 7cdecd1

File tree

3 files changed

+39
-3
lines changed

3 files changed

+39
-3
lines changed

cluster/config-defaults.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -740,8 +740,8 @@ tracing_coredns_local_zone_traces_endpoint: ""
740740
# AMI id given the image name and the Image AWS account owner.
741741
#
742742
# [0]: https://github.com/zalando-incubator/cluster-lifecycle-manager/blob/8a9bd1cb2d094038a9e23e646421f8146b48886a/provisioner/template.go#L116
743-
kuberuntu_image_v1_31_jammy_amd64: {{ amiID "zalando-ubuntu-jammy-22.04-kubernetes-production-v1.31.0-amd64-master-347" "861068367966" }}
744-
kuberuntu_image_v1_31_jammy_arm64: {{ amiID "zalando-ubuntu-jammy-22.04-kubernetes-production-v1.31.0-arm64-master-347" "861068367966" }}
743+
kuberuntu_image_v1_31_jammy_amd64: {{ amiID "zalando-ubuntu-jammy-22.04-kubernetes-production-v1.31.4-amd64-master-359" "861068367966" }}
744+
kuberuntu_image_v1_31_jammy_arm64: {{ amiID "zalando-ubuntu-jammy-22.04-kubernetes-production-v1.31.4-arm64-master-359" "861068367966" }}
745745

746746
# Which distro from the previous config items should be used. Valid options are only `jammy` for now. Can be set for each node pool.
747747
kuberuntu_distro_master: "jammy"
@@ -833,7 +833,7 @@ kubelet_registry_burst: "40"
833833
# - upstream: official Kubernetes version
834834
# - zalando: internal Zalando build with our custom patches
835835
kubernetes_scheduler_image: "zalando"
836-
kubernetes_controller_manager_image: "zalando"
836+
kubernetes_controller_manager_image: "upstream"
837837

838838
# when set to true, service account tokens can be used from outside the cluster
839839
allow_external_service_accounts: "false"

cluster/node-pools/master-default/userdata.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -928,6 +928,7 @@ write_files:
928928
{{- end}}
929929
{{- end}}
930930

931+
# TODO: Remove this once all nodes are running an AMI compatible with /etc/cni/net.d/10-flannel.conflist
931932
- owner: root:root
932933
path: /etc/kubernetes/cni/net.d/10-flannel.conflist
933934
content: |
@@ -944,3 +945,20 @@ write_files:
944945
}
945946
]
946947
}
948+
949+
- owner: root:root
950+
path: /etc/cni/net.d/10-flannel.conflist
951+
content: |
952+
{
953+
"name": "podnet",
954+
"cniVersion": "0.3.1",
955+
"plugins": [
956+
{
957+
"type": "flannel",
958+
"delegate": {
959+
"isDefaultGateway": true,
960+
"hairpinMode": true
961+
}
962+
}
963+
]
964+
}

cluster/node-pools/worker-splitaz/userdata.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ write_files:
136136
{{- end}}
137137
{{- end}}
138138

139+
# TODO: Remove this once all nodes are running an AMI compatible with /etc/cni/net.d/10-flannel.conflist
139140
- owner: root:root
140141
path: /etc/kubernetes/cni/net.d/10-flannel.conflist
141142
content: |
@@ -152,3 +153,20 @@ write_files:
152153
}
153154
]
154155
}
156+
157+
- owner: root:root
158+
path: /etc/cni/net.d/10-flannel.conflist
159+
content: |
160+
{
161+
"name": "podnet",
162+
"cniVersion": "0.3.1",
163+
"plugins": [
164+
{
165+
"type": "flannel",
166+
"delegate": {
167+
"isDefaultGateway": true,
168+
"hairpinMode": true
169+
}
170+
}
171+
]
172+
}

0 commit comments

Comments
 (0)