pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/sysutils/py-kubernetes



Module Name:    pkgsrc
Committed By:   adam
Date:           Sun Aug 27 03:28:28 UTC 2023

Modified Files:
        pkgsrc/sysutils/py-kubernetes: Makefile PLIST distinfo

Log Message:
py-kubernetes: updated to 27.2.0

v27.2.0

Kubernetes API Version: v1.27.3

Documentation
- Fix request_timeout example and doc. Arg name should be _request_timeout. Single value type should be int or long.

v27.2.0b1

Kubernetes API Version: v1.27.2

v27.2.0a1

Kubernetes API Version: v1.27.2

API Change
- Added error handling for seccomp localhost configurations that do not properly set a localhostProfile
- Fixed an issue where kubelet does not set case-insensitive headers for http probes.
- Revised the comment about the feature-gate level for PodFailurePolicy from alpha to beta
- A fix in the `resource.k8s.io/v1alpha1/ResourceClaim` API avoids harmless (?) ".status.reservedFor: element 0: associative list without keys has an element that's a map type" errors in the 
apiserver. Validation now rejects the incorrect reuse of the same UID in different entries.
- A terminating pod on a node that is not caused by preemption no longer prevents `kube-scheduler` from preempting pods on that node
 - Rename `PreemptionByKubeScheduler` to `PreemptionByScheduler`
- API: resource.k8s.io/v1alpha1.PodScheduling was renamed to resource.k8s.io/v1alpha2.PodSchedulingContext.
- Added CEL runtime cost calculation into ValidatingAdmissionPolicy, matching the evaluation cost
 restrictions that already apply to CustomResourceDefinition.
 If rule evaluation uses more compute than the limit, the API server aborts the evaluation and the
 admission check that was being performed is aborted; the `failurePolicy` for the ValidatingAdmissionPolicy
 determines the outcome.
- Added `auditAnnotations` to `ValidatingAdmissionPolicy`, enabling CEL to be used to add audit annotations to request audit events.
 Added `validationActions` to `ValidatingAdmissionPolicyBinding`, enabling validation failures to be handled by any combination of the warn, audit and deny enforcement actions.
- Added `messageExpression` field to `ValidationRule`.
- Added `messageExpression` to `ValidatingAdmissionPolicy`, to set custom failure message via CEL expression.
- Added a new IPAddress object kind
 - Added a new ClusterIP allocator. The new allocator removes previous Service CIDR block size limitations for IPv4, and limits IPv6 size to a /64
