Skip to content

Commit 4a9f4fa

Browse files
authored
Merge branch 'kubernetes-client:master' into fixthedocs
2 parents babfc75 + e104702 commit 4a9f4fa

File tree

1,064 files changed

+31377
-28421
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,064 files changed

+31377
-28421
lines changed

.github/workflows/e2e-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
submodules: true
2121
- name: Create Kind Cluster
22-
uses: helm/kind-action@v1.10.0
22+
uses: helm/kind-action@v1.11.0
2323
with:
2424
cluster_name: kubernetes-python-e2e-master-${{ matrix.python-version }}
2525
# The kind version to be used to spin the cluster up

.github/workflows/e2e-release-11.0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
submodules: true
2121
- name: Create Kind Cluster
22-
uses: helm/kind-action@v1.10.0
22+
uses: helm/kind-action@v1.11.0
2323
with:
2424
cluster_name: kubernetes-python-e2e-release-11.0-${{ matrix.python-version }}
2525
# The kind version to be used to spin the cluster up

.github/workflows/e2e-release-12.0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
submodules: true
2121
- name: Create Kind Cluster
22-
uses: helm/kind-action@v1.10.0
22+
uses: helm/kind-action@v1.11.0
2323
with:
2424
cluster_name: kubernetes-python-e2e-release-12.0-${{ matrix.python-version }}
2525
# The kind version to be used to spin the cluster up

.github/workflows/e2e-release-17.0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
submodules: true
2121
- name: Create Kind Cluster
22-
uses: helm/kind-action@v1.10.0
22+
uses: helm/kind-action@v1.11.0
2323
with:
2424
cluster_name: kubernetes-python-e2e-release-17.0-${{ matrix.python-version }}
2525
# The kind version to be used to spin the cluster up

.github/workflows/e2e-release-18.0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
submodules: true
2121
- name: Create Kind Cluster
22-
uses: helm/kind-action@v1.10.0
22+
uses: helm/kind-action@v1.11.0
2323
with:
2424
cluster_name: kubernetes-python-e2e-release-18.0-${{ matrix.python-version }}
2525
# The kind version to be used to spin the cluster up

.github/workflows/e2e-release-26.0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
submodules: true
2121
- name: Create Kind Cluster
22-
uses: helm/kind-action@v1.10.0
22+
uses: helm/kind-action@v1.11.0
2323
with:
2424
cluster_name: kubernetes-python-e2e-release-26.0-${{ matrix.python-version }}
2525
# The kind version to be used to spin the cluster up

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Upload coverage to Codecov
4646
if: "matrix.use_coverage"
47-
uses: codecov/codecov-action@v4
47+
uses: codecov/codecov-action@v5
4848
with:
4949
fail_ci_if_error: false
5050
verbose: true

CHANGELOG.md

Lines changed: 254 additions & 77 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ supported versions of Kubernetes clusters.
100100
- [client 28.y.z](https://pypi.org/project/kubernetes/28.1.0/): Kubernetes 1.27 or below (+-), Kubernetes 1.28 (✓), Kubernetes 1.29 or above (+-)
101101
- [client 29.y.z](https://pypi.org/project/kubernetes/29.0.0/): Kubernetes 1.28 or below (+-), Kubernetes 1.29 (✓), Kubernetes 1.30 or above (+-)
102102
- [client 30.y.z](https://pypi.org/project/kubernetes/30.1.0/): Kubernetes 1.29 or below (+-), Kubernetes 1.30 (✓), Kubernetes 1.31 or above (+-)
103+
- [client 31.y.z](https://pypi.org/project/kubernetes/31.0.0/): Kubernetes 1.30 or below (+-), Kubernetes 1.31 (✓), Kubernetes 1.32 or above (+-)
103104

104105

105106
> See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release.
@@ -160,11 +161,13 @@ between client-python versions.
160161
| 27.0 Alpha/Beta | Kubernetes main repo, 1.27 branch ||
161162
| 27.0 | Kubernetes main repo, 1.27 branch ||
162163
| 28.0 Alpha/Beta | Kubernetes main repo, 1.28 branch ||
163-
| 28.0 | Kubernetes main repo, 1.28 branch | |
164+
| 28.0 | Kubernetes main repo, 1.28 branch | |
164165
| 29.0 Alpha/Beta | Kubernetes main repo, 1.29 branch ||
165166
| 29.0 | Kubernetes main repo, 1.29 branch ||
166167
| 30.0 Alpha/Beta | Kubernetes main repo, 1.30 branch ||
167168
| 30.0 | Kubernetes main repo, 1.30 branch ||
169+
| 31.0 Alpha/Beta | Kubernetes main repo, 1.31 branch ||
170+
| 31.0 | Kubernetes main repo, 1.31 branch ||
168171

169172
> See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release.
170173
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
kubernetes.client.api.coordination\_v1alpha1\_api module
2+
========================================================
3+
4+
.. automodule:: kubernetes.client.api.coordination_v1alpha1_api
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

0 commit comments

Comments
 (0)