dependabot[bot] opened a new pull request, #48158:
URL: https://github.com/apache/airflow/pull/48158

   Updates the requirements on 
[kubernetes-asyncio](https://github.com/tomplus/kubernetes_asyncio) to permit 
the latest version.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/tomplus/kubernetes_asyncio/blob/master/CHANGELOG.md";>kubernetes-asyncio's
 changelog</a>.</em></p>
   <blockquote>
   <h1>v32.0.0</h1>
   <h3>Breaking changes:</h3>
   <ul>
   <li>
   <p>fix rest api aiohttp timeout (<a 
href="https://redirect.github.com/tomplus/kubernetes_asyncio/pull/337";>#337</a>,
 <a href="https://github.com/soamicharan";><code>@​soamicharan</code></a>)</p>
   <p>This fix may affect you if you don't configure timeout for watch/stream. 
Previously it was treated as 5 min, now it's forever.</p>
   </li>
   </ul>
   <h3>API Change</h3>
   <ul>
   <li>
   <p><strong>ACTION REQUIRED</strong> for custom scheduler plugin developers:
   <code>PodEligibleToPreemptOthers</code> in the <code>preemption</code> 
interface now includes <code>ctx</code> in the parameters.
   Please update your plugins' implementation accordingly. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/126465";>#126465</a>,
 <a href="https://github.com/googs1025";><code>@​googs1025</code></a>) [SIG 
Scheduling]</p>
   </li>
   <li>
   <p>Changed NodeToStatusMap from a map to a struct and exposed methods to 
access the entries. Added absentNodesStatus, which informs the status of nodes 
that are absent in the map. For developers of out-of-tree PostFilter plugins, 
ensure to update the usage of NodeToStatusMap. Additionally, NodeToStatusMap 
should eventually be renamed to NodeToStatusReader. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/126022";>#126022</a>,
 <a href="https://github.com/macsko";><code>@​macsko</code></a>) [SIG Node, 
Scheduling, and Testing]</p>
   </li>
   <li>
   <p>A new /resize subresource was added to request pod resource resizing. 
Update your k8s client code to utilize the /resize subresource for Pod resizing 
operations. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/128266";>#128266</a>,
 <a href="https://github.com/AnishShah";><code>@​AnishShah</code></a>) [SIG API 
Machinery, Apps, Node and Testing]</p>
   </li>
   <li>
   <p>A new feature that allows unsafe deletion of corrupt resources has been 
added, it is disabled by default,
   and it can be enabled by setting the option 
<code>--feature-gates=AllowUnsafeMalformedObjectDeletion=true</code>.
   It comes with an API change, a new delete option 
<code>ignoreStoreReadErrorWithClusterBreakingPotential</code> has
   been introduced, it is not set by default, this maintains backward 
compatibility.
   In order to perform an unsafe deletion of a corrupt resource, the user must 
enable the option for the delete
   request. A resource is considered corrupt if it can not be successfully 
retrieved from the storage due to
   a) transformation error e.g. decryption failure, or b) the object failed to 
decode. Normal deletion flow is
   attempted first, and if it fails with a corrupt resource error then it 
triggers unsafe delete.
   In addition, when this feature is enabled, the 'details' field of 'Status' 
from the LIST response
   includes information that identifies the corrupt object(s).
   NOTE: unsafe deletion ignores finalizer constraints, and skips precondition 
checks.
   WARNING: this may break the workload associated with the resource being 
unsafe-deleted, if it relies on
   the normal deletion flow, so cluster breaking consequences apply. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/127513";>#127513</a>,
 <a href="https://github.com/tkashem";><code>@​tkashem</code></a>) [SIG API 
Machinery, Etcd, Node and Testing]</p>
   </li>
   <li>
   <p>Added <code>singleProcessOOMKill</code> flag to the kubelet 
configuration. Setting that to true enable single process OOM killing in 
cgroups v2. In this mode, if a single process is OOM killed within a container, 
the remaining processes will not be OOM killed. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/126096";>#126096</a>,
 <a href="https://github.com/utam0k";><code>@​utam0k</code></a>) [SIG API 
Machinery, Node, Testing and Windows]</p>
   </li>
   <li>
   <p>Added a <code>/flagz</code> endpoint for kube-apiserver endpoint. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/127581";>#127581</a>,
 <a href="https://github.com/richabanker";><code>@​richabanker</code></a>) [SIG 
API Machinery, Architecture, Auth and Instrumentation]</p>
   </li>
   <li>
   <p>Added a <code>Stream</code> field to <code>PodLogOptions</code>, which 
allows clients to request certain log stream (stdout or stderr) of the 
container.
   Please also note that the combination of a specific <code>Stream</code> and 
<code>TailLines</code> is not supported. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/127360";>#127360</a>,
 <a href="https://github.com/knight42";><code>@​knight42</code></a>) [SIG API 
Machinery, Apps, Architecture, Node, Release and Testing]</p>
   </li>
   <li>
   <p>Added alpha support for asynchronous Pod preemption.
   When the <code>SchedulerAsyncPreemption</code> feature gate is enabled, the 