- Added a new alpha API: ClusterTrustBundle (`certificates.k8s.io/v1alpha1`).
 A ClusterTrustBundle may be used to distribute [X.509](https://www.itu.int/rec/T-REC-X.509) trust anchors to workloads within the cluster.
- Added authorization check support to the CEL expressions of ValidatingAdmissionPolicy via a `authorizer`
 variable with expressions. The new variable provides a builder that allows expressions such `authorizer.group('').resource('pods').check('create').allowed()`.
- Added matchConditions field to ValidatingAdmissionPolicy and enabled support for CEL based custom match criteria.
- Added new option to the `InterPodAffinity` scheduler plugin to ignore existing
 pods` preferred inter-pod affinities if the incoming pod has no preferred inter-pod
 affinities. This option can be used as an optimization for higher scheduling throughput
 (at the cost of an occasional pod being scheduled non-optimally/violating existing
 pods preferred inter-pod affinities). To enable this scheduler option, set the
 `InterPodAffinity` scheduler plugin arg `ignorePreferredTermsOfExistingPods: true`
- Added the `MatchConditions` field to `ValidatingWebhookConfiguration` and `MutatingWebhookConfiguration` for the v1beta and v1 apis.

 The `AdmissionWebhookMatchConditions` featuregate is now in Alpha
- Added validation to ensure that if `service.kubernetes.io/topology-aware-hints` and `service.kubernetes.io/topology-mode` annotations are both set, they are set to the same value.Also Added 
deprecation warning if `service.kubernetes.io/topology-aware-hints` annotation is used.
- Added warnings about workload resources (Pods, ReplicaSets, Deployments, Jobs, CronJobs, or ReplicationControllers) whose names are not valid DNS labels.
- Adds feature gate `NodeLogQuery` which provides cluster administrators with a streaming view of logs using kubectl without them having to implement a client side reader or logging into the node.
- Api: validation of a `PodSpec` now rejects invalid `ResourceClaim` and `ResourceClaimTemplate` names. For a pod, the name generated for the `ResourceClaim` when using a template also must be valid.
- Bump default API QPS limits for Kubelet.
- Enabled the `StatefulSetStartOrdinal` feature gate in beta
- Enabled usage of `kube-proxy`, `kube-scheduler` and `kubelet` HTTP APIs for changing the logging
  verbosity at runtime for JSON output.
- Encryption of API Server at rest configuration now allows the use of wildcards in the list of resources.  For example, *.* can be used to encrypt all resources, including all current and future 
custom resources.
- Extended the kubelet's PodResources API to include resources allocated in `ResourceClaims` via `DynamicResourceAllocation`. Additionally, added a new `Get()` method to query a specific pod for its 
resources.
- Forbid to set matchLabelKeys when labelSelector is not set in topologySpreadConstraints
- GCE does not support LoadBalancer Services with ports with different protocols (TCP and UDP)
- GRPC probes are now a GA feature. `GRPCContainerProbe` feature gate was locked to default value and will be removed in v1.29. If you were setting this feature gate explicitly, please remove it now.
- Graduated `Kubelet Topology Manager` to GA.
- Graduated `KubeletTracing` to beta, which means that the feature gate is now enabled by default.
- Graduated seccomp profile defaulting to GA.

 Set the kubelet `--seccomp-default` flag or `seccompDefault` kubelet configuration field to `true` to make pods on that node default to using the `RuntimeDefault` seccomp profile.

 Enabling seccomp for your workload can have a negative performance impact depending on the kernel and container runtime version in use.

 Guidance for identifying and mitigating those issues is outlined in the Kubernetes [seccomp tutorial](https://k8s.io/docs/tutorials/security/seccomp).
- Graduated the container resource metrics feature on `HPA` to beta.
- Implemented API streaming for the `watch-cache`

 When `sendInitialEvents` `ListOption` is set together with `watch=true`, it begins the watch stream with synthetic init events followed by a synthetic "Bookmark" after which the server continues 
streaming events.
- Introduced API for streaming.

 Added `SendInitialEvents` field to the `ListOptions`. When the new option is set together with `watch=true`, it begins the watch stream with synthetic init events followed by a synthetic "Bookmark" 
after which the server continues streaming events.
- Introduced a breaking change to the `resource.k8s.io` API in its `AllocationResult` struct. This change allows a kubelet plugin for the `DynamicResourceAllocation` feature to service allocations 
from multiple resource driver controllers.
- Introduces new alpha functionality to the reflector, allowing user to enable API streaming.

 To activate this feature, users can set the `ENABLE_CLIENT_GO_WATCH_LIST_ALPHA` environmental variable.
 It is important to note that the server must support streaming for this feature to function properly.
 If streaming is not supported by the server, the reflector will revert to the previous method
 of obtaining data through LIST/WATCH semantics.
- K8s.io/client-go/tools/record.EventBroadcaster: after Shutdown() is called, the broadcaster now gives up immediately after a failure to write an event to a sink. Previously it tried multiple times 
for 12 seconds in a goroutine.
- K8s.io/component-base/logs: usage of the pflag values in a normal Go flag set led to panics when printing the help message
- Kubeadm: explicitly set `priority` for static pods with `priorityClassName: system-node-critical`
- Kubelet: a "maxParallelImagePulls" field can now be specified in the kubelet configuration file to control how many image pulls the kubelet can perform in parallel.
- Kubelet: changed `MemoryThrottlingFactor` default value to `0.9` and formulas to calculate `memory.high`
- Kubernetes components that perform leader election now only support using `Leases` for this.
- Migrated the `DaemonSet` controller (within `kube-controller-manager`) to use [contextual logging](https://k8s.io/docs/concepts/cluster-administration/system-logs/#contextual-logging)
- New `service.kubernetes.io/topology-mode` annotation has been introduced as a replacement for the `service.kubernetes.io/topology-aware-hints` annotation.
 - `service.kubernetes.io/topology-aware-hints` annotation has been deprecated.
 - kube-proxy now accepts any value that is not "disabled" for these annotations, enabling custom implementation-specific and/or future built-in heuristics to be used.
- Pods owned by a Job now uses the labels `batch.kubernetes.io/job-name` and `batch.kubernetes.io/controller-uid`.
 The legacy labels `job-name` and `controller-uid` are still added for compatibility.
- Promoted `CronJobTimeZone` feature to GA
- Promoted `SelfSubjectReview` to Beta
- Relaxed API validation to allow pod node selector to be mutable for gated pods (additions only, no deletions or mutations).
- Remove `kubernetes.io/grpc` standard appProtocol
- Remove deprecated `--enable-taint-manager` and `--pod-eviction-timeout` CLI
- Removed support for the `v1alpha1` kubeletplugin API of `DynamicResourceManagement`. All plugins must be updated to `v1alpha2` in order to function properly.
- The API server now re-uses data encryption keys while the kms v2 plugin key ID is stable.  Data encryption keys are still randomly generated on server start but an atomic counter is used to prevent 
nonce collisions.
- The PodDisruptionBudget `spec.unhealthyPodEvictionPolicy` field has graduated to beta and is enabled by default. On servers with the feature enabled, this field may be set to `AlwaysAllow` to 
always allow unhealthy pods covered by the PodDisruptionBudget to be evicted.
- The `DownwardAPIHugePages` kubelet feature graduated to stable / GA.
- The following feature gates for volume expansion GA features have now been removed and must no longer be referenced in `--feature-gates` flags: `ExpandCSIVolumes`, `ExpandInUsePersistentVolumes`, 
`ExpandPersistentVolumes`
- The list-type of the alpha `resourceClaims` field introduced to `Pods` in `1.26.0` was modified from `set` to `map`, resolving an incompatibility with use of this schema in 
`CustomResourceDefinitions` and with server-side apply.
- Updated API reference for Requests, specifying they must not exceed limits
- Updated `KMSv2` to beta
- Updated: Redefine AppProtocol field description and add new standard values
- `/metrics/slis` is now available for control plane components allowing you to scrape health check metrics.
- `APIServerTracing` feature gate is now enabled by default. Tracing in the API
 Server is still disabled by default, and requires a config file to enable.
- `NodeResourceFit` and `NodeResourcesBalancedAllocation` implement the `PreScore`
 extension point for a more performant calculation.
- `PodSchedulingReadiness` is graduated to beta.
- `PodSpec.Container.Resources` became mutable for CPU and memory resource types.
 - `PodSpec.Container.ResizePolicy` (new object) gives users control over how their containers are resized.
 - `PodStatus.Resize` status describes the state of a requested Pod resize.
 - `PodStatus.ResourcesAllocated` describes node resources allocated to Pod.
 - `PodStatus.Resources` describes node resources applied to running containers by CRI.
 - `UpdateContainerResources` CRI API now supports both Linux and Windows.
- `SELinuxMountReadWriteOncePod` graduated to Beta.
- `StatefulSetAutoDeletePVC` feature gate promoted to beta.
- `StatefulSet` names must be DNS labels, rather than subdomains. Any `StatefulSet`
 which took advantage of subdomain validation (by having dots in the name) can't
 possibly have worked, because we eventually set `pod.spec.hostname` from the `StatefulSetName`,
 and that is validated as a DNS label.
- `ValidatingAdmissionPolicy` now provides a status field that contains results of type checking the validation expression.
 The type checking is fully informational, and the behavior of the policy is unchanged.
- `cacheSize` field in `EncryptionConfiguration` is not supported for KMSv2 provider
- `k8s.io/component-base/logs` now also supports adding command line flags to a `flag.FlagSet`.
- `kubelet`: migrated `--container-runtime-endpoint` and `--image-service-endpoint`
 to kubelet config
- `resource.k8s.io/v1alpha1` was replaced with `resource.k8s.io/v1alpha2`. Before
 upgrading a cluster, all objects in resource.k8s.io/v1alpha1 (ResourceClaim, ResourceClaimTemplate,
 ResourceClass, PodScheduling) must be deleted. The changes are internal, so
 YAML files which create pods and resource claims don't need changes except for
 the newer `apiVersion`.
- `volumes`: `resource.claims` is now cleared for PVC specs during create or update of a pod spec with inline PVC template or of a PVC because it has no effect.
- Added a new alpha API: ClusterTrustBundle (`certificates.k8s.io/v1alpha1`).
 A ClusterTrustBundle may be used to distribute [X.509](https://www.itu.int/rec/T-REC-X.509) trust anchors to workloads within the cluster.
- Remove `kubernetes.io/grpc` standard appProtocol
- API: resource.k8s.io/v1alpha1.PodScheduling was renamed to resource.k8s.io/v1alpha2.PodSchedulingContext.
- APIServerTracing feature gate is now enabled by default. Tracing in the API Server is still disabled by default, and requires a config file to enable.
- Added CEL runtime cost calculation into ValidatingAdmissionPolicy, matching the evaluation cost
 restrictions that already apply to CustomResourceDefinition.
 If rule evaluation uses more compute than the limit, the API server aborts the evaluation and the
 admission check that was being performed is aborted; the `failurePolicy` for the ValidatingAdmissionPolicy
 determines the outcome.
- Added `messageExpression` to `ValidatingAdmissionPolicy`, to set custom failure message via CEL expression.
- Added a new IPAddress object kind
 - Added a new ClusterIP allocator. The new allocator removes previous Service CIDR block size limitations for IPv4, and limits IPv6 size to a /64
- Added a new alpha API: ClusterTrustBundle (`certificates.k8s.io/v1alpha1`).
 A ClusterTrustBundle may be used to distribute [X.509](https://www.itu.int/rec/T-REC-X.509) trust anchors to workloads within the cluster.
- Added authorization check support to the CEL expressions of ValidatingAdmissionPolicy via a `authorizer`
 variable with expressions. The new variable provides a builder that allows expressions such `authorizer.group('').resource('pods').check('create').allowed()`.
- Added matchConditions field to ValidatingAdmissionPolicy, enabled support for CEL based custom match criteria.
- Added messageExpression field to ValidationRule.
- Added the `MatchConditions` field to `ValidatingWebhookConfiguration` and `MutatingWebhookConfiguration` for the v1beta and v1 apis.

 The `AdmissionWebhookMatchConditions` featuregate is now in Alpha
- Added validation to ensure that if `service.kubernetes.io/topology-aware-hints` and `service.kubernetes.io/topology-mode` annotations are both set, they are set to the same value.
 - Added deprecation warning if `service.kubernetes.io/topology-aware-hints` annotation is used.
- Adds auditAnnotations to ValidatingAdmissionPolicy, enabling CEL to be used to add audit annotations to request audit events.
 Adds validationActions to ValidatingAdmissionPolicyBinding, enabling validation failures to be handled by any combination of the warn, audit and deny enforcement actions.
- Adds feature gate `NodeLogQuery` which provides cluster administrators with a streaming view of logs using kubectl without them having to implement a client side reader or logging into the node.
- Api: validation of a PodSpec now rejects invalid ResourceClaim and ResourceClaimTemplate names. For a pod, the name generated for the ResourceClaim when using a template also must be valid.
- Bump default API QPS limits for Kubelet.
- Enable the "StatefulSetStartOrdinal" feature gate in beta
- Extended the kubelet's PodResources API to include resources allocated in `ResourceClaims` via `DynamicResourceAllocation`. Additionally, added a new `Get()` method to query a specific pod for its 
resources.
- Forbid to set matchLabelKeys when labelSelector isn’t set in topologySpreadConstraints
- GCE does not support LoadBalancer Services with ports with different protocols (TCP and UDP)
- GRPC probes are now a GA feature. GRPCContainerProbe feature gate was locked to default value and will be removed in v1.29. If you were setting this feature gate explicitly, please remove it now.
- Graduate Kubelet Topology Manager to GA.
- Graduate `KubeletTracing` to beta, which means that the feature gate is now enabled by default.
- Graduate the container resource metrics feature on HPA to beta.
- Introduced a breaking change to the `resource.k8s.io` API in its `AllocationResult` struct. This change allows a kubelet plugin for the `DynamicResourceAllocation` feature to service allocations 
from multiple resource driver controllers.
- Introduces new alpha functionality to the reflector, allowing user to enable API streaming.

 To activate this feature, users can set the `ENABLE_CLIENT_GO_WATCH_LIST_ALPHA` environmental variable.
 It is important to note that the server must support streaming for this feature to function properly.
 If streaming is not supported by the server, the reflector will revert to the previous method
 of obtaining data through LIST/WATCH semantics.
- Kubelet: change MemoryThrottlingFactor default value to 0.9 and formulas to calculate memory.high
- Migrated the DaemonSet controller (within `kube-controller-manager) to use [contextual logging](https://k8s.io/docs/concepts/cluster-administration/system-logs/#contextual-logging)
- New `service.kubernetes.io/topology-mode` annotation has been introduced as a replacement for the `service.kubernetes.io/topology-aware-hints` annotation.
 - `service.kubernetes.io/topology-aware-hints` annotation has been deprecated.
 - kube-proxy now accepts any value that is not "disabled" for these annotations, enabling custom implementation-specific and/or future built-in heuristics to be used.
- NodeResourceFit and NodeResourcesBalancedAllocation implement the PreScore extension point for a more performant calculation.
- Pods owned by a Job will now use the labels `batch.kubernetes.io/job-name` and `batch.kubernetes.io/controller-uid`.
 The legacy labels `job-name` and `controller-uid` are still added for compatibility.
- Promote CronJobTimeZone feature to GA
- Promoted `SelfSubjectReview` to Beta
- Relax API validation to allow pod node selector to be mutable for gated pods (additions only, no deletions or mutations).
- Remove deprecated `--enable-taint-manager` and `--pod-eviction-timeout` CLI flags
- Resource.k8s.io/v1alpha1 was replaced with resource.k8s.io/v1alpha2. Before upgrading a cluster, all objects in resource.k8s.io/v1alpha1 (ResourceClaim, ResourceClaimTemplate, ResourceClass, 
PodScheduling) must be deleted. The changes will be internal, so YAML files which create pods and resource claims don't need changes except for the newer `apiVersion`.
- SELinuxMountReadWriteOncePod graduated to Beta.
- StatefulSetAutoDeletePVC feature gate promoted to beta.
- The API server now re-uses data encryption keys while the kms v2 plugin's key ID is stable.  Data encryption keys are still randomly generated on server start but an atomic counter is used to 
prevent nonce collisions.
- The API server's encryption at rest configuration now allows the use of wildcards in the list of resources.  For example, '*.*' can be used to encrypt all resources, including all current and 
future custom resources.
- Update KMSv2 to beta
- Updated: Redefine AppProtocol field description and add new standard values
- ValidatingAdmissionPolicy now provides a status field that contains results of type checking the validation expression.
 The type checking is fully informational, and the behavior of the policy is unchanged.
- We have removed support for the v1alpha1 kubeletplugin API of DynamicResourceManagement. All plugins must update to v1alpha2 in order to function properly going forward.
- Graduated seccomp profile defaulting to GA.

 Set the kubelet `--seccomp-default` flag or `seccompDefault` kubelet configuration field to `true` to make pods on that node default to using the `RuntimeDefault` seccomp profile.

 Enabling seccomp for your workload can have a negative performance impact depending on the kernel and container runtime version in use.

 Guidance for identifying and mitigating those issues is outlined in the Kubernetes [seccomp tutorial](https://k8s.io/docs/tutorials/security/seccomp).
- Implements API for streaming for the watch-cache

 When sendInitialEvents ListOption is set together with watch=true, it begins the watch stream with synthetic init events followed by a synthetic "Bookmark" after which the server continues streaming 
events.
- Introduce API for streaming.

 Add SendInitialEvents field to the ListOptions. When the new option is set together with watch=true, it begins the watch stream with synthetic init events followed by a synthetic "Bookmark" after 
which the server continues streaming events.
- Kubelet: a "maxParallelImagePulls" field can now be specified in the kubelet configuration file to control how many image pulls the kubelet can perform in parallel.
- PodSchedulingReadiness is graduated to beta.
- In-place resize feature for Kubernetes Pods
 - Changed the Pod API so that the `resources` defined for containers are mutable for `cpu` and `memory` resource types.
 - Added `resizePolicy` for containers in a pod to allow users control over how their containers are resized.
 - Added `allocatedResources` field to container status in pod status that describes the node resources allocated to a pod.
 - Added `resources` field to container status that reports actual resources applied to running containers.
 - Added `resize` field to pod status that describes the state of a requested pod resize.
 For details, see KEPs below.
- The PodDisruptionBudget `spec.unhealthyPodEvictionPolicy` field has graduated to beta and is enabled by default. On servers with the feature enabled, this field may be set to `AlwaysAllow` to 
always allow unhealthy pods covered by the PodDisruptionBudget to be evicted.
- The `DownwardAPIHugePages` kubelet feature graduated to stable / GA.
- Volumes: `resource.claims` gets cleared for PVC specs during create or update of a pod spec with inline PVC template or of a PVC because it has no effect.
- A fix in the resource.k8s.io/v1alpha1/ResourceClaim API avoids harmless (?) ".status.reservedFor: element 0: associative list without keys has an element that's a map type" errors in the apiserver. 
Validation now rejects the incorrect reuse of the same UID in different entries.
- CacheSize field in EncryptionConfiguration is not supported for KMSv2 provider
- K8s.io/client-go/tools/record.EventBroadcaster: after Shutdown() is called, the broadcaster now gives up immediately after a failure to write an event to a sink. Previously it tried multiple times 
for 12 seconds in a goroutine.
- K8s.io/component-base/logs now also supports adding command line flags to a flag.FlagSet.
- Update API reference for Requests, specifying they must not exceed limits
- `/metrics/slis` is made available for control plane components allowing you to scrape health check metrics.
- A terminating pod on a node that is not caused by preemption won't prevent kube-scheduler from preempting pods on that node
- Rename 'PreemptionByKubeScheduler' to 'PreemptionByScheduler'
- Added new option to the InterPodAffinity scheduler plugin to ignore existing pods` preferred inter-pod affinities if the incoming pod has no preferred inter-pod affinities. This option can be used 
as an optimization for higher scheduling throughput (at the cost of an occasional pod being scheduled non-optimally/violating existing pods' preferred inter-pod affinities). To enable this scheduler 
option, set the InterPodAffinity scheduler plugin arg "ignorePreferredTermsOfExistingPods: true".
- Added warnings about workload resources (Pods, ReplicaSets, Deployments, Jobs, CronJobs, or ReplicationControllers) whose names are not valid DNS labels.
- K8s.io/component-base/logs: usage of the pflag values in a normal Go flag set led to panics when printing the help message
- Kube-proxy, kube-scheduler and kubelet have HTTP APIs for changing the logging verbosity at runtime. This now also works for JSON output.
- Kubeadm: explicitly set `priority` for static pods with `priorityClassName: system-node-critical`
- Kubelet: migrate "--container-runtime-endpoint" and "--image-service-endpoint" to kubelet config
- Kubernetes components that perform leader election now only support using Leases for this.
- StatefulSet names must be DNS labels, rather than subdomains.  Any StatefulSet which took advantage of subdomain validation (by having dots in the name) can't possibly have worked, because we 
eventually set `pod.spec.hostname` from the StatefulSetName, and that is validated as a DNS label.
- The following feature gates for volume expansion GA features have been removed and must no longer be referenced in `--feature-gates` flags: ExpandCSIVolumes, ExpandInUsePersistentVolumes, 
ExpandPersistentVolumes
- The list-type of the alpha resourceClaims field introduced to Pods in 1.26.0 was modified from "set" to "map", resolving an incompatibility with use of this schema in CustomResourceDefinitions and 
with server-side apply.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/py-kubernetes/Makefile \
    pkgsrc/sysutils/py-kubernetes/PLIST \
    pkgsrc/sysutils/py-kubernetes/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/sysutils/py-kubernetes/Makefile
diff -u pkgsrc/sysutils/py-kubernetes/Makefile:1.2 pkgsrc/sysutils/py-kubernetes/Makefile:1.3
--- pkgsrc/sysutils/py-kubernetes/Makefile:1.2  Fri May 19 10:43:03 2023
+++ pkgsrc/sysutils/py-kubernetes/Makefile      Sun Aug 27 03:28:28 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2023/05/19 10:43:03 adam Exp $
+# $NetBSD: Makefile,v 1.3 2023/08/27 03:28:28 adam Exp $
 
-DISTNAME=      kubernetes-26.1.0
+DISTNAME=      kubernetes-27.2.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    sysutils python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=k/kubernetes/}
@@ -13,6 +13,7 @@ LICENSE=      apache-2.0
 DEPENDS+=      ${PYPKGPREFIX}-certifi>=14.05.14:../../security/py-certifi
 DEPENDS+=      ${PYPKGPREFIX}-dateutil>=2.5.3:../../time/py-dateutil
 DEPENDS+=      ${PYPKGPREFIX}-google-auth>=1.0.1:../../security/py-google-auth
+DEPENDS+=      ${PYPKGPREFIX}-oauthlib>=3.2.2:../../security/py-oauthlib
 DEPENDS+=      ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests
 DEPENDS+=      ${PYPKGPREFIX}-requests-oauthlib-[0-9]*:../../security/py-requests-oauthlib
 DEPENDS+=      ${PYPKGPREFIX}-six>=1.9.0:../../lang/py-six
Index: pkgsrc/sysutils/py-kubernetes/PLIST
diff -u pkgsrc/sysutils/py-kubernetes/PLIST:1.2 pkgsrc/sysutils/py-kubernetes/PLIST:1.3
--- pkgsrc/sysutils/py-kubernetes/PLIST:1.2     Fri May 19 10:43:03 2023
+++ pkgsrc/sysutils/py-kubernetes/PLIST Sun Aug 27 03:28:28 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2023/05/19 10:43:03 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2023/08/27 03:28:28 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -52,6 +52,9 @@ ${PYSITELIB}/kubernetes/client/api/authe
 ${PYSITELIB}/kubernetes/client/api/authentication_v1alpha1_api.py
 ${PYSITELIB}/kubernetes/client/api/authentication_v1alpha1_api.pyc
 ${PYSITELIB}/kubernetes/client/api/authentication_v1alpha1_api.pyo
+${PYSITELIB}/kubernetes/client/api/authentication_v1beta1_api.py
+${PYSITELIB}/kubernetes/client/api/authentication_v1beta1_api.pyc
+${PYSITELIB}/kubernetes/client/api/authentication_v1beta1_api.pyo
 ${PYSITELIB}/kubernetes/client/api/authorization_api.py
 ${PYSITELIB}/kubernetes/client/api/authorization_api.pyc
 ${PYSITELIB}/kubernetes/client/api/authorization_api.pyo
@@ -79,6 +82,9 @@ ${PYSITELIB}/kubernetes/client/api/certi
 ${PYSITELIB}/kubernetes/client/api/certificates_v1_api.py
 ${PYSITELIB}/kubernetes/client/api/certificates_v1_api.pyc
 ${PYSITELIB}/kubernetes/client/api/certificates_v1_api.pyo
+${PYSITELIB}/kubernetes/client/api/certificates_v1alpha1_api.py
+${PYSITELIB}/kubernetes/client/api/certificates_v1alpha1_api.pyc
+${PYSITELIB}/kubernetes/client/api/certificates_v1alpha1_api.pyo
 ${PYSITELIB}/kubernetes/client/api/coordination_api.py
 ${PYSITELIB}/kubernetes/client/api/coordination_api.pyc
 ${PYSITELIB}/kubernetes/client/api/coordination_api.pyo
@@ -157,9 +163,9 @@ ${PYSITELIB}/kubernetes/client/api/rbac_
 ${PYSITELIB}/kubernetes/client/api/resource_api.py
 ${PYSITELIB}/kubernetes/client/api/resource_api.pyc
 ${PYSITELIB}/kubernetes/client/api/resource_api.pyo
-${PYSITELIB}/kubernetes/client/api/resource_v1alpha1_api.py
-${PYSITELIB}/kubernetes/client/api/resource_v1alpha1_api.pyc
-${PYSITELIB}/kubernetes/client/api/resource_v1alpha1_api.pyo
+${PYSITELIB}/kubernetes/client/api/resource_v1alpha2_api.py
+${PYSITELIB}/kubernetes/client/api/resource_v1alpha2_api.pyc
+${PYSITELIB}/kubernetes/client/api/resource_v1alpha2_api.pyo
 ${PYSITELIB}/kubernetes/client/api/scheduling_api.py
 ${PYSITELIB}/kubernetes/client/api/scheduling_api.pyc
 ${PYSITELIB}/kubernetes/client/api/scheduling_api.pyo
@@ -172,9 +178,6 @@ ${PYSITELIB}/kubernetes/client/api/stora
 ${PYSITELIB}/kubernetes/client/api/storage_v1_api.py
 ${PYSITELIB}/kubernetes/client/api/storage_v1_api.pyc
 ${PYSITELIB}/kubernetes/client/api/storage_v1_api.pyo
-${PYSITELIB}/kubernetes/client/api/storage_v1beta1_api.py
-${PYSITELIB}/kubernetes/client/api/storage_v1beta1_api.pyc
-${PYSITELIB}/kubernetes/client/api/storage_v1beta1_api.pyo
 ${PYSITELIB}/kubernetes/client/api/version_api.py
 ${PYSITELIB}/kubernetes/client/api/version_api.pyc
 ${PYSITELIB}/kubernetes/client/api/version_api.pyo
@@ -388,6 +391,9 @@ ${PYSITELIB}/kubernetes/client/models/v1
 ${PYSITELIB}/kubernetes/client/models/v1_container_port.py
 ${PYSITELIB}/kubernetes/client/models/v1_container_port.pyc
 ${PYSITELIB}/kubernetes/client/models/v1_container_port.pyo
+${PYSITELIB}/kubernetes/client/models/v1_container_resize_policy.py
+${PYSITELIB}/kubernetes/client/models/v1_container_resize_policy.pyc
+${PYSITELIB}/kubernetes/client/models/v1_container_resize_policy.pyo
 ${PYSITELIB}/kubernetes/client/models/v1_container_state.py
 ${PYSITELIB}/kubernetes/client/models/v1_container_state.pyc
 ${PYSITELIB}/kubernetes/client/models/v1_container_state.pyo
@@ -796,6 +802,9 @@ ${PYSITELIB}/kubernetes/client/models/v1
 ${PYSITELIB}/kubernetes/client/models/v1_managed_fields_entry.py
 ${PYSITELIB}/kubernetes/client/models/v1_managed_fields_entry.pyc
 ${PYSITELIB}/kubernetes/client/models/v1_managed_fields_entry.pyo
+${PYSITELIB}/kubernetes/client/models/v1_match_condition.py
+${PYSITELIB}/kubernetes/client/models/v1_match_condition.pyc
+${PYSITELIB}/kubernetes/client/models/v1_match_condition.pyo
 ${PYSITELIB}/kubernetes/client/models/v1_mutating_webhook.py
 ${PYSITELIB}/kubernetes/client/models/v1_mutating_webhook.pyc
 ${PYSITELIB}/kubernetes/client/models/v1_mutating_webhook.pyo
@@ -1423,9 +1432,9 @@ ${PYSITELIB}/kubernetes/client/models/v1
 ${PYSITELIB}/kubernetes/client/models/v1_windows_security_context_options.py
 ${PYSITELIB}/kubernetes/client/models/v1_windows_security_context_options.pyc
 ${PYSITELIB}/kubernetes/client/models/v1_windows_security_context_options.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_allocation_result.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_allocation_result.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_allocation_result.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha1_audit_annotation.py
+${PYSITELIB}/kubernetes/client/models/v1alpha1_audit_annotation.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha1_audit_annotation.pyo
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_cidr.py
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_cidr.pyc
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_cidr.pyo
@@ -1435,6 +1444,30 @@ ${PYSITELIB}/kubernetes/client/models/v1
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_cidr_spec.py
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_cidr_spec.pyc
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_cidr_spec.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_trust_bundle.py
+${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_trust_bundle.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_trust_bundle.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_trust_bundle_list.py
+${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_trust_bundle_list.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_trust_bundle_list.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_trust_bundle_spec.py
+${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_trust_bundle_spec.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha1_cluster_trust_bundle_spec.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha1_expression_warning.py
+${PYSITELIB}/kubernetes/client/models/v1alpha1_expression_warning.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha1_expression_warning.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha1_ip_address.py
+${PYSITELIB}/kubernetes/client/models/v1alpha1_ip_address.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha1_ip_address.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha1_ip_address_list.py
+${PYSITELIB}/kubernetes/client/models/v1alpha1_ip_address_list.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha1_ip_address_list.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha1_ip_address_spec.py
+${PYSITELIB}/kubernetes/client/models/v1alpha1_ip_address_spec.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha1_ip_address_spec.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha1_match_condition.py
+${PYSITELIB}/kubernetes/client/models/v1alpha1_match_condition.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha1_match_condition.pyo
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_match_resources.py
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_match_resources.pyc
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_match_resources.pyo
@@ -1447,57 +1480,9 @@ ${PYSITELIB}/kubernetes/client/models/v1
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_param_ref.py
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_param_ref.pyc
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_param_ref.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_pod_scheduling.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_pod_scheduling.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_pod_scheduling.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_pod_scheduling_list.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_pod_scheduling_list.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_pod_scheduling_list.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_pod_scheduling_spec.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_pod_scheduling_spec.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_pod_scheduling_spec.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_pod_scheduling_status.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_pod_scheduling_status.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_pod_scheduling_status.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_consumer_reference.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_consumer_reference.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_consumer_reference.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_list.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_list.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_list.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_parameters_reference.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_parameters_reference.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_parameters_reference.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_scheduling_status.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_scheduling_status.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_scheduling_status.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_spec.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_spec.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_spec.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_status.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_status.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_status.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_template.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_template.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_template.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_template_list.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_template_list.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_template_list.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_template_spec.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_template_spec.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_claim_template_spec.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_class.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_class.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_class.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_class_list.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_class_list.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_class_list.pyo
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_class_parameters_reference.py
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_class_parameters_reference.pyc
-${PYSITELIB}/kubernetes/client/models/v1alpha1_resource_class_parameters_reference.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha1_parent_reference.py
+${PYSITELIB}/kubernetes/client/models/v1alpha1_parent_reference.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha1_parent_reference.pyo
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_self_subject_review.py
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_self_subject_review.pyc
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_self_subject_review.pyo
@@ -1519,6 +1504,9 @@ ${PYSITELIB}/kubernetes/client/models/v1
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_storage_version_status.py
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_storage_version_status.pyc
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_storage_version_status.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha1_type_checking.py
+${PYSITELIB}/kubernetes/client/models/v1alpha1_type_checking.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha1_type_checking.pyo
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_validating_admission_policy.py
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_validating_admission_policy.pyc
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_validating_admission_policy.pyo
@@ -1537,15 +1525,75 @@ ${PYSITELIB}/kubernetes/client/models/v1
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_validating_admission_policy_spec.py
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_validating_admission_policy_spec.pyc
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_validating_admission_policy_spec.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha1_validating_admission_policy_status.py
+${PYSITELIB}/kubernetes/client/models/v1alpha1_validating_admission_policy_status.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha1_validating_admission_policy_status.pyo
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_validation.py
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_validation.pyc
 ${PYSITELIB}/kubernetes/client/models/v1alpha1_validation.pyo
-${PYSITELIB}/kubernetes/client/models/v1beta1_csi_storage_capacity.py
-${PYSITELIB}/kubernetes/client/models/v1beta1_csi_storage_capacity.pyc
-${PYSITELIB}/kubernetes/client/models/v1beta1_csi_storage_capacity.pyo
-${PYSITELIB}/kubernetes/client/models/v1beta1_csi_storage_capacity_list.py
-${PYSITELIB}/kubernetes/client/models/v1beta1_csi_storage_capacity_list.pyc
-${PYSITELIB}/kubernetes/client/models/v1beta1_csi_storage_capacity_list.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_allocation_result.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_allocation_result.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_allocation_result.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_pod_scheduling_context.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_pod_scheduling_context.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_pod_scheduling_context.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_pod_scheduling_context_list.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_pod_scheduling_context_list.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_pod_scheduling_context_list.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_pod_scheduling_context_spec.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_pod_scheduling_context_spec.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_pod_scheduling_context_spec.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_pod_scheduling_context_status.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_pod_scheduling_context_status.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_pod_scheduling_context_status.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_consumer_reference.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_consumer_reference.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_consumer_reference.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_list.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_list.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_list.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_parameters_reference.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_parameters_reference.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_parameters_reference.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_scheduling_status.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_scheduling_status.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_scheduling_status.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_spec.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_spec.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_spec.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_status.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_status.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_status.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_template.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_template.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_template.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_template_list.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_template_list.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_template_list.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_template_spec.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_template_spec.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_claim_template_spec.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_class.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_class.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_class.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_class_list.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_class_list.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_class_list.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_class_parameters_reference.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_class_parameters_reference.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_class_parameters_reference.pyo
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_handle.py
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_handle.pyc
+${PYSITELIB}/kubernetes/client/models/v1alpha2_resource_handle.pyo
+${PYSITELIB}/kubernetes/client/models/v1beta1_self_subject_review.py
+${PYSITELIB}/kubernetes/client/models/v1beta1_self_subject_review.pyc
+${PYSITELIB}/kubernetes/client/models/v1beta1_self_subject_review.pyo
+${PYSITELIB}/kubernetes/client/models/v1beta1_self_subject_review_status.py
+${PYSITELIB}/kubernetes/client/models/v1beta1_self_subject_review_status.pyc
+${PYSITELIB}/kubernetes/client/models/v1beta1_self_subject_review_status.pyo
 ${PYSITELIB}/kubernetes/client/models/v1beta2_flow_distinguisher_method.py
 ${PYSITELIB}/kubernetes/client/models/v1beta2_flow_distinguisher_method.pyc
 ${PYSITELIB}/kubernetes/client/models/v1beta2_flow_distinguisher_method.pyo
Index: pkgsrc/sysutils/py-kubernetes/distinfo
diff -u pkgsrc/sysutils/py-kubernetes/distinfo:1.2 pkgsrc/sysutils/py-kubernetes/distinfo:1.3
--- pkgsrc/sysutils/py-kubernetes/distinfo:1.2  Fri May 19 10:43:03 2023
+++ pkgsrc/sysutils/py-kubernetes/distinfo      Sun Aug 27 03:28:28 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2023/05/19 10:43:03 adam Exp $
+$NetBSD: distinfo,v 1.3 2023/08/27 03:28:28 adam Exp $
 
-BLAKE2s (kubernetes-26.1.0.tar.gz) = c04c566df877ad690ba4d53f2a704d8090ccb92e17b293aa68705c6f34ff814a
-SHA512 (kubernetes-26.1.0.tar.gz) = 4a03e245ffbec78b86790f2c9eb4d82c380f399b5bafd518c841be792e9aa6e91a593bc1202df0a716eccc9655c890dac169a04770ba0cbb6b256a252d26f94f
-Size (kubernetes-26.1.0.tar.gz) = 736370 bytes
+BLAKE2s (kubernetes-27.2.0.tar.gz) = e1921d301041f3ae22df90f0b2df271dcf4ba896acaf03d1c8264da71cec8e02
+SHA512 (kubernetes-27.2.0.tar.gz) = afd25d623d1916a56af5eea36bf83bf121160d3d2326307c50f3bb8cbb08085ada0a5f21e328b384cdcb153d30585b49401ec8c3e1d57ad9703e18c8d8a85375
+Size (kubernetes-27.2.0.tar.gz) = 781963 bytes



Home | Main Index | Thread Index | Old Index