Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(ansible): update kubernetes.core collection default to v2.4.0 #6334

Merged
merged 1 commit into from
Feb 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions changelog/fragments/02-update-kubernetes-core.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# entries is a list of entries to include in
# release notes and/or the migration guide
entries:
- description: >
For ansible operators: fix a JSON parsing bug by updating the kubernetes.core collection to v2.4.0

# kind is one of:
# - addition
# - change
# - deprecation
# - removal
# - bugfix
kind: "bugfix"

# Is this a breaking change?
breaking: false

# NOTE: ONLY USE `pull_request_override` WHEN ADDING THIS
# FILE FOR A PREVIOUSLY MERGED PULL_REQUEST!
#
# The generator auto-detects the PR number from the commit
# message in which this file was originally added.
#
# What is the pull request number (without the "#")?
# pull_request_override: 0


# Migration can be defined to automatically add a section to
# the migration guide. This is required for breaking changes.
migration:
header: (ansible) - Upgrade kubernetes.core collection to v2.4.0
body: |
In the requirements.yaml file replace:
```yaml
- name: kubernetes.core
version: "2.3.1"
```
with:
```yaml
- name: kubernetes.core
version: "2.4.0"
```
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ collections:
- name: operator_sdk.util
version: "0.4.0"
- name: kubernetes.core
version: "2.3.1"
version: "2.4.0"
- name: cloud.common
version: "2.1.1"
- name: community.docker
Expand Down
2 changes: 1 addition & 1 deletion testdata/ansible/memcached-operator/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ collections:
- name: operator_sdk.util
version: "0.4.0"
- name: kubernetes.core
version: "2.3.1"
version: "2.4.0"
- name: cloud.common
version: "2.1.1"
- name: community.docker
Expand Down