chore(deps): update dependency kubernetes.core to v6.5.0 #18

Open
renovate-bot wants to merge 1 commit from renovate/kubernetes.core-6.x into main
Member

This PR contains the following updates:

Package Type Update Change
kubernetes.core galaxy-collection minor 6.1.06.5.0

Release Notes

ansible-collections/kubernetes.core (kubernetes.core)

v6.5.0

Compare Source

======

Release Summary

This release implements minor changes and bug fixes such as a new remove value to the behavior option of the kubeconfig module, allowing entries to be deleted from the kubeconfig file by name, as well as Helm v4 compatibility across the Helm modules.

Minor Changes

  • helm - add the server_side and force_conflicts options to control Helm v4 server-side apply when installing or upgrading a release (#​1164).
  • helm_plugin - add --keyring argument to allow changing the keyring default location. The option is only accepted with state=present (the helm plugin install subcommand), as that is the only implemented subcommand that supports --keyring (#​1150).
  • helm_registry_auth - document that, as of Helm 4.2.1, registry success messages such as Login Succeeded are printed to stdout instead of stderr (#​1147).
  • kubeconfig - add remove value to the behavior option, allowing entries to be deleted from the kubeconfig file by name (#​1123).

Bugfixes

  • ee - added meta/execution-environment.yml to decouple ansible-builder EE builds from the openshift-clients system dependency declared in bindep.txt, which is not available in standard UBI repositories and caused builds to fail with No package matches 'openshift-clients' (#​1141).
  • helm - use --server-side=false --force-replace instead of the deprecated/removed --force flag when force=true is used with Helm v4, preserving the Helm v3 client-side replacement behaviour and avoiding the server-side apply conflict (#​1164).
  • helm - use the --rollback-on-failure flag instead of the deprecated/removed --atomic flag when atomic=true is used with Helm v4 (#​1144).
  • helm_repository - correct handling of repository URLs with trailing slashes (#​1121).
  • k8s_drain - Fix logic for handling pods with local storage to correctly check for empty_dir volumes in replicated pods and pods managed by DaemonSets (#​1095).

New Modules

  • kubeconfig - Generate, update, and optionally write Kubernetes kubeconfig files

v6.4.0

Compare Source

======

Release Summary

This release adds Helm v4 compatibility across the Helm modules and improves k8s_drain with check mode. When you explicitly allow evicting unmanaged pods, pods with local storage, or pods managed by a DaemonSet, those cases are reported as informational output instead of module warnings.

Minor Changes

  • helm_info - Ensure compatibility with Helm v4 (#​1038).
  • helm_plugin - Ensure compatibility with Helm v4 (#​1038).
  • helm_plugin_info - Ensure compatibility with Helm v4 (#​1038).
  • helm_pull - Ensure compatibility with Helm v4 (#​1038).
  • helm_registry_auth - Ensure compatibility with Helm v4 (#​1038).
  • helm_registry_auth - add new option plain_http to allow insecure http connection when running helm registry login (#​1090).
  • helm_repository - Ensure compatibility with Helm v4 (#​1038).
  • k8s_drain - Add support for check_mode (#​1086).
  • k8s_drain - Convert module warnings into informational displays when users explicitly request the deletion of unmanaged pods, pods with local storage, or those managed by a DaemonSet (#​1037).

Bugfixes

  • Helm - Allow taking ownership of existing Kubernetes resources on the first installation of a Helm release. Previously, the take_ownership parameter was always disabled during the initial install, preventing resource adoption (#​1034).

v6.3.0

Compare Source

======

Release Summary

This release includes bugfixes such as implementing idempotency for the helm_pull module as well as a security update for selectively redacting sensitive information from kubeconfig.

Minor Changes

  • Remove deprecated import from ansible.module_utils._text (#​1053).
  • helm - add release_values key to status return value that can be accessed using Jinja2 dot notation (#​1056).
  • helm_info - add release_values key to status return value that can be accessed using Jinja2 dot notation (#​1056).

Deprecated Features

  • helm - the status.values return value has been deprecated and will be removed in a release after 2027-01-08. Use status.release_values instead (#​1056).
  • helm_info - the status.values return value has been deprecated and will be removed in a release after 2027-01-08. Use status.release_values instead (#​1056).

Security Fixes

  • Selectively redact sensitive info from kubeconfig instead of applying blanket no_log=True (#​1014).

Bugfixes

  • Add idempotency for helm_pull module (#​1055).
  • Fixed a bug where setting K8S_AUTH_VERIFY_SSL=true (or any string value) caused the value to be treated as a separate kubectl command argument. (#​1049).
  • Limit supported versions of Helm to <4.0.0 (#​1039).
  • Replace passing warnings to exit_json with AnsibleModule.warn in the k8s_drain, k8s_rollback.py and k8s_scale.py modules as it deprecated in ansible-core>=2.19.0 and will be removed in ansible-core>=2.23.0 (#​1033).
  • k8s - Fix return block from the module documentation (#​1056).
  • meta - Add k8s_cluster_info, k8s_json_patch and k8s_rollback to k8s action group (#​992).

v6.2.0

Compare Source

======

Release Summary

This release adds minor changes and bugfixes, including support of skip-schema-validation in helm module and removing deprecated ansible.module_utils.six imports.

Minor Changes

  • Add support of skip-schema-validation in helm module (#​995)
  • kustomize - Add support of local environ (#​786).

Bugfixes

  • Remove ansible.module_utils.six imports to avoid warnings (#​998).
  • Update the k8s_cp module to also work for init containers (#​971).

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [kubernetes.core](https://github.com/ansible-collections/kubernetes.core) | galaxy-collection | minor | `6.1.0` → `6.5.0` | --- ### Release Notes <details> <summary>ansible-collections/kubernetes.core (kubernetes.core)</summary> ### [`v6.5.0`](https://github.com/ansible-collections/kubernetes.core/blob/HEAD/CHANGELOG.rst#v650) [Compare Source](https://github.com/ansible-collections/kubernetes.core/compare/6.4.0...6.5.0) \====== ## Release Summary This release implements minor changes and bug fixes such as a new `remove` value to the `behavior` option of the `kubeconfig` module, allowing entries to be deleted from the kubeconfig file by name, as well as Helm v4 compatibility across the Helm modules. ## Minor Changes - helm - add the `server_side` and `force_conflicts` options to control Helm v4 server-side apply when installing or upgrading a release ([#&#8203;1164](https://github.com/ansible-collections/kubernetes.core/pull/1164)). - helm\_plugin - add `--keyring` argument to allow changing the keyring default location. The option is only accepted with `state=present` (the `helm plugin install` subcommand), as that is the only implemented subcommand that supports `--keyring` ([#&#8203;1150](https://github.com/ansible-collections/kubernetes.core/pull/1150)). - helm\_registry\_auth - document that, as of Helm 4.2.1, registry success messages such as `Login Succeeded` are printed to stdout instead of stderr ([#&#8203;1147](https://github.com/ansible-collections/kubernetes.core/pull/1147)). - kubeconfig - add `remove` value to the `behavior` option, allowing entries to be deleted from the kubeconfig file by name ([#&#8203;1123](https://github.com/ansible-collections/kubernetes.core/pull/1123)). ## Bugfixes - ee - added `meta/execution-environment.yml` to decouple ansible-builder EE builds from the `openshift-clients` system dependency declared in `bindep.txt`, which is not available in standard UBI repositories and caused builds to fail with `No package matches 'openshift-clients'` ([#&#8203;1141](https://github.com/ansible-collections/kubernetes.core/issues/1141)). - helm - use `--server-side=false --force-replace` instead of the deprecated/removed `--force` flag when `force=true` is used with Helm v4, preserving the Helm v3 client-side replacement behaviour and avoiding the server-side apply conflict ([#&#8203;1164](https://github.com/ansible-collections/kubernetes.core/pull/1164)). - helm - use the `--rollback-on-failure` flag instead of the deprecated/removed `--atomic` flag when `atomic=true` is used with Helm v4 ([#&#8203;1144](https://github.com/ansible-collections/kubernetes.core/pull/1144)). - helm\_repository - correct handling of repository URLs with trailing slashes ([#&#8203;1121](https://github.com/ansible-collections/kubernetes.core/pull/1121)). - k8s\_drain - Fix logic for handling pods with local storage to correctly check for empty\_dir volumes in replicated pods and pods managed by DaemonSets ([#&#8203;1095](https://github.com/ansible-collections/kubernetes.core/pull/1095)). ## New Modules - kubeconfig - Generate, update, and optionally write Kubernetes kubeconfig files ### [`v6.4.0`](https://github.com/ansible-collections/kubernetes.core/blob/HEAD/CHANGELOG.rst#v640) [Compare Source](https://github.com/ansible-collections/kubernetes.core/compare/6.3.0...6.4.0) \====== ## Release Summary This release adds Helm v4 compatibility across the Helm modules and improves `k8s_drain` with check mode. When you explicitly allow evicting unmanaged pods, pods with local storage, or pods managed by a `DaemonSet`, those cases are reported as informational output instead of module warnings. ## Minor Changes - helm\_info - Ensure compatibility with Helm v4 ([#&#8203;1038](https://github.com/ansible-collections/kubernetes.core/issues/1038)). - helm\_plugin - Ensure compatibility with Helm v4 ([#&#8203;1038](https://github.com/ansible-collections/kubernetes.core/issues/1038)). - helm\_plugin\_info - Ensure compatibility with Helm v4 ([#&#8203;1038](https://github.com/ansible-collections/kubernetes.core/issues/1038)). - helm\_pull - Ensure compatibility with Helm v4 ([#&#8203;1038](https://github.com/ansible-collections/kubernetes.core/issues/1038)). - helm\_registry\_auth - Ensure compatibility with Helm v4 ([#&#8203;1038](https://github.com/ansible-collections/kubernetes.core/issues/1038)). - helm\_registry\_auth - add new option plain\_http to allow insecure http connection when running `helm registry login` ([#&#8203;1090](https://github.com/ansible-collections/kubernetes.core/pull/1090)). - helm\_repository - Ensure compatibility with Helm v4 ([#&#8203;1038](https://github.com/ansible-collections/kubernetes.core/issues/1038)). - k8s\_drain - Add support for `check_mode` ([#&#8203;1086](https://github.com/ansible-collections/kubernetes.core/pull/1086)). - k8s\_drain - Convert module warnings into informational displays when users explicitly request the deletion of unmanaged pods, pods with local storage, or those managed by a `DaemonSet` ([#&#8203;1037](https://github.com/ansible-collections/kubernetes.core/issues/1037)). ## Bugfixes - Helm - Allow taking ownership of existing Kubernetes resources on the first installation of a Helm release. Previously, the `take_ownership` parameter was always disabled during the initial install, preventing resource adoption ([#&#8203;1034](https://github.com/ansible-collections/kubernetes.core/pull/1034)). ### [`v6.3.0`](https://github.com/ansible-collections/kubernetes.core/blob/HEAD/CHANGELOG.rst#v630) [Compare Source](https://github.com/ansible-collections/kubernetes.core/compare/6.2.0...6.3.0) \====== ## Release Summary This release includes bugfixes such as implementing idempotency for the `helm_pull` module as well as a security update for selectively redacting sensitive information from kubeconfig. ## Minor Changes - Remove deprecated import from `ansible.module_utils._text` ([#&#8203;1053](https://github.com/ansible-collections/kubernetes.core/pull/1053)). - helm - add `release_values` key to `status` return value that can be accessed using Jinja2 dot notation ([#&#8203;1056](https://github.com/ansible-collections/kubernetes.core/pull/1056)). - helm\_info - add `release_values` key to `status` return value that can be accessed using Jinja2 dot notation ([#&#8203;1056](https://github.com/ansible-collections/kubernetes.core/pull/1056)). ## Deprecated Features - helm - the `status.values` return value has been deprecated and will be removed in a release after 2027-01-08. Use `status.release_values` instead ([#&#8203;1056](https://github.com/ansible-collections/kubernetes.core/pull/1056)). - helm\_info - the `status.values` return value has been deprecated and will be removed in a release after 2027-01-08. Use `status.release_values` instead ([#&#8203;1056](https://github.com/ansible-collections/kubernetes.core/pull/1056)). ## Security Fixes - Selectively redact sensitive info from kubeconfig instead of applying blanket `no_log=True` ([#&#8203;1014](https://github.com/ansible-collections/kubernetes.core/pull/1014)). ## Bugfixes - Add idempotency for `helm_pull` module ([#&#8203;1055](https://github.com/ansible-collections/kubernetes.core/pull/1055)). - Fixed a bug where setting `K8S_AUTH_VERIFY_SSL=true` (or any string value) caused the value to be treated as a separate `kubectl` command argument. ([#&#8203;1049](https://github.com/ansible-collections/kubernetes.core/pull/1049)). - Limit supported versions of Helm to <4.0.0 ([#&#8203;1039](https://github.com/ansible-collections/kubernetes.core/pull/1039)). - Replace passing `warnings` to `exit_json` with `AnsibleModule.warn` in the `k8s_drain`, `k8s_rollback.py` and `k8s_scale.py` modules as it deprecated in `ansible-core>=2.19.0` and will be removed in `ansible-core>=2.23.0` ([#&#8203;1033](https://github.com/ansible-collections/kubernetes.core/pull/1033)). - k8s - Fix return block from the module documentation ([#&#8203;1056](https://github.com/ansible-collections/kubernetes.core/pull/1056)). - meta - Add `k8s_cluster_info`, `k8s_json_patch` and `k8s_rollback` to k8s action group ([#&#8203;992](https://github.com/ansible-collections/kubernetes.core/pull/992)). ### [`v6.2.0`](https://github.com/ansible-collections/kubernetes.core/blob/HEAD/CHANGELOG.rst#v620) [Compare Source](https://github.com/ansible-collections/kubernetes.core/compare/6.1.0...6.2.0) \====== ## Release Summary This release adds minor changes and bugfixes, including support of skip-schema-validation in `helm` module and removing deprecated `ansible.module_utils.six` imports. ## Minor Changes - Add support of skip-schema-validation in `helm` module ([#&#8203;995](https://github.com/ansible-collections/kubernetes.core/pull/995)) - kustomize - Add support of local environ ([#&#8203;786](https://github.com/ansible-collections/kubernetes.core/pull/786)). ## Bugfixes - Remove `ansible.module_utils.six` imports to avoid warnings ([#&#8203;998](https://github.com/ansible-collections/kubernetes.core/pull/998)). - Update the `k8s_cp` module to also work for init containers ([#&#8203;971](https://github.com/ansible-collections/kubernetes.core/pull/971)). </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNTMuMSIsInVwZGF0ZWRJblZlciI6IjQzLjI1My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
renovate-bot force-pushed renovate/kubernetes.core-6.x from 35bffcc669 to 525ba732a7 2026-07-08 16:06:46 +00:00 Compare
renovate-bot changed title from Update dependency kubernetes.core to v6.4.0 to Update dependency kubernetes.core to v6.5.0 2026-07-08 16:06:48 +00:00
renovate-bot changed title from Update dependency kubernetes.core to v6.5.0 to chore(deps): update dependency kubernetes.core to v6.5.0 2026-07-17 23:09:47 +00:00
renovate-bot changed title from chore(deps): update dependency kubernetes.core to v6.5.0 to Update dependency kubernetes.core to v6.5.0 2026-07-21 01:07:16 +00:00
renovate-bot changed title from Update dependency kubernetes.core to v6.5.0 to chore(deps): update dependency kubernetes.core to v6.5.0 2026-07-21 02:07:21 +00:00
renovate-bot force-pushed renovate/kubernetes.core-6.x from 525ba732a7 to e856a89450
Some checks failed
ci/crow/pr/dns-test Pipeline failed
ci/crow/pr/tanka-test Pipeline failed
2026-07-22 19:06:23 +00:00
Compare
Some checks failed
ci/crow/pr/dns-test Pipeline failed
ci/crow/pr/tanka-test Pipeline failed
This pull request can be merged automatically.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/kubernetes.core-6.x:renovate/kubernetes.core-6.x
git switch renovate/kubernetes.core-6.x

Merge

Merge the changes and update on Forgejo.
git switch main
git merge --no-ff renovate/kubernetes.core-6.x
git switch renovate/kubernetes.core-6.x
git rebase main
git switch main
git merge --ff-only renovate/kubernetes.core-6.x
git switch renovate/kubernetes.core-6.x
git rebase main
git switch main
git merge --no-ff renovate/kubernetes.core-6.x
git switch main
git merge --squash renovate/kubernetes.core-6.x
git switch main
git merge --ff-only renovate/kubernetes.core-6.x
git switch main
git merge renovate/kubernetes.core-6.x
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
ops/homelab!18
No description provided.