* Omits alpha-level enums from the static openapi file captured in api/openapi-spec
* Fixes a regression in v1beta1 PodDisruptionBudget handling of "strategic
merge patch"-type API requests for the `selector` field. Prior to 1.21,
these requests would merge `matchLabels` content and replace
`matchExpressions` content. In 1.21, patch requests touching the `selector`
field started replacing the entire selector. This is consistent with
server-side apply and the v1 PodDisruptionBudget behavior, but should not
have been changed for v1beta1.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kubernetes?expand=0&rev=34
322 lines
25 KiB
Plaintext
322 lines
25 KiB
Plaintext
-------------------------------------------------------------------
|
|
Sun Jun 19 17:41:17 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
|
|
|
- update to 23.6.0:
|
|
* Omits alpha-level enums from the static openapi file captured in api/openapi-spec
|
|
* Fixes a regression in v1beta1 PodDisruptionBudget handling of "strategic
|
|
merge patch"-type API requests for the `selector` field. Prior to 1.21,
|
|
these requests would merge `matchLabels` content and replace
|
|
`matchExpressions` content. In 1.21, patch requests touching the `selector`
|
|
field started replacing the entire selector. This is consistent with
|
|
server-side apply and the v1 PodDisruptionBudget behavior, but should not
|
|
have been changed for v1beta1.
|
|
|
|
-------------------------------------------------------------------
|
|
Tue May 3 06:28:36 UTC 2022 - pgajdos@suse.com
|
|
|
|
- version update to 23.3.0
|
|
too many changes, see CHANGELOG.md in documentation or at
|
|
https://github.com/kubernetes-client/python/blob/master/CHANGELOG.md
|
|
- Add python-kubernetes-no-mock.patch to allow building and use
|
|
without external mock package dependency.
|
|
|
|
-------------------------------------------------------------------
|
|
Sun Dec 20 10:06:34 UTC 2020 - Dirk Müller <dmueller@suse.com>
|
|
|
|
- update to 12.0.1:
|
|
* Kubernetes API version 1.16.15
|
|
- Resolve regression in metadata.managedFields handling in update/patch requests submitted by older API clients ([#91748](https://github.com/kubernetes/k
|
|
ubernetes/pull/91748), [@apelisse](https://github.com/apelisse)) [SIG API Machinery and Testing]
|
|
- Fix bug where sending a status update completely wipes managedFields for some types. ([#90033](https://github.com/kubernetes/kubernetes/pull/90033), [@
|
|
apelisse](https://github.com/apelisse)) [SIG API Machinery and Testing]
|
|
- The `MutatingWebhookConfiguration` and `ValidatingWebhookConfiguration` APIs have been promoted to `admissionregistration.k8s.io/v1`:
|
|
- `failurePolicy` default changed from `Ignore` to `Fail` for v1
|
|
- `matchPolicy` default changed from `Exact` to `Equivalent` for v1
|
|
- `timeout` default changed from `30s` to `10s` for v1
|
|
- `sideEffects` default value is removed, and the field made required, and only `None` and `NoneOnDryRun` are permitted for v1
|
|
- `admissionReviewVersions` default value is removed and the field made required for v1 (supported versions for AdmissionReview are `v1` and `v1beta1`)
|
|
- The `name` field for specified webhooks must be unique for `MutatingWebhookConfiguration` and `ValidatingWebhookConfiguration` objects created via `a
|
|
dmissionregistration.k8s.io/v1`
|
|
- The `AdmissionReview` API sent to and received from admission webhooks has been promoted to `admission.k8s.io/v1`. Webhooks can specify a preference fo
|
|
r receiving `v1` AdmissionReview objects with `admissionReviewVersions: ["v1","v1beta1"]`, and must respond with an API object in the same `apiVersion` t
|
|
hey are sent. When webhooks use `admission.k8s.io/v1`, the following additional validation is performed on their responses:
|
|
- `response.patch` and `response.patchType` are not permitted from validating admission webhooks
|
|
- `apiVersion: "admission.k8s.io/v1"` is required
|
|
- `kind: "AdmissionReview"` is required
|
|
- `response.uid: "<value of request.uid>"` is required
|
|
- `response.patchType: "JSONPatch"` is required (if `response.patch` is set) ([#80231](https://github.com/kubernetes/kubernetes/pull/80231), [@liggitt]
|
|
(https://github.com/liggitt))
|
|
- The `CustomResourceDefinition` API type is promoted to `apiextensions.k8s.io/v1` with the following changes:
|
|
- Use of the new `default` feature in validation schemas is limited to v1
|
|
- `spec.scope` is no longer defaulted to `Namespaced` and must be explicitly specified
|
|
- `spec.version` is removed in v1; use `spec.versions` instead
|
|
- `spec.validation` is removed in v1; use `spec.versions[*].schema` instead
|
|
- `spec.subresources` is removed in v1; use `spec.versions[*].subresources` instead
|
|
- `spec.additionalPrinterColumns` is removed in v1; use `spec.versions[*].additionalPrinterColumns` instead
|
|
- `spec.conversion.webhookClientConfig` is moved to `spec.conversion.webhook.clientConfig` in v1
|
|
- `spec.conversion.conversionReviewVersions` is moved to `spec.conversion.webhook.conversionReviewVersions` in v1
|
|
- `spec.versions[*].schema.openAPIV3Schema` is now required when creating v1 CustomResourceDefinitions
|
|
- `spec.preserveUnknownFields: true` is disallowed when creating v1 CustomResourceDefinitions; it must be specified within schema definitions as `x-kubernetes-preserve-unknown-fields: true`
|
|
- In `additionalPrinterColumns` items, the `JSONPath` field was renamed to `jsonPath` in v1 (fixes https://github.com/kubernetes/kubernetes/issues/66531)
|
|
The `apiextensions.k8s.io/v1beta1` version of `CustomResourceDefinition` is deprecated and will no longer be served in v1.19. ([#79604](https://github.com/kubernetes/kubernetes/pull/79604), [@liggitt](https://github.com/liggitt))
|
|
- The `ConversionReview` API sent to and received from custom resource CustomResourceDefinition conversion webhooks has been promoted to `apiextensions.k8s.io/v1`. CustomResourceDefinition conversion webhooks can now indicate they support receiving and responding with `ConversionReview` API objects in the `apiextensions.k8s.io/v1` version by including `v1` in the `conversionReviewVersions` list in their CustomResourceDefinition. Conversion webhooks must respond with a ConversionReview object in the same apiVersion they receive. `apiextensions.k8s.io/v1` `ConversionReview` responses must specify a `response.uid` that matches the `request.uid` of the object they were sent. ([#81476](https://github.com/kubernetes/kubernetes/pull/81476), [@liggitt](https://github.com/liggitt))
|
|
- Add scheduling support for RuntimeClasses. RuntimeClasses can now specify nodeSelector constraints & tolerations, which are merged into the PodSpec for pods using that RuntimeClass. ([#80825](https://github.com/kubernetes/kubernetes/pull/80825), [@tallclair](https://github.com/tallclair))
|
|
- Kubelet should now more reliably report the same primary node IP even if the set of node IPs reported by the CloudProvider changes. ([#79391](https://github.com/kubernetes/kubernetes/pull/79391), [@danwinship](https://github.com/danwinship))
|
|
- Omit nil or empty field when calculating container hash value to avoid hash changed. For a new field with a non-nil default value in the container spec, the hash would still get changed. ([#57741](https://github.com/kubernetes/kubernetes/pull/57741), [@dixudx](https://github.com/dixudx))
|
|
- Property `conditions` in `apiextensions.v1beta1.CustomResourceDefinitionStatus` and `apiextensions.v1.CustomResourceDefinitionStatus` is now optional instead of required. ([#64996](https://github.com/kubernetes/kubernetes/pull/64996), [@roycaihw](https://github.com/roycaihw))
|
|
- When the status of a CustomResourceDefinition condition changes, its corresponding `lastTransitionTime` is now updated. ([#69655](https://github.com/kubernetes/kubernetes/pull/69655), [@CaoShuFeng](https://github.com/CaoShuFeng))
|
|
- many more changes, see included changelog
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Apr 16 07:18:05 UTC 2020 - pgajdos@suse.com
|
|
|
|
- version update to 11.0.0
|
|
Kubernetes API Version: 1.15.10
|
|
**API Change:**
|
|
- Deleting CustomObjects doesn't require passing in the body anymore [kubernetes-client/gen#142](https://github.com/kubernetes-client/gen/pull/142)
|
|
**New Feature:**
|
|
- Add ability to the client to be used as Context Manager [kubernetes-client/python#1073](https://github.com/kubernetes-client/python/pull/1073)
|
|
- Enable the use of dynamic client [kubernetes-client/python#1035](https://github.com/kubernetes-client/python/pull/1035)
|
|
- Add option to refresh gcp token when config is cmd-path [kubernetes-client/python-base#175](https://github.com/kubernetes-client/python-base/pull/175)
|
|
**Bug Fix:**
|
|
- Add kubernetes.dynamic to setup.py pkg list [kubernetes-client/python#1096](https://github.com/kubernetes-client/python/pull/1096)
|
|
- Fixed issue in `__del__` method of the `ApiClient` that caused an indefinite hang during garbage collection. [kubernetes-client/python#1073](https://github.com/kubernetes-client/python/pull/1073)
|
|
- Fix custom object API example [kubernetes-client/python#1049](https://github.com/kubernetes-client/python/pull/1049)
|
|
- Fix deprecation warning in E2E tests [kubernetes-client/python#1036](https://github.com/kubernetes-client/python/pull/1036)
|
|
- Use `==/!=` to compare str, bytes, and int literals [kubernetes-client/python#1007](https://github.com/kubernetes-client/python/pull/1007)
|
|
- Fix apiserver_id 'get' method [kubernetes-client/python-base#184](https://github.com/kubernetes-client/python-base/pull/184)
|
|
- Fix persist_config flag and function calls [kubernetes-client/python-base#169](https://github.com/kubernetes-client/python-base/pull/169)
|
|
- Fix memory inneficiencies in the WebSocket client [kubernetes-client/python-base#178](https://github.com/kubernetes-client/python-base/pull/178)
|
|
- Fix functionality to watch logs when log line is not a JSON-serialized object [kubernetes-client/python-base#171](https://github.com/kubernetes-client/python-base/pull/171)
|
|
- Detect binary payloads and send the correct opcode [kubernetes-client/python-base#152](https://github.com/kubernetes-client/python-base/pull/152)
|
|
**Deprecation Notice**
|
|
v11.0.0 of the client follows the Kubernetes [deprecation policy](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/release/versioning.md#supported-releases-and-component-skew) and will
|
|
be deprecated as and when Kubernetes version v1.15 gets deprecated.
|
|
**API Change:**
|
|
- Introduce `ExtensionsV1beta1RuntimeClassStrategyOptions` and `PolicyV1beta1RuntimeClassStrategyOptions`. Add RuntimeClass restrictions & defaulting to PodSecurityPolicy [kubernetes/kubernetes#73795](https://github.com/kubernetes/kubernetes/pull/73795)
|
|
- Introduce `V1WindowsSecurityContextOptions`. Add Windows specific options in Pod Security Context and Container Security Context [kubernetes/kubernetes#77147](https://github.com/kubernetes/kubernetes/pull/77147)
|
|
- Split `V1beta1Webhook` into `V1beta1MutatingWebhook` and `V1beta1ValidatingWebhook` [kubernetes/kubernetes#78491](https://github.com/kubernetes/kubernetes/pull/78491)
|
|
- Introduce parameter `allow_watch_bookmarks` in list options for requesting watch bookmarks from apiserver. The implementation in apiserver is hidden behind feature gate `WatchBookmark` (currently in Alpha stage) [kubernetes/kubernetes#74074](https://github.com/kubernetes/kubernetes/pull/74074)
|
|
- Add `V1DeleteOptions` parameters (`dry_run`, `grace_period_seconds`, `orphan_dependents`, `propagation_policy`) to delete collection APIs [kubernetes/kubernetes#77843](https://github.com/kubernetes/kubernetes/pull/77843)
|
|
- Add ListMeta.RemainingItemCount. When responding a LIST request, if the server has more data available, and if the request does not contain label selectors or field selectors, the server sets the ListOptions.RemainingItemCount to the number of remaining objects [kubernetes/kubernetes#75993](https://github.com/kubernetes/kubernetes/pull/75993)
|
|
- Add `controller_expand_secret_ref` in `V1SecretReference` to store CSI volume expansion secrets [kubernetes/kubernetes#77516](https://github.com/kubernetes/kubernetes/pull/77516)
|
|
- Introduce `preemption_policy` field to V1PriorityClass [kubernetes/kubernetes#74614](https://github.com/kubernetes/kubernetes/pull/74614)
|
|
- Add `port` configuration to service reference in Admission webhook configuration, AuditSink webhook configuration, CRD Conversion webhook configuration and kube-aggregator [kubernetes/kubernetes#74855](https://github.com/kubernetes/kubernetes/pull/74855)
|
|
- Introduce `inline_volume_spec` to `V1PersistentVolumeSpec` [kubernetes/kubernetes#77703](https://github.com/kubernetes/kubernetes/pull/77703)
|
|
- Add fields `x_kubernetes_embedded_resource`, `x_kubernetes_int_or_string`, `x_kubernetes_preserve_unknown_fields` to V1beta1JSONSchemaProps [kubernetes/kubernetes#77207](https://github.com/kubernetes/kubernetes/pull/77207)
|
|
|
|
**Bug Fix:**
|
|
- Update `_load_azure_token` to handle str and int [kubernetes-client/python-base#141](https://github.com/kubernetes-client/python-base/pull/141)
|
|
- Correct regex to properly parse rfc3339 microseconds [kubernetes-client/python-base#150](https://github.com/kubernetes-client/python-base/pull/150)
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Mar 16 10:37:51 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
- Fix build without python2
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Jan 2 12:52:07 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
- Update dependencies to match up what is in requirements.txt
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Aug 13 06:35:14 UTC 2019 - Thomas Bechtold <tbechtold@suse.com>
|
|
|
|
- update to 10.0.1:
|
|
* Fix content type regression in custom object patch API
|
|
* Bump urllib3 version to pick up security fix for CVE-2019-11324
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Jul 24 08:11:05 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
- Update to 10.0.0:
|
|
* Fix base64 padding for kube config kubernetes-client/python-base#79
|
|
* Fix websocket client decoding binary message. Replace non-utf8 data instead of failing kubernetes-client/python-base#104
|
|
* Add email scope to GCP provided credential refresh kubernetes-client/python-base#110
|
|
* Fix broken urllib3 dependencies kubernetes-client/python#816
|
|
* Add method to dynamically set namespace in yaml utility kubernetes-client/python#782
|
|
* Add json-patch to custom object patch method kubernetes-client/gen#119
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Jun 7 12:08:37 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
- Drop unused dep on Sphinx
|
|
|
|
-------------------------------------------------------------------
|
|
Wed May 15 18:34:08 UTC 2019 - svasudevan@suse.com
|
|
|
|
- Update to 9.0.0
|
|
* Add fieldSelector parameter to list/watch methods in custom objects spec kubernetes-client
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Mar 1 11:56:43 UTC 2019 - John Vandenberg <jayvdb@gmail.com>
|
|
|
|
- Add missing %doc and %license
|
|
- Remove unnecessary code style build dependencies
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Feb 7 19:15:25 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
|
|
|
- Update to version 8.0.1
|
|
+ Bug Fix:
|
|
- Refresh GCP auth tokens on API retrieval
|
|
- Fix kubeconfig loading failure when server uri contains trailing slash
|
|
+ Security Fix:
|
|
- Bump urllib3 version to pick up security fix for CVE-2018-20060
|
|
- Update to version 8.0.0
|
|
+ New Feature:
|
|
- Add utility to create API resource from yaml file
|
|
- Update to version 8.0.0b1
|
|
+ Bug Fix:
|
|
- Update ExecProvider to use safe\_get() to tolerate kube-config file that sets
|
|
`args: null` and `env: null`
|
|
- Properly deserialize API server's response when posting a deployment rollback
|
|
+ API Change:
|
|
- dry-run: CREATE/UPDATE/PATCH methods now support dryRun parameter
|
|
- Update to version 8.0.0a1
|
|
+ New Feature:
|
|
- Add exec-plugins support in kubeconfig
|
|
+ Bug Fix:
|
|
- Fix reading kubeconfig data with bytes in Python 3
|
|
+ API Change:
|
|
- Upon receiving a LIST request with expired continue token, the apiserver now returns a continue token together with the 410 "the from parameter is too old " error. If the client does not care about getting a list from a consistent snapshot, the client can use this token to continue listing from the next key, but the returned chunk will be from the latest snapshot
|
|
- Introduces autoscaling/v2beta2 and custom\_metrics/v1beta2, which implement metric selectors for Object and Pods metrics, as well as allowing AverageValue targets on Objects, similar to External metrics
|
|
- Create "coordination.k8s.io" api group with "Lease" api in it
|
|
- Added support to restore a volume from a volume snapshot data source: adds TypedLocalObjectReference in the core API and adds DataSource in PersistentVolumeClaimSpec
|
|
- ProcMount added to SecurityContext and AllowedProcMounts added to
|
|
PodSecurityPolicy to allow paths in the container's /proc to not be masked
|
|
- Support both directory and block device for local volume plugin FileSystem
|
|
VolumeMode
|
|
- SCTP is now supported as additional protocol (alpha) alongside TCP and UDP in
|
|
Pod, Service, Endpoint, and NetworkPolicy
|
|
- RuntimeClass is a new API resource for defining different classes of runtimes
|
|
that may be used to run containers in the cluster. Pods can select a
|
|
RunitmeClass to use via the RuntimeClassName field. This feature is in alpha,
|
|
and the RuntimeClass feature gate must be enabled in order to use it
|
|
- The PodShareProcessNamespace feature to configure PID namespace sharing within
|
|
a pod has been promoted to beta
|
|
- To address the possibility dry-run requests overwhelming admission webhooks that rely on side effects and a reconciliation mechanism, a new field is being added to admissionregistration.k8s.io/v1beta1.ValidatingWebhookConfiguration and admissionregistration.k8s.io/v1beta1.MutatingWebhookConfiguration so that webhooks can explicitly register as having dry-run support. If a dry-run request is made on a resource that triggers a non dry-run supporting webhook, the request will be completely rejected, with "400: Bad Request". Additionally, a new field is being added to the admission.k8s.io/v1beta1.AdmissionReview API object, exposing to webhooks whether or not the request being reviewed is a dry-run
|
|
- Add custom object status and scale api
|
|
- dry-run: DELETE operations now support dryRun parameter
|
|
- Default extensions/v1beta1 Deployment's ProgressDeadlineSeconds to MaxInt32
|
|
- Update to version 7.0.0
|
|
+ New Features:
|
|
- Add support for refreshing Azure tokens
|
|
- Update to version 7.0.0b1
|
|
+ New Features:
|
|
- Add Azure support to authentication loading
|
|
- Update to version 7.0.0a1
|
|
+ Breaking Change:
|
|
- **ACTION REQUIRED** Rename the currently being-used `async` parameter to `async_req` to support Python 3.7 because it's a reserved keyword in Python 3.7
|
|
+ Bug Fix:
|
|
- Watch now properly deserializes custom resource objects and updates resource version
|
|
- `idp-certificate-authority-data` in kubeconfig is now optional instead of required for OIDC token refresh
|
|
+ API Change:
|
|
- ApiextensionsV1beta1Api: Add PATCH and GET to custom_resource_definition_status
|
|
- ApiregistrationV1Api and ApiregistrationV1beta1Api: Add PATCH and GET to api_service_status
|
|
- CertificatesV1beta1Api: Add PATCH and GET to certificate_signing_request_status
|
|
- SchedulingV1beta1Api: Promote priority_class to beta
|
|
- PodSecurityPolicy now supports restricting hostPath volume mounts to be readOnly and under specific path prefixes
|
|
- The Sysctls experimental feature has been promoted to beta (enabled by default via the `Sysctls` feature flag). PodSecurityPolicy and Pod objects now have fields for specifying and controlling sysctls. Alpha sysctl annotations will be ignored by 1.11+ kubelets. All alpha sysctl annotations in existing deployments must be converted to API fields to be effective.
|
|
- Add CRD Versioning with NOP converter
|
|
- Volume topology aware dynamic provisioning
|
|
- Fixed incorrect OpenAPI schema for CustomResourceDefinition objects with a validation schema
|
|
- Update to version 6.0.0
|
|
- Config loader now supports OIDC auth
|
|
- Bug fix: fix expiry time checking in API token refresh
|
|
- Update to version 6.0.0b1
|
|
- Update to Kubernetes 1.10 cluster
|
|
- Config loader now raises exception on duplicated name in kubeconfig
|
|
+ API change:
|
|
- CustomObjectsApi: Add PATCH to CustomObjectsApi
|
|
- Promoting the apiregistration.k8s.io (aggregation) to GA (ApiregistrationV1Api)
|
|
- CoreV1Api: remove /proxy legacy API (deprecated since kubernetes v1.2). Use the /proxy subresources on objects that support HTTP proxying
|
|
- The `PodSecurityPolicy` API has been moved to the `policy/v1beta1` API group. The `PodSecurityPolicy` API in the `extensions/v1beta1` API group is deprecated and will be removed in a future release. Authorizations for using pod security policy resources should change to reference the `policy` API group after upgrading to 1.11
|
|
- StorageV1beta1Api: Introduce new `VolumeAttachment` API Object
|
|
- V1FlexPersistentVolumeSource: PersistentVolume flexVolume sources can now reference secrets in a namespace other than the PersistentVolumeClaim's namespace
|
|
- ACTION REQUIRED: VolumeScheduling and LocalPersistentVolume features are beta and enabled by default. The PersistentVolume NodeAffinity alpha annotation is deprecated and will be removed in a future release
|
|
- Allows HorizontalPodAutoscaler to use global metrics not associated with any Kubernetes object (for example metrics from a hoster service running outside of Kubernetes cluster)
|
|
- v1.Pod now has a field to configure whether a single process namespace should be shared between all containers in a pod. This feature is in alpha preview.
|
|
- delete_namespaced_service() now takes an required body (delete option) parameter. Refactor service storage to remove registry wrapper
|
|
+ Documentation update:
|
|
- Never let cluster-scoped resources skip webhooks
|
|
- Clarify that ListOptions.Timeout is not conditional on inactivity
|
|
- Indicate endpoint subsets are an optional field
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Feb 7 18:36:43 CET 2019 - Matej Cepl <mcepl@suse.com>
|
|
|
|
- update to 8.0.1:
|
|
too many changes to record here, see
|
|
https://github.com/kubernetes-client/python/blob/master/CHANGELOG.md
|
|
for complete list.
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Dec 4 12:49:52 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
|
|
|
- Remove superfluous devel dependency for noarch package
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Mar 27 08:23:23 UTC 2018 - tbechtold@suse.com
|
|
|
|
- update to 5.0.0:
|
|
- Update to Kubernetes 1.9 cluster
|
|
- Label selector for pods is now required and must match the pod template's
|
|
labels for v1beta2 StatefulSetSpec, ReplicaSetSpec, DaemonSetSpec and
|
|
DeploymentSpec kubernetes/kubernetes#55357
|
|
- The dynamic admission webhook is split into two kinds, mutating and
|
|
validating. The kinds have changed completely and old code must be ported to
|
|
admissionregistration.k8s.io/v1beta1 - MutatingWebhookConfiguration and
|
|
ValidatingWebhookConfiguration kubernetes/kubernetes#55282
|
|
- DaemonSet, Deployment, ReplicaSet, and StatefulSet have been promoted to GA
|
|
and are available in the apps/v1 group version kubernetes/kubernetes#53679
|
|
- Introduce new storage.k8s.io/v1alpha1 VolumeAttachment object
|
|
kubernetes/kubernetes#54463
|
|
- Introduce core/v1 RBDPersistentVolumeSource kubernetes/kubernetes#54302
|
|
- StatefulSet status now has support for conditions
|
|
kubernetes/kubernetes#55268
|
|
- DaemonSet status now has support for conditions kubernetes/kubernetes#55272
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Feb 13 09:40:12 UTC 2018 - tbechtold@suse.com
|
|
|
|
- update to 4.0.0:
|
|
- api change V1PersistentVolumeSpec to V1ScaleIOPersistentVolumeSource #397.
|
|
- Make sure PyPI source distribution is complete with all files from the
|
|
root directory
|
|
- Update to Kubernetes 1.8 cluster
|
|
- IntOrString is now object thus it can be int or string. #18 #359
|
|
- Adding stream package to support calls like exec. The old way of calling
|
|
them is deprecated. See README.md#why-execattach-calls-doesnt-work.
|
|
- config.http_proxy_url is deprecated. use configuration.proxy instead.
|
|
- Configuration is not a singleton object anymore. Please use
|
|
Configuraion.set_default to change default configuration.
|
|
- Configuration class does not support `ws_streaming_protocol` anymore. In
|
|
ApiClient.set_default_header set `sec-websocket-protocol` to the preferred
|
|
websocket protocol.
|
|
- Fix Operation names for subresources kubernetes/kubernetes#49357
|
|
- Add proper GCP config loader and refresher kubernetes-client/python-base#22
|
|
- Add ws_streaming_protocol and use v4 by default
|
|
kubernetes-client/python-base#20
|
|
- Respect the KUBECONFIG environment variable if set
|
|
kubernetes-client/python-base#19
|
|
- Allow setting maxsize for PoolManager kubernetes-client/python-base#18
|
|
- Restricting the websocket-client to <=0.40 #299
|
|
- Update client to kubernetes 1.7
|
|
- Support ThirdPartyResources (TPR) and CustomResourceDefinitions (CRD).
|
|
Note that TPR is deprecated in kubernetes #251 #201
|
|
- Better dependency management #136
|
|
- Add support for python3.6 #244
|
|
- Adjust Requires and BuildRequires
|
|
- Fix Source url
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Aug 17 14:00:41 UTC 2017 - dmueller@suse.com
|
|
|
|
- small buildrequires cleanup
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Jun 28 12:54:16 UTC 2017 - mc@suse.com
|
|
|
|
- initial release 2.0.0
|