scheduler now runs API calls to trigger preemptions asynchronously for better 
performance. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/128170";>#128170</a>,
 <a href="https://github.com/sanposhiho";><code>@​sanposhiho</code></a>) [SIG 
Scheduling and Testing]</p>
   </li>
   <li>
   <p>Added driver-owned fields in <code>ResourceClaim.Status</code> to report 
device status data for each allocated device. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/128240";>#128240</a>,
 <a href="https://github.com/LionelJouin";><code>@​LionelJouin</code></a>) [SIG 
API Machinery, Network, Node and Testing]</p>
   </li>
   <li>
   <p>Added enforcement of an upper cost bound for DRA evaluations of CEL. The 
API server and scheduler now enforce an upper bound on the cost and runtime 
steps required for evaluating a CEL expression. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/128101";>#128101</a>,
 <a href="https://github.com/pohly";><code>@​pohly</code></a>) [SIG API 
Machinery and Node]</p>
   </li>
   <li>
   <p>Added the ability to change the maximum backoff delay accrued between 
container restarts for a node for containers in <code>CrashLoopBackOff</code>. 
To set this for a node, turn on the feature gate 
<code>KubeletCrashLoopBackoffMax</code> and set the 
<code>CrashLoopBackOff.MaxContainerRestartPeriod </code> field between 
<code>&quot;1s&quot;</code> and <code>&quot;300s&quot;</code> in your <a 
href="https://kubernetes.io/docs/tasks/administer-cluster/kubelet-config-file/";>kubelet
 config file</a>. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/128374";>#128374</a>,
 <a href="https://github.com/lauralorenz";><code>@​lauralorenz</code></a>) [SIG 
API Machinery and Node]</p>
   </li>
   <li>
   <p>Allow for Pod search domains to be a single dot <code>.</code> or contain 
an underscore <code>_</code> (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/127167";>#127167</a>,
 <a href="https://github.com/adrianmoisey";><code>@​adrianmoisey</code></a>) 
[SIG Apps, Network and Testing]</p>
   </li>
   <li>
   <p>Annotation <code>batch.kubernetes.io/cronjob-scheduled-timestamp</code> 
added to Job objects scheduled from CronJobs is promoted to stable. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/128336";>#128336</a>,
 <a href="https://github.com/soltysh";><code>@​soltysh</code></a>)</p>
   </li>
   <li>
   <p>Apply fsGroup policy for ReadWriteOncePod volumes. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/128244";>#128244</a>,
 <a href="https://github.com/gnufied";><code>@​gnufied</code></a>) [SIG Storage 
and Testing]</p>
   </li>
   <li>
   <p>Changed the Pod API to support <code>resources</code> at 
<code>spec</code> level for pod-level resources. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/128407";>#128407</a>,
 <a href="https://github.com/ndixita";><code>@​ndixita</code></a>) [SIG API 
Machinery, Apps, CLI, Cluster Lifecycle, Node, Release, Scheduling and 
Testing]</p>
   </li>
   <li>
   <p>ContainerStatus.AllocatedResources is now guarded by a separate feature 
gate, InPlacePodVerticalSaclingAllocatedStatus (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/128377";>#128377</a>,
 <a href="https://github.com/tallclair";><code>@​tallclair</code></a>) [SIG API 
Machinery, CLI, Node, Scheduling and Testing]</p>
   </li>
   <li>
   <p>Coordination.v1alpha1 API is dropped and replaced with 
coordination.v1alpha2. Old coordination.v1alpha1 types must be deleted before 
upgrade (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/127857";>#127857</a>,
 <a href="https://github.com/Jefftree";><code>@​Jefftree</code></a>) [SIG API 
Machinery, Etcd, Scheduling and Testing]</p>
   </li>
   <li>
   <p>DRA: Restricted the length of opaque device configuration parameters. At 
admission time, Kubernetes enforces a 10KiB size limit. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/128601";>#128601</a>,
 <a href="https://github.com/pohly";><code>@​pohly</code></a>) [SIG API 
Machinery, Apps, Auth, Etcd, Node, Scheduling and Testing]</p>
   </li>
   <li>
   <p>DRA: scheduling pods is up to 16x faster, depending on the scenario. 
Scheduling throughput depends a lot on cluster utilization. It is higher for 
lightly loaded clusters with free resources and gets lower when the cluster 
utilization increases. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/127277";>#127277</a>,
 <a href="https://github.com/pohly";><code>@​pohly</code></a>) [SIG API 
Machinery, Apps, Architecture, Auth, Etcd, Instrumentation, Node, Scheduling 
and Testing]</p>
   </li>
   <li>
   <p>DRA: the <code>DeviceRequestAllocationResult</code> struct now has an 
