Skip to content

Commit 549482d

Browse files
authored
Merge pull request #1597 from yliaog/automated-release-of-20.0.0-snapshot-upstream-master-1635198017
Automated release of 20.0.0 snapshot upstream master 1635198017
2 parents c0728cf + 77ef217 commit 549482d

File tree

795 files changed

+63507
-41051
lines changed

Some content is hidden

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

795 files changed

+63507
-41051
lines changed

CHANGELOG.md

Lines changed: 138 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
f4253abb4471ec2c5e92abaf7ead7de7739d6506a23c8af199332a47c03cb642
1+
c4a1b3550c60b1f3c01ed9c12eafcbdb4b8d75964f76a1971a138019d1db0f4e

kubernetes/README.md

Lines changed: 89 additions & 20 deletions
Large diffs are not rendered by default.

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__ = "19.0.0-snapshot"
17+
__version__ = "20.0.0-snapshot"
1818

1919
import kubernetes.client
2020
import kubernetes.config

kubernetes/client/__init__.py

Lines changed: 49 additions & 9 deletions
Large diffs are not rendered by default.

kubernetes/client/api/__init__.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# flake8: noqa
44

55
# import apis into api package
6+
from kubernetes.client.api.well_known_api import WellKnownApi
67
from kubernetes.client.api.admissionregistration_api import AdmissionregistrationApi
78
from kubernetes.client.api.admissionregistration_v1_api import AdmissionregistrationV1Api
89
from kubernetes.client.api.admissionregistration_v1beta1_api import AdmissionregistrationV1beta1Api
@@ -47,13 +48,18 @@
4748
from kubernetes.client.api.extensions_v1beta1_api import ExtensionsV1beta1Api
4849
from kubernetes.client.api.flowcontrol_apiserver_api import FlowcontrolApiserverApi
4950
from kubernetes.client.api.flowcontrol_apiserver_v1alpha1_api import FlowcontrolApiserverV1alpha1Api
51+
from kubernetes.client.api.flowcontrol_apiserver_v1beta1_api import FlowcontrolApiserverV1beta1Api
52+
from kubernetes.client.api.internal_apiserver_api import InternalApiserverApi
53+
from kubernetes.client.api.internal_apiserver_v1alpha1_api import InternalApiserverV1alpha1Api
5054
from kubernetes.client.api.logs_api import LogsApi
5155
from kubernetes.client.api.networking_api import NetworkingApi
5256
from kubernetes.client.api.networking_v1_api import NetworkingV1Api
5357
from kubernetes.client.api.networking_v1beta1_api import NetworkingV1beta1Api
5458
from kubernetes.client.api.node_api import NodeApi
59+
from kubernetes.client.api.node_v1_api import NodeV1Api
5560
from kubernetes.client.api.node_v1alpha1_api import NodeV1alpha1Api
5661
from kubernetes.client.api.node_v1beta1_api import NodeV1beta1Api
62+
from kubernetes.client.api.openid_api import OpenidApi
5763
from kubernetes.client.api.policy_api import PolicyApi
5864
from kubernetes.client.api.policy_v1beta1_api import PolicyV1beta1Api
5965
from kubernetes.client.api.rbac_authorization_api import RbacAuthorizationApi
@@ -64,8 +70,6 @@
6470
from kubernetes.client.api.scheduling_v1_api import SchedulingV1Api
6571
from kubernetes.client.api.scheduling_v1alpha1_api import SchedulingV1alpha1Api
6672
from kubernetes.client.api.scheduling_v1beta1_api import SchedulingV1beta1Api
67-
from kubernetes.client.api.settings_api import SettingsApi
68-
from kubernetes.client.api.settings_v1alpha1_api import SettingsV1alpha1Api
6973
from kubernetes.client.api.storage_api import StorageApi
7074
from kubernetes.client.api.storage_v1_api import StorageV1Api
7175
from kubernetes.client.api.storage_v1alpha1_api import StorageV1alpha1Api

kubernetes/client/api/admissionregistration_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/admissionregistration_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/admissionregistration_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/apiextensions_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/apiextensions_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/apiextensions_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/apiregistration_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/apiregistration_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/apiregistration_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/apis_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/apps_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/apps_v1_api.py

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

66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77

8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/authentication_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/authentication_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/authentication_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/authorization_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/authorization_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/authorization_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/autoscaling_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/autoscaling_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/autoscaling_v2beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/autoscaling_v2beta2_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/batch_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/batch_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/batch_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/batch_v2alpha1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/certificates_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/certificates_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/certificates_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/coordination_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/coordination_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/coordination_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes/client/api/core_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: release-1.19
8+
The version of the OpenAPI document: release-1.20
99
Generated by: https://openapi-generator.tech
1010
"""
1111

0 commit comments

Comments
 (0)