Skip to content

Commit 17e836f

Browse files
krol3Tim Bannisterkcmartina-mccarthy
authored
Add mid cycle 1.29 blog article (#43439)
* feat: mid cycle 1.29 blog Signed-off-by: carolina valencia <[email protected]> * feat: first draft content mid 1.29 Signed-off-by: carolina valencia <[email protected]> * title uppercase- content/en/blog/_posts/2023-11-02-mid-cycle-1.29.md Co-authored-by: Tim Bannister <[email protected]> * remove v1. content/en/blog/_posts/2023-11-02-mid-cycle-1.29.md Co-authored-by: Tim Bannister <[email protected]> * chore: change release date mid blog 1.29 Signed-off-by: carolina valencia <[email protected]> * chore: change title suggestion Signed-off-by: carolina valencia <[email protected]> * Revert "remove v1. content/en/blog/_posts/2023-11-02-mid-cycle-1.29.md" This reverts commit 2490e1c. * chore: Tim suggestions Signed-off-by: carolina valencia <[email protected]> * chore: duplicate line 47 Signed-off-by: carolina valencia <[email protected]> * chore: missing comment 43439 Signed-off-by: carolina valencia <[email protected]> * chore: remove deprec SkipReadOnlyValidationGCE Signed-off-by: carolina valencia <[email protected]> * chore: use relative link kubernetes.io Signed-off-by: carolina valencia <[email protected]> * chore-upcoming changes Co-authored-by: Tim Bannister <[email protected]> * chore - kep reference Co-authored-by: Tim Bannister <[email protected]> * chore - grammatical suggestion Co-authored-by: Tim Bannister <[email protected]> * chore-grammar suggest Co-authored-by: Tim Bannister <[email protected]> * chore - grammar sugges Co-authored-by: Tim Bannister <[email protected]> * Update content/en/blog/_posts/2023-11-16-mid-cycle-1.29.md Co-authored-by: Tim Bannister <[email protected]> * Remove sidecar containers and add package repo note * chore - grammar fix Co-authored-by: Kristin Martin <[email protected]> * Update content/en/blog/_posts/2023-11-16-mid-cycle-1.29.md grammar edit * chore - improve text Co-authored-by: Tim Bannister <[email protected]> * chore - kep url Co-authored-by: Tim Bannister <[email protected]> --------- Signed-off-by: carolina valencia <[email protected]> Co-authored-by: carolina valencia <[email protected]> Co-authored-by: Tim Bannister <[email protected]> Co-authored-by: Kristin Martin <[email protected]> Co-authored-by: Abigail McCarthy <[email protected]>
1 parent 01ac545 commit 17e836f

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
---
2+
layout: blog
3+
title: 'Kubernetes Removals, Deprecations, and Major Changes in Kubernetes 1.29'
4+
date: 2023-11-16
5+
slug: kubernetes-1-29-upcoming-changes
6+
---
7+
8+
**Authors:** Carol Valencia, Kristin Martin, Abigail McCarthy, James Quigley, Hosam Kamel
9+
10+
11+
As with every release, Kubernetes v1.29 will introduce feature deprecations and removals. Our continued ability to produce high-quality releases is a testament to our robust development cycle and healthy community. The following are some of the deprecations and removals coming in the Kubernetes 1.29 release.
12+
13+
## The Kubernetes API removal and deprecation process
14+
15+
The Kubernetes project has a well-documented deprecation policy for features. This policy states that stable APIs may only be deprecated when a newer, stable version of that same API is available and that APIs have a minimum lifetime for each stability level. A deprecated API is one that has been marked for removal in a future Kubernetes release; it will continue to function until removal (at least one year from the deprecation), but usage will result in a warning being displayed. Removed APIs are no longer available in the current version, at which point you must migrate to using the replacement.
16+
17+
* Generally available (GA) or stable API versions may be marked as deprecated, but must not be removed within a major version of Kubernetes.
18+
* Beta or pre-release API versions must be supported for 3 releases after deprecation.
19+
* Alpha or experimental API versions may be removed in any release without prior deprecation notice.
20+
21+
Whether an API is removed as a result of a feature graduating from beta to stable or because that API simply did not succeed, all removals comply with this deprecation policy. Whenever an API is removed, migration options are communicated in the documentation.
22+
23+
## A note about the k8s.gcr.io redirect to registry.k8s.io
24+
25+
To host its container images, the Kubernetes project uses a community-owned image registry called registry.k8s.io. Starting last March traffic to the old k8s.gcr.io registry began being redirected to registry.k8s.io. The deprecated k8s.gcr.io registry will eventually be phased out. For more details on this change or to see if you are impacted, please read [k8s.gcr.io Redirect to registry.k8s.io - What You Need to Know](/blog/2023/03/10/image-registry-redirect/).
26+
27+
## A note about the Kubernetes community-owned package repositories
28+
29+
Earlier in 2023, the Kubernetes project [introduced](/blog/2023/08/15/pkgs-k8s-io-introduction/) `pkgs.k8s.io`, community-owned software repositories for Debian and RPM packages. The community-owned repositories replaced the legacy Google-owned repositories (`apt.kubernetes.io` and `yum.kubernetes.io`).
30+
On September 13, 2023, those legacy repositories were formally deprecated and their contents frozen.
31+
32+
For more information on this change or to see if you are impacted, please read the [deprecation announcement](/blog/2023/08/31/legacy-package-repository-deprecation/).
33+
34+
## Deprecations and removals for Kubernetes v1.29
35+
36+
See the official list of [API removals](/docs/reference/using-api/deprecation-guide/#v1-29) for a full list of planned deprecations for Kubernetes v1.29.
37+
38+
### Removal of in-tree integrations with cloud providers ([KEP-2395](https://kep.k8s.io/2395))
39+
40+
The [feature gates](/docs/reference/command-line-tools-reference/feature-gates/) `DisableCloudProviders` and `DisableKubeletCloudCredentialProviders` will both be set to `true` by default for Kubernetes v1.29. This change will require that users who are currently using in-tree cloud provider integrations (Azure, GCE, or vSphere) enable external cloud controller managers, or opt in to the legacy integration by setting the associated feature gates to `false`.
41+
42+
Enabling external cloud controller managers means you must run a suitable cloud controller manager within your cluster's control plane; it also requires setting the command line argument `--cloud-provider=external` for the kubelet (on every relevant node), and across the control plane (kube-apiserver and kube-controller-manager).
43+
44+
For more information about how to enable and run external cloud controller managers, read [Cloud Controller Manager Administration](/docs/tasks/administer-cluster/running-cloud-controller/) and [Migrate Replicated Control Plane To Use Cloud Controller Manager](/docs/tasks/administer-cluster/controller-manager-leader-migration/).
45+
46+
For general information about cloud controller managers, please see
47+
[Cloud Controller Manager](/docs/concepts/architecture/cloud-controller/) in the Kubernetes documentation.
48+
49+
### Removal of the `v1beta2` flow control API group
50+
51+
The _flowcontrol.apiserver.k8s.io/v1beta2_ API version of FlowSchema and PriorityLevelConfiguration will [no longer be served](/docs/reference/using-api/deprecation-guide/#v1-29) in Kubernetes v1.29.
52+
53+
To prepare for this, you can edit your existing manifests and rewrite client software to use the `flowcontrol.apiserver.k8s.io/v1beta3` API version, available since v1.26. All existing persisted objects are accessible via the new API. Notable changes in `flowcontrol.apiserver.k8s.io/v1beta3` include
54+
that the PriorityLevelConfiguration `spec.limited.assuredConcurrencyShares` field was renamed to `spec.limited.nominalConcurrencyShares`.
55+
56+
57+
### Deprecation of the `status.nodeInfo.kubeProxyVersion` field for Node
58+
59+
The `.status.kubeProxyVersion` field for Node objects will be [marked as deprecated](https://github.com/kubernetes/enhancements/issues/4004) in v1.29 in preparation for its removal in a future release. This field is not accurate and is set by kubelet, which does not actually know the kube-proxy version, or even if kube-proxy is running.
60+
61+
## Want to know more?
62+
63+
Deprecations are announced in the Kubernetes release notes. You can see the announcements of pending deprecations in the release notes for:
64+
65+
* [Kubernetes v1.25](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.25.md#deprecation)
66+
* [Kubernetes v1.26](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.26.md#deprecation)
67+
* [Kubernetes v1.27](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.27.md#deprecation)
68+
* [Kubernetes v1.28](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.28.md#deprecation)
69+
70+
We will formally announce the deprecations that come with [Kubernetes v1.29](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.29.md#deprecation) as part of the CHANGELOG for that release.
71+
72+
For information on the deprecation and removal process, refer to the official Kubernetes [deprecation policy](/docs/reference/using-api/deprecation-policy/#deprecating-parts-of-the-api) document.

0 commit comments

Comments
 (0)