From ca8a5b1432fdb26266051b20b1b411923f780c37 Mon Sep 17 00:00:00 2001 From: Yu Liao Date: Tue, 24 Jan 2023 23:06:47 +0000 Subject: [PATCH 1/4] Fixed issue: pass_env values cannot contain whitespace, use comma to have multiple values in a single line https://github.com/kubernetes-client/python/actions/runs/4001147429/jobs/6867090020 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8a6bdac13..b4657af69 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ envlist = py3{6,7,8,9}-functional [testenv] -passenv = TOXENV CI TRAVIS TRAVIS_* +passenv = TOXENV,CI,TRAVIS,TRAVIS_* usedevelop = True install_command = pip install -U {opts} {packages} deps = -r{toxinidir}/test-requirements.txt From e09f13ba78a7dbbd4e84af9b60a83ef3eeeb636a Mon Sep 17 00:00:00 2001 From: Yu Liao Date: Tue, 24 Jan 2023 22:23:53 +0000 Subject: [PATCH 2/4] update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21c2fb69d..3f5891fa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# v26.0.0-snapshot +# v26.1.0a1 Kubernetes API Version: v1.26.1 From 752e26e054af5f1a607a693cf49cae116d9f72be Mon Sep 17 00:00:00 2001 From: Yu Liao Date: Tue, 24 Jan 2023 22:57:19 +0000 Subject: [PATCH 3/4] updated compatibility matrix and maintenance status in README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3232905b6..8b31b50a1 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,7 @@ supported versions of Kubernetes clusters. - [client 23.y.z](https://pypi.org/project/kubernetes/23.6.0/): Kubernetes 1.22 or below (+-), Kubernetes 1.23 (✓), Kubernetes 1.24 or above (+-) - [client 24.y.z](https://pypi.org/project/kubernetes/24.2.0/): Kubernetes 1.23 or below (+-), Kubernetes 1.24 (✓), Kubernetes 1.25 or above (+-) - [client 25.y.z](https://pypi.org/project/kubernetes/25.3.0/): Kubernetes 1.24 or below (+-), Kubernetes 1.25 (✓), Kubernetes 1.26 or above (+-) +- [client 26.y.z](https://pypi.org/project/kubernetes/26.1.0a1/): Kubernetes 1.25 or below (+-), Kubernetes 1.26 (✓), Kubernetes 1.27 or above (+-) > See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release. @@ -144,11 +145,12 @@ between client-python versions. | 22.0 Alpha/Beta | Kubernetes main repo, 1.22 branch | ✗ | | 22.0 | Kubernetes main repo, 1.22 branch | ✗ | | 23.0 Alpha/Beta | Kubernetes main repo, 1.23 branch | ✗ | -| 23.0 | Kubernetes main repo, 1.23 branch | ✓ | +| 23.0 | Kubernetes main repo, 1.23 branch | ✗ | | 24.0 Alpha/Beta | Kubernetes main repo, 1.24 branch | ✗ | | 24.0 | Kubernetes main repo, 1.24 branch | ✓ | | 25.0 Alpha/Beta | Kubernetes main repo, 1.25 branch | ✗ | | 25.0 | Kubernetes main repo, 1.25 branch | ✓ | +| 26.0 Alpha/Beta | Kubernetes main repo, 1.26 branch | ✓ | > See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release. From 6cc224ecb819fc7a6b957094610831ede8ba30cd Mon Sep 17 00:00:00 2001 From: Yu Liao Date: Wed, 25 Jan 2023 22:06:34 +0000 Subject: [PATCH 4/4] uploading to codecov failure does not fail the CI. https://github.com/yliaog/client-python/actions/runs/4010290284/jobs/6886629356 --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 52ec3560b..39d14abb2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -46,5 +46,5 @@ jobs: if: "matrix.use_coverage" uses: codecov/codecov-action@v3 with: - fail_ci_if_error: true + fail_ci_if_error: false verbose: true