Skip to content

Commit 44453c3

Browse files
authored
Merge pull request #1704 from yliaog/automated-release-of-22.6.0-upstream-release-22.0-1644864656
Automated release of 22.6.0 upstream release 22.0 1644864656
2 parents 4e83cb7 + 770cbee commit 44453c3

20 files changed

+175
-31
lines changed

.github/workflows/e2e-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# as we sync with Kubernetes upstream
3131
config: .github/workflows/kind-configs/cluster-1.18.yaml
3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v2.3.1
33+
uses: actions/setup-python@v2.3.2
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Install dependencies

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# as we sync with Kubernetes upstream
3131
config: .github/workflows/kind-configs/cluster-1.15.yaml
3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v2.3.1
33+
uses: actions/setup-python@v2.3.2
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Install dependencies

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# as we sync with Kubernetes upstream
3131
config: .github/workflows/kind-configs/cluster-1.16.yaml
3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v2.3.1
33+
uses: actions/setup-python@v2.3.2
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Install dependencies

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# as we sync with Kubernetes upstream
3131
config: .github/workflows/kind-configs/cluster-1.17.yaml
3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v2.3.1
33+
uses: actions/setup-python@v2.3.2
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Install dependencies

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# as we sync with Kubernetes upstream
3131
config: .github/workflows/kind-configs/cluster-1.18.yaml
3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v2.3.1
33+
uses: actions/setup-python@v2.3.2
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Install dependencies

.github/workflows/test.yaml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,20 @@ on: [ push, pull_request ]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98
strategy:
109
matrix:
11-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
10+
python-version: ["3.6", "3.7", "3.8", "3.10"]
11+
include:
12+
- python-version: "3.9"
13+
use_coverage: 'coverage'
1214

1315
steps:
1416
- uses: actions/checkout@v2
1517
with:
1618
submodules: true
1719
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v2.3.1
20+
uses: actions/setup-python@v2.3.2
1921
with:
2022
python-version: ${{ matrix.python-version }}
2123
- name: Install dependencies
@@ -31,5 +33,18 @@ jobs:
3133
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3234
- name: Install Tox and any other packages
3335
run: pip install tox
34-
- name: Run Tox
36+
37+
- name: Test without coverage
38+
if: "! matrix.use_coverage"
3539
run: tox -e py # Run tox using the version of Python in `PATH`
40+
41+
- name: Test with coverage
42+
if: "matrix.use_coverage"
43+
run: tox -e py-coverage
44+
45+
- name: Upload coverage to Codecov
46+
if: "matrix.use_coverage"
47+
uses: codecov/codecov-action@v2
48+
with:
49+
fail_ci_if_error: true
50+
verbose: true

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# v22.6.0
2+
3+
Kubernetes API Version: v1.22.6
4+
5+
### Bug or Regression
6+
- Notable feature additions for async creation of Custom resources using dynamic Client (#1697, @venukarnati92)
7+
8+
### Feature
9+
- Add `utils.create_from_directory` for creating all yaml files in a directory (#1683, @dingyiyi0226)
10+
111
# v22.6.0b1
212

313
Kubernetes API Version: v1.22.6

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ between client-python versions.
138138
| 20.0 | Kubernetes main repo, 1.20 branch ||
139139
| 21.0 Alpha/Beta | Kubernetes main repo, 1.21 branch ||
140140
| 21.0 | Kubernetes main repo, 1.21 branch ||
141-
| 22.0 Alpha/Beta | Kubernetes main repo, 1.22 branch ||
141+
| 22.0 Alpha/Beta | Kubernetes main repo, 1.22 branch ||
142+
| 22.0 | Kubernetes main repo, 1.22 branch ||
142143

143144
> See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release.
144145

codecov.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# reference: https://docs.codecov.io/docs/codecovyml-reference
2+
coverage:
3+
status:
4+
patch: true
5+
project: false
6+
comment: false

kubernetes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: release-1.22
7-
- Package version: 22.6.0b1
7+
- Package version: 22.6.0
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

0 commit comments

Comments
 (0)