Skip to content

Commit c93a7e2

Browse files
authored
prepare release 5.1.0 (#865)
SUMMARY This release came with new module helm_registry_auth, and improvements to the error messages in the k8s_drain module, new parameter insecure_registry for helm_template module and several bug fixes. ISSUE TYPE New release pull request Changelog Minor Changes Bump version of ansible-lint to minimum 24.7.0 (#765). Parameter insecure_registry added to helm_template as equivalent of insecure-skip-tls-verify (#805). connection/kubectl.py - Added an example of using the kubectl connection plugin to the documentation (#741). k8s_drain - Improve error message for pod disruption budget when draining a node (#797). Bugfixes helm - Helm version checks did not support RC versions. They now accept any version tags. (#745). helm_pull - Apply no_log=True to pass_credentials to silence false positive warning.. (#796). k8s_drain - Fix k8s_drain does not wait for single pod (#769). k8s_drain - Fix k8s_drain runs into a timeout when evicting a pod which is part of a stateful set (#792). kubeconfig option should not appear in module invocation log (#782). kustomize - kustomize plugin fails with deprecation warnings (#639). waiter - Fix waiting for daemonset when desired number of pods is 0. (#756). New Modules helm_registry_auth - Helm registry authentication module ADDITIONAL INFORMATION Collection kubernets.core version 3.1.0 is compatible with ansible-core>=2.15.0 Reviewed-by: Mike Graves <[email protected]>
1 parent 2d68a37 commit c93a7e2

20 files changed

+137
-41
lines changed

CHANGELOG.rst

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,33 @@ Kubernetes Collection Release Notes
44

55
.. contents:: Topics
66

7+
v5.1.0
8+
======
9+
10+
Minor Changes
11+
-------------
12+
13+
- Bump version of ansible-lint to minimum 24.7.0 (https://github.com/ansible-collections/kubernetes.core/pull/765).
14+
- Parameter insecure_registry added to helm_template as equivalent of insecure-skip-tls-verify (https://github.com/ansible-collections/kubernetes.core/pull/805).
15+
- connection/kubectl.py - Added an example of using the kubectl connection plugin to the documentation (https://github.com/ansible-collections/kubernetes.core/pull/741).
16+
- k8s_drain - Improve error message for pod disruption budget when draining a node (https://github.com/ansible-collections/kubernetes.core/issues/797).
17+
18+
Bugfixes
19+
--------
20+
21+
- helm - Helm version checks did not support RC versions. They now accept any version tags. (https://github.com/ansible-collections/kubernetes.core/pull/745).
22+
- helm_pull - Apply no_log=True to pass_credentials to silence false positive warning.. (https://github.com/ansible-collections/kubernetes.core/pull/796).
23+
- k8s_drain - Fix k8s_drain does not wait for single pod (https://github.com/ansible-collections/kubernetes.core/issues/769).
24+
- k8s_drain - Fix k8s_drain runs into a timeout when evicting a pod which is part of a stateful set (https://github.com/ansible-collections/kubernetes.core/issues/792).
25+
- kubeconfig option should not appear in module invocation log (https://github.com/ansible-collections/kubernetes.core/issues/782).
26+
- kustomize - kustomize plugin fails with deprecation warnings (https://github.com/ansible-collections/kubernetes.core/issues/639).
27+
- waiter - Fix waiting for daemonset when desired number of pods is 0. (https://github.com/ansible-collections/kubernetes.core/pull/756).
28+
29+
New Modules
30+
-----------
31+
32+
- helm_registry_auth - Helm registry authentication module
33+
734
v5.0.0
835
======
936

@@ -55,6 +82,23 @@ Bugfixes
5582
- helm - use ``reuse-values`` when running ``helm diff`` command (https://github.com/ansible-collections/kubernetes.core/issues/680).
5683
- integrations test helm_kubeconfig - set helm version to v3.10.3 to avoid incompatability with new bitnami charts (https://github.com/ansible-collections/kubernetes.core/pull/670).
5784

85+
v3.3.0
86+
======
87+
Minor Changes
88+
-------------
89+
- inventory/k8s.py - Defer removal of k8s inventory plugin to version 5.0 (https://github.com/ansible-collections/kubernetes.core/pull/723).
90+
- inventory/k8s.py - Defer removal of k8s inventory plugin to version 6.0.0 (https://github.com/ansible-collections/kubernetes.core/pull/734).
91+
- k8s_drain - Improve error message for pod disruption budget when draining a node (https://github.com/ansible-collections/kubernetes.core/issues/797).
92+
Bugfixes
93+
--------
94+
- helm - Helm version checks did not support RC versions. They now accept any version tags. (https://github.com/ansible-collections/kubernetes.core/pull/745).
95+
- helm_pull - Apply no_log=True to pass_credentials to silence false positive warning.. (https://github.com/ansible-collections/kubernetes.core/pull/796).
96+
- k8s_drain - Fix k8s_drain does not wait for single pod (https://github.com/ansible-collections/kubernetes.core/issues/769).
97+
- k8s_drain - Fix k8s_drain runs into a timeout when evicting a pod which is part of a stateful set (https://github.com/ansible-collections/kubernetes.core/issues/792).
98+
- kubeconfig option should not appear in module invocation log (https://github.com/ansible-collections/kubernetes.core/issues/782).
99+
- kustomize - kustomize plugin fails with deprecation warnings (https://github.com/ansible-collections/kubernetes.core/issues/639).
100+
- waiter - Fix waiting for daemonset when desired number of pods is 0. (https://github.com/ansible-collections/kubernetes.core/pull/756).
101+
58102
v3.2.0
59103
======
60104

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Also needs to be updated in galaxy.yml
2-
VERSION = 5.0.0
2+
VERSION = 5.1.0
33

44
TEST_ARGS ?= ""
55
PYTHON_VERSION ?= `python -c 'import platform; print(".".join(platform.python_version_tuple()[0:2]))'`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible
106106
---
107107
collections:
108108
- name: kubernetes.core
109-
version: 5.0.0
109+
version: 5.1.0
110110
```
111111
112112
### Installing the Kubernetes Python Library

changelogs/changelog.yaml

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -854,6 +854,51 @@ releases:
854854
- 652-fix-json-patch-action.yml
855855
- 654-helm-expand-user.yml
856856
release_date: '2024-05-16'
857+
3.2.0:
858+
changes:
859+
minor_changes:
860+
- connection/kubectl.py - Added an example of using the kubectl connection plugin
861+
to the documentation (https://github.com/ansible-collections/kubernetes.core/pull/741).
862+
- inventory/k8s.py - Defer removal of k8s inventory plugin to version 6.0.0
863+
(https://github.com/ansible-collections/kubernetes.core/pull/734).
864+
- inventory/k8s.py - Defer removal of k8s inventory plugin to version 5.0 (https://github.com/ansible-collections/kubernetes.core/pull/723).
865+
release_summary: This release comes with documentation updates.
866+
fragments:
867+
- 20240530-defer-removal-and-ansible-core-support-update.yaml
868+
- 20240601-doc-example-of-using-kubectl.yaml
869+
- inventory-update_removal_date.yml
870+
- 3.2.0.yml
871+
release_date: '2024-06-14'
872+
3.3.0:
873+
changes:
874+
bugfixes:
875+
- helm - Helm version checks did not support RC versions. They now accept any
876+
version tags. (https://github.com/ansible-collections/kubernetes.core/pull/745).
877+
- helm_pull - Apply no_log=True to pass_credentials to silence false positive
878+
warning. (https://github.com/ansible-collections/kubernetes.core/pull/796).
879+
- k8s_drain - Fix k8s_drain does not wait for single pod (https://github.com/ansible-collections/kubernetes.core/issues/769).
880+
- k8s_drain - Fix k8s_drain runs into a timeout when evicting a pod which is
881+
part of a stateful set (https://github.com/ansible-collections/kubernetes.core/issues/792).
882+
- kubeconfig option should not appear in module invocation log (https://github.com/ansible-collections/kubernetes.core/issues/782).
883+
- kustomize - kustomize plugin fails with deprecation warnings (https://github.com/ansible-collections/kubernetes.core/issues/639).
884+
- waiter - Fix waiting for daemonset when desired number of pods is 0. (https://github.com/ansible-collections/kubernetes.core/pull/756).
885+
minor_changes:
886+
- k8s_drain - Improve error message for pod disruption budget when draining
887+
a node (https://github.com/ansible-collections/kubernetes.core/issues/797).
888+
release_summary: This release comes with improvements to the error messages in the k8s_drain module and several bug fixes.
889+
fragments:
890+
- 20240530-ansible-core-support-update.yaml
891+
- 20240611-helm-rc-version.yaml
892+
- 20240620-fix-kustomize-plugin-fails-with-deprecation-warnings.yml
893+
- 20241102-fix-ci-post-2.18-issue.yaml
894+
- 20241213-kubeconfig-set-no_log-true.yaml
895+
- 756-fix-daemonset-waiting.yaml
896+
- 770-fix-k8s-drain-doesnt-wait-for-single-pod.yaml
897+
- 793-fix-k8s-drain-runs-into-timeout.yaml
898+
- 796-false-positive-helmull.yaml
899+
- 798-drain-pdb-error-message.yaml
900+
- readme_template_update.yml
901+
release_date: '2025-01-20'
857902
4.0.0:
858903
changes:
859904
bugfixes:
@@ -903,9 +948,54 @@ releases:
903948
minor_changes:
904949
- inventory/k8s.py - Defer removal of k8s inventory plugin to version 6.0.0
905950
(https://github.com/ansible-collections/kubernetes.core/pull/734).
951+
- connection/kubectl.py - Added an example of using the kubectl connection plugin
952+
to the documentation (https://github.com/ansible-collections/kubernetes.core/pull/741).
906953
release_summary: This major release drops support for ``ansible-core<2.15``.
907954
fragments:
908955
- 20240530-ansible-core-support-update.yaml
909956
- 20240530-defer-removal-and-ansible-core-support-update.yaml
910957
- 5.0.0.yml
911958
release_date: '2024-05-31'
959+
5.1.0:
960+
changes:
961+
bugfixes:
962+
- helm - Helm version checks did not support RC versions. They now accept any
963+
version tags. (https://github.com/ansible-collections/kubernetes.core/pull/745).
964+
- helm_pull - Apply no_log=True to pass_credentials to silence false positive
965+
warning. (https://github.com/ansible-collections/kubernetes.core/pull/796).
966+
- k8s_drain - Fix k8s_drain does not wait for single pod (https://github.com/ansible-collections/kubernetes.core/issues/769).
967+
- k8s_drain - Fix k8s_drain runs into a timeout when evicting a pod which is
968+
part of a stateful set (https://github.com/ansible-collections/kubernetes.core/issues/792).
969+
- kubeconfig option should not appear in module invocation log (https://github.com/ansible-collections/kubernetes.core/issues/782).
970+
- kustomize - kustomize plugin fails with deprecation warnings (https://github.com/ansible-collections/kubernetes.core/issues/639).
971+
- waiter - Fix waiting for daemonset when desired number of pods is 0. (https://github.com/ansible-collections/kubernetes.core/pull/756).
972+
minor_changes:
973+
- Bump version of ansible-lint to minimum 24.7.0 (https://github.com/ansible-collections/kubernetes.core/pull/765).
974+
- Parameter insecure_registry added to helm_template as equivalent of insecure-skip-tls-verify
975+
(https://github.com/ansible-collections/kubernetes.core/pull/805).
976+
- k8s_drain - Improve error message for pod disruption budget when draining
977+
a node (https://github.com/ansible-collections/kubernetes.core/issues/797).
978+
release_summary: This release came with new module ``helm_registry_auth``, improvements
979+
to the error messages in the k8s_drain module, new parameter ``insecure_registry`` for
980+
``helm_template`` module and several bug fixes.
981+
fragments:
982+
- 0-readme.yml
983+
- 20240601-doc-example-of-using-kubectl.yaml
984+
- 20240611-helm-rc-version.yaml
985+
- 20240620-fix-kustomize-plugin-fails-with-deprecation-warnings.yml
986+
- 20241102-fix-ci-post-2.18-issue.yaml
987+
- 20241103-completly-remove-obsolate-communication-channel.yaml
988+
- 20241207-add-insecure-skip-tls-verify-to-helm-template.yaml
989+
- 20241213-kubeconfig-set-no_log-true.yaml
990+
- 756-fix-daemonset-waiting.yaml
991+
- 765-bump-ansible-lint-version.yml
992+
- 770-fix-k8s-drain-doesnt-wait-for-single-pod.yaml
993+
- 793-fix-k8s-drain-runs-into-timeout.yaml
994+
- 796-false-positive-helmull.yaml
995+
- 798-drain-pdb-error-message.yaml
996+
- readme_template_update.yml
997+
modules:
998+
- description: Helm registry authentication module
999+
name: helm_registry_auth
1000+
namespace: ''
1001+
release_date: '2025-01-20'

changelogs/fragments/0-readme.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/20240601-doc-example-of-using-kubectl.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/20240611-helm-rc-version.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/20240620-fix-kustomize-plugin-fails-with-deprecation-warnings.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/20241102-fix-ci-post-2.18-issue.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/20241103-completly-remove-obsolate-communication-channel.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)