Skip to content

Commit 1943dfc

Browse files
authored
Post release 5.1.0 update (#866)
SUMMARY This is a post-5.1.0 documentation update of the main branch that includes a cherry-pic of the changelog and an update version to 5.2.0-dev0. ISSUE TYPE Docs Pull Request COMPONENT NAME changelog galaxy.yml ADDITIONAL INFORMATION The reason for this version bump is to understand of version when the collection is installed as ansible-galaxy collection install git+https://github.com/ansible-collections/kubernetes.core.git and don't mess up the main (that may contain some PRs that is not included to any released version) with the released version 5.1.0. Reviewed-by: Mike Graves <[email protected]> Reviewed-by: Yuriy Novostavskiy
1 parent eb731cd commit 1943dfc

19 files changed

+153
-39
lines changed

CHANGELOG.rst

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,37 @@ Kubernetes Collection Release Notes
44

55
.. contents:: Topics
66

7+
v5.1.0
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This release came with new module ``helm_registry_auth``, improvements to the error messages in the k8s_drain module, new parameter ``insecure_registry`` for ``helm_template`` module and several bug fixes.
14+
15+
Minor Changes
16+
-------------
17+
18+
- Bump version of ansible-lint to minimum 24.7.0 (https://github.com/ansible-collections/kubernetes.core/pull/765).
19+
- Parameter insecure_registry added to helm_template as equivalent of insecure-skip-tls-verify (https://github.com/ansible-collections/kubernetes.core/pull/805).
20+
- k8s_drain - Improve error message for pod disruption budget when draining a node (https://github.com/ansible-collections/kubernetes.core/issues/797).
21+
22+
Bugfixes
23+
--------
24+
25+
- helm - Helm version checks did not support RC versions. They now accept any version tags. (https://github.com/ansible-collections/kubernetes.core/pull/745).
26+
- helm_pull - Apply no_log=True to pass_credentials to silence false positive warning. (https://github.com/ansible-collections/kubernetes.core/pull/796).
27+
- k8s_drain - Fix k8s_drain does not wait for single pod (https://github.com/ansible-collections/kubernetes.core/issues/769).
28+
- 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).
29+
- kubeconfig option should not appear in module invocation log (https://github.com/ansible-collections/kubernetes.core/issues/782).
30+
- kustomize - kustomize plugin fails with deprecation warnings (https://github.com/ansible-collections/kubernetes.core/issues/639).
31+
- waiter - Fix waiting for daemonset when desired number of pods is 0. (https://github.com/ansible-collections/kubernetes.core/pull/756).
32+
33+
New Modules
34+
-----------
35+
36+
- helm_registry_auth - Helm registry authentication module
37+
738
v5.0.0
839
======
940

@@ -15,6 +46,7 @@ This major release drops support for ``ansible-core<2.15``.
1546
Minor Changes
1647
-------------
1748

49+
- connection/kubectl.py - Added an example of using the kubectl connection plugin to the documentation (https://github.com/ansible-collections/kubernetes.core/pull/741).
1850
- inventory/k8s.py - Defer removal of k8s inventory plugin to version 6.0.0 (https://github.com/ansible-collections/kubernetes.core/pull/734).
1951

2052
Breaking Changes / Porting Guide
@@ -55,18 +87,44 @@ Bugfixes
5587
- helm - use ``reuse-values`` when running ``helm diff`` command (https://github.com/ansible-collections/kubernetes.core/issues/680).
5688
- 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).
5789

90+
v3.3.0
91+
======
92+
93+
Release Summary
94+
---------------
95+
96+
This release comes with improvements to the error messages in the k8s_drain module and several bug fixes.
97+
98+
Minor Changes
99+
-------------
100+
101+
- k8s_drain - Improve error message for pod disruption budget when draining a node (https://github.com/ansible-collections/kubernetes.core/issues/797).
102+
103+
Bugfixes
104+
--------
105+
106+
- helm - Helm version checks did not support RC versions. They now accept any version tags. (https://github.com/ansible-collections/kubernetes.core/pull/745).
107+
- helm_pull - Apply no_log=True to pass_credentials to silence false positive warning. (https://github.com/ansible-collections/kubernetes.core/pull/796).
108+
- k8s_drain - Fix k8s_drain does not wait for single pod (https://github.com/ansible-collections/kubernetes.core/issues/769).
109+
- 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).
110+
- kubeconfig option should not appear in module invocation log (https://github.com/ansible-collections/kubernetes.core/issues/782).
111+
- kustomize - kustomize plugin fails with deprecation warnings (https://github.com/ansible-collections/kubernetes.core/issues/639).
112+
- waiter - Fix waiting for daemonset when desired number of pods is 0. (https://github.com/ansible-collections/kubernetes.core/pull/756).
113+
58114
v3.2.0
59115
======
60116

61117
Release Summary
62118
---------------
119+
63120
This release comes with documentation updates.
64121

65122
Minor Changes
66123
-------------
67124

68-
- inventory/k8s.py - Defer removal of k8s inventory plugin to version 6.0.0 (https://github.com/ansible-collections/kubernetes.core/pull/734).
69125
- connection/kubectl.py - Added an example of using the kubectl connection plugin to the documentation (https://github.com/ansible-collections/kubernetes.core/pull/741).
126+
- inventory/k8s.py - Defer removal of k8s inventory plugin to version 5.0 (https://github.com/ansible-collections/kubernetes.core/pull/723).
127+
- inventory/k8s.py - Defer removal of k8s inventory plugin to version 6.0.0 (https://github.com/ansible-collections/kubernetes.core/pull/734).
70128

71129
v3.1.0
72130
======

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.2.0-dev0
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: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -854,6 +854,52 @@ 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 5.0 (https://github.com/ansible-collections/kubernetes.core/pull/723).
863+
- inventory/k8s.py - Defer removal of k8s inventory plugin to version 6.0.0
864+
(https://github.com/ansible-collections/kubernetes.core/pull/734).
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+
- 3.2.0.yml
870+
- inventory-update_removal_date.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
889+
in the k8s_drain module and several bug fixes.
890+
fragments:
891+
- 20240530-ansible-core-support-update.yaml
892+
- 20240611-helm-rc-version.yaml
893+
- 20240620-fix-kustomize-plugin-fails-with-deprecation-warnings.yml
894+
- 20241102-fix-ci-post-2.18-issue.yaml
895+
- 20241213-kubeconfig-set-no_log-true.yaml
896+
- 756-fix-daemonset-waiting.yaml
897+
- 770-fix-k8s-drain-doesnt-wait-for-single-pod.yaml
898+
- 793-fix-k8s-drain-runs-into-timeout.yaml
899+
- 796-false-positive-helmull.yaml
900+
- 798-drain-pdb-error-message.yaml
901+
- readme_template_update.yml
902+
release_date: '2025-01-20'
857903
4.0.0:
858904
changes:
859905
bugfixes:
@@ -901,6 +947,8 @@ releases:
901947
breaking_changes:
902948
- Remove support for ``ansible-core<2.15`` (https://github.com/ansible-collections/kubernetes.core/pull/737).
903949
minor_changes:
950+
- connection/kubectl.py - Added an example of using the kubectl connection plugin
951+
to the documentation (https://github.com/ansible-collections/kubernetes.core/pull/741).
904952
- inventory/k8s.py - Defer removal of k8s inventory plugin to version 6.0.0
905953
(https://github.com/ansible-collections/kubernetes.core/pull/734).
906954
release_summary: This major release drops support for ``ansible-core<2.15``.
@@ -909,3 +957,46 @@ releases:
909957
- 20240530-defer-removal-and-ansible-core-support-update.yaml
910958
- 5.0.0.yml
911959
release_date: '2024-05-31'
960+
5.1.0:
961+
changes:
962+
bugfixes:
963+
- helm - Helm version checks did not support RC versions. They now accept any
964+
version tags. (https://github.com/ansible-collections/kubernetes.core/pull/745).
965+
- helm_pull - Apply no_log=True to pass_credentials to silence false positive
966+
warning. (https://github.com/ansible-collections/kubernetes.core/pull/796).
967+
- k8s_drain - Fix k8s_drain does not wait for single pod (https://github.com/ansible-collections/kubernetes.core/issues/769).
968+
- k8s_drain - Fix k8s_drain runs into a timeout when evicting a pod which is
969+
part of a stateful set (https://github.com/ansible-collections/kubernetes.core/issues/792).
970+
- kubeconfig option should not appear in module invocation log (https://github.com/ansible-collections/kubernetes.core/issues/782).
971+
- kustomize - kustomize plugin fails with deprecation warnings (https://github.com/ansible-collections/kubernetes.core/issues/639).
972+
- waiter - Fix waiting for daemonset when desired number of pods is 0. (https://github.com/ansible-collections/kubernetes.core/pull/756).
973+
minor_changes:
974+
- Bump version of ansible-lint to minimum 24.7.0 (https://github.com/ansible-collections/kubernetes.core/pull/765).
975+
- Parameter insecure_registry added to helm_template as equivalent of insecure-skip-tls-verify
976+
(https://github.com/ansible-collections/kubernetes.core/pull/805).
977+
- k8s_drain - Improve error message for pod disruption budget when draining
978+
a node (https://github.com/ansible-collections/kubernetes.core/issues/797).
979+
release_summary: This release came with new module ``helm_registry_auth``, improvements
980+
to the error messages in the k8s_drain module, new parameter ``insecure_registry``
981+
for ``helm_template`` module and several bug fixes.
982+
fragments:
983+
- 0-readme.yml
984+
- 20240601-doc-example-of-using-kubectl.yaml
985+
- 20240611-helm-rc-version.yaml
986+
- 20240620-fix-kustomize-plugin-fails-with-deprecation-warnings.yml
987+
- 20241102-fix-ci-post-2.18-issue.yaml
988+
- 20241103-completly-remove-obsolate-communication-channel.yaml
989+
- 20241207-add-insecure-skip-tls-verify-to-helm-template.yaml
990+
- 20241213-kubeconfig-set-no_log-true.yaml
991+
- 756-fix-daemonset-waiting.yaml
992+
- 765-bump-ansible-lint-version.yml
993+
- 770-fix-k8s-drain-doesnt-wait-for-single-pod.yaml
994+
- 793-fix-k8s-drain-runs-into-timeout.yaml
995+
- 796-false-positive-helmull.yaml
996+
- 798-drain-pdb-error-message.yaml
997+
- readme_template_update.yml
998+
modules:
999+
- description: Helm registry authentication module
1000+
name: helm_registry_auth
1001+
namespace: ''
1002+
release_date: '2025-01-20'

changelogs/fragments/0-readme.yml

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.

changelogs/fragments/20241207-add-insecure-skip-tls-verify-to-helm-template.yaml

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

0 commit comments

Comments
 (0)