&quot;AdminAccess&quot; field which should be used instead of the corresponding 
field in the <code>DeviceRequest</code> field when dealing with an allocation. 
If a device is only allocated for admin access, allocating it again for normal 
usage is now supported, as originally intended. To allow admin access, starting 
with 1.32 the <code>DRAAdminAccess</code> feature gate must be enabled. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/127266";>#127266</a>,
 <a href="https://github.com/pohly";><code>@​pohly</code></a>) [SIG API 
Machinery, Apps, Auth, Etcd, Network, Node, Scheduling and Testing]</p>
   </li>
   <li>
   <p>Disallow <code>k8s.io</code> and <code>kubernetes.io</code> namespaced 
extra key in structured authentication configuration. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/126553";>#126553</a>,
 <a href="https://github.com/aramase";><code>@​aramase</code></a>) [SIG Auth]</p>
   </li>
   <li>
   <p>Fixed a bug in the <code>NestedNumberAsFloat64</code> Unstructured field 
accessor that could have caused it to return rounded float64 values instead of 
errors when accessing very large int64 values. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/128099";>#128099</a>,
 <a href="https://github.com/benluddy";><code>@​benluddy</code></a>)</p>
   </li>
   <li>
   <p>Fixed the bug where <code>spec.terminationGracePeriodSeconds</code> of 
the pod will always be overwritten by the MaxPodGracePeriodSeconds of the soft 
eviction, you can enable the 
<code>AllowOverwriteTerminationGracePeriodSeconds</code> feature gate, which 
will restore the previous behavior.  If you do need to set this, please file an 
issue with the Kubernetes project to help contributors understand why you 
needed it. (<a 
href="https://redirect.github.com/kubernetes/kubernetes/pull/122890";>#122890</a>,
 <a href="https://github.com/HirazawaUi";><code>@​HirazawaUi</code></a>) [SIG 
API Machinery, Architecture, Node and Testing]</p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/tomplus/kubernetes_asyncio/commit/8db5d19291124d47f2688d3745b682490ebb9429";><code>8db5d19</code></a>
 release v32.0.0</li>
   <li><a 
href="https://github.com/tomplus/kubernetes_asyncio/commit/84e4e28bc6d352e976c57fb0d90f7d679e49d5a4";><code>84e4e28</code></a>
 regenerate client for release 32.0.0 (<a 
href="https://redirect.github.com/tomplus/kubernetes_asyncio/issues/344";>#344</a>)</li>
   <li><a 
href="https://github.com/tomplus/kubernetes_asyncio/commit/99ace17cf94642d4bbc0889e128a6ee32e5f5f8a";><code>99ace17</code></a>
 [doc] update changelog</li>
   <li><a 
href="https://github.com/tomplus/kubernetes_asyncio/commit/193c9f22684f9535f855a176bc0664cdf8362e91";><code>193c9f2</code></a>
 allow resource names &gt;2 parts (<a 
href="https://redirect.github.com/tomplus/kubernetes_asyncio/issues/343";>#343</a>)</li>
   <li><a 
href="https://github.com/tomplus/kubernetes_asyncio/commit/5e5de93c08d5a07e33dd66ec8d9aae741582a301";><code>5e5de93</code></a>
 Add notice about a breaking change (<a 
href="https://redirect.github.com/tomplus/kubernetes_asyncio/issues/341";>#341</a>)</li>
   <li><a 
href="https://github.com/tomplus/kubernetes_asyncio/commit/1978af8213989b31c140ded50c93198fcc01ceb5";><code>1978af8</code></a>
 chore(deps): bump codecov/codecov-action from 4 to 5 (<a 
href="https://redirect.github.com/tomplus/kubernetes_asyncio/issues/340";>#340</a>)</li>
   <li><a 
href="https://github.com/tomplus/kubernetes_asyncio/commit/68971148c6a81b571ad95bd73e770e75ed0deb15";><code>6897114</code></a>
 fix rest api aiohttp timeout (<a 
href="https://redirect.github.com/tomplus/kubernetes_asyncio/issues/337";>#337</a>)</li>
   <li><a 
href="https://github.com/tomplus/kubernetes_asyncio/commit/089f487a01f3270d32e8be6b716b523bb6979f01";><code>089f487</code></a>
 chore(deps): update sphinx requirement (<a 
href="https://redirect.github.com/tomplus/kubernetes_asyncio/issues/336";>#336</a>)</li>
   <li><a 
href="https://github.com/tomplus/kubernetes_asyncio/commit/73d443ea9f0bcad9885440acb516ac91d113e189";><code>73d443e</code></a>
 regenerate client for release 31.1.0 (<a 
href="https://redirect.github.com/tomplus/kubernetes_asyncio/issues/335";>#335</a>)</li>
   <li><a 
href="https://github.com/tomplus/kubernetes_asyncio/commit/7d1151951a3011bd357ec5533ca184a900d2dd4d";><code>7d11519</code></a>
 Fix content-type detection for object sending as patch (<a 
href="https://redirect.github.com/tomplus/kubernetes_asyncio/issues/334";>#334</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/tomplus/kubernetes_asyncio/compare/29.0.0...32.0.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to