Skip to content

Commit f88c760

Browse files
authored
Merge pull request #1691 from yliaog/automated-release-of-22.6.0a1-upstream-release-22.0-1643658718
Automated release of 22.6.0a1 upstream release 22.0 1643658718
2 parents 873e8fd + a7b3424 commit f88c760

File tree

9 files changed

+13
-9
lines changed

9 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# v22.0.0-snapshot
1+
# v22.6.0a1
22

3-
Kubernetes API Version: v1.22.5
3+
Kubernetes API Version: v1.22.6
44

55
### API Change
66
- Kube-apiserver: Fixes handling of CRD schemas containing literal null values in enums (#104988, @liggitt) [SIG API Machinery, Apps and Network]

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ supported versions of Kubernetes clusters.
9191
- [client 19.y.z](https://pypi.org/project/kubernetes/19.15.0/): Kubernetes 1.18 or below (+-), Kubernetes 1.19 (✓), Kubernetes 1.20 or above (+-)
9292
- [client 20.y.z](https://pypi.org/project/kubernetes/20.13.0/): Kubernetes 1.19 or below (+-), Kubernetes 1.20 (✓), Kubernetes 1.21 or above (+-)
9393
- [client 21.y.z](https://pypi.org/project/kubernetes/21.7.0/): Kubernetes 1.20 or below (+-), Kubernetes 1.21 (✓), Kubernetes 1.22 or above (+-)
94+
- [client 22.y.z](https://pypi.org/project/kubernetes/22.6.0/): Kubernetes 1.21 or below (+-), Kubernetes 1.22 (✓), Kubernetes 1.23 or above (+-)
9495

9596
> See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release.
9697
@@ -137,6 +138,7 @@ between client-python versions.
137138
| 20.0 | Kubernetes main repo, 1.20 branch ||
138139
| 21.0 Alpha/Beta | Kubernetes main repo, 1.21 branch ||
139140
| 21.0 | Kubernetes main repo, 1.21 branch ||
141+
| 22.0 Alpha/Beta | Kubernetes main repo, 1.22 branch ||
140142

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

kubernetes/README.md

Lines changed: 3 additions & 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.0.0-snapshot
7+
- Package version: 22.6.0a1
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

1010
## Requirements.
@@ -60,6 +60,8 @@ configuration.api_key['authorization'] = 'YOUR_API_KEY'
6060
# Defining host is optional and default to http://localhost
6161
configuration.host = "http://localhost"
6262

63+
# Defining host is optional and default to http://localhost
64+
configuration.host = "http://localhost"
6365
# Enter a context with an instance of the API kubernetes.client
6466
with kubernetes.client.ApiClient(configuration) as api_client:
6567
# Create an instance of the API class

kubernetes/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
__project__ = 'kubernetes'
1616
# The version is auto-updated. Please do not edit.
17-
__version__ = "22.0.0-snapshot"
17+
__version__ = "22.6.0a1"
1818

1919
import kubernetes.client
2020
import kubernetes.config

kubernetes/client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from __future__ import absolute_import
1616

17-
__version__ = "22.0.0-snapshot"
17+
__version__ = "22.6.0a1"
1818

1919
# import apis into sdk package
2020
from kubernetes.client.api.well_known_api import WellKnownApi

kubernetes/client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7878
self.default_headers[header_name] = header_value
7979
self.cookie = cookie
8080
# Set default User-Agent.
81-
self.user_agent = 'OpenAPI-Generator/22.0.0-snapshot/python'
81+
self.user_agent = 'OpenAPI-Generator/22.6.0a1/python'
8282
self.client_side_validation = configuration.client_side_validation
8383

8484
def __enter__(self):

kubernetes/client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ def to_debug_report(self):
350350
"OS: {env}\n"\
351351
"Python Version: {pyversion}\n"\
352352
"Version of the API: release-1.22\n"\
353-
"SDK Package Version: 22.0.0-snapshot".\
353+
"SDK Package Version: 22.6.0a1".\
354354
format(env=sys.platform, pyversion=sys.version)
355355

356356
def get_host_settings(self):

scripts/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
KUBERNETES_BRANCH = "release-1.22"
1919

2020
# client version for packaging and releasing.
21-
CLIENT_VERSION = "22.0.0-snapshot"
21+
CLIENT_VERSION = "22.6.0a1"
2222

2323
# Name of the release package
2424
PACKAGE_NAME = "kubernetes"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# Do not edit these constants. They will be updated automatically
1818
# by scripts/update-client.sh.
19-
CLIENT_VERSION = "22.0.0-snapshot"
19+
CLIENT_VERSION = "22.6.0a1"
2020
PACKAGE_NAME = "kubernetes"
2121
DEVELOPMENT_STATUS = "3 - Alpha"
2222

0 commit comments

Comments
 (0)