You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* ⚠️ update ansible requirements
For Ansible-based language operators, upgrade
- `community.kubernetes` from `1.2.1` to `2.0.1`
- `kubernetes.core` from `2.2.0` to `2.3.1`
- `cloud.common` from `2.2.0` to `2.2.1`
Signed-off-by: Camila Macedo <[email protected]>
* Apply suggestions from code review
For Ansible-based language operators, upgrade `community.kubernetes` from `1.2.1` to `2.0.1`. **IMPORTANT** The `community.kubernetes` collection is being renamed to kubernetes.core. As of version 2.0.0, the collection has been replaced by deprecated redirects for all content to kubernetes.core. If you are using FQCNs starting with `community.kubernetes`, please update them to `kubernetes.core`.
6
+
kind: "change"
7
+
breaking: true
8
+
migration:
9
+
header: For Ansible-based language operators, upgrade `community.kubernetes` from `1.2.1` to `2.0.1`.
10
+
body: |
11
+
**IMPORTANT** The `community.kubernetes` collection is being renamed to `kubernetes.core`. As of version 2.0.0, the collection has been replaced by deprecated redirects for all content to kubernetes.core. If you are using FQCNs starting with `community.kubernetes`, please update them to `kubernetes.core`.
12
+
Ensure that you check the [community.kubernetes changelog](https://github.com/ansible-collections/community.kubernetes/blob/main/CHANGELOG.rst) to verify if your Operator code must be updated and it is affected by the MAJOR changes.
13
+
14
+
In the `requirements.yml` file:
15
+
16
+
Replace:
17
+
18
+
```yaml
19
+
collections:
20
+
- name: community.kubernetes
21
+
version: "1.2.1"
22
+
```
23
+
24
+
With:
25
+
26
+
```yaml
27
+
collections:
28
+
- name: community.kubernetes
29
+
version: "2.0.1"
30
+
```
31
+
- description: >
32
+
For Ansible-based language operators, upgrade `kubernetes.core` from `2.2.0` to `2.3.1`. **IMPORTANT** The `community.kubernetes` collection is being renamed to kubernetes.core. As of version 2.0.0, the collection has been replaced by deprecated redirects for all content to kubernetes.core. If you are using FQCNs starting with `community.kubernetes`, please update them to `kubernetes.core`.
33
+
kind: "change"
34
+
breaking: false
35
+
migration:
36
+
header: For Ansible-based language operators, upgrade `kubernetes.core` from `2.2.0` to `2.3.1`.
37
+
body: |
38
+
Ensure that you check the [kubernetes.core changelog](https://github.com/ansible-collections/kubernetes.core/blob/main/CHANGELOG.rst) to verify if your Operator code must be updated and it is affected by the MAJOR changes.
39
+
40
+
In the `requirements.yml` file:
41
+
42
+
Replace:
43
+
44
+
```yaml
45
+
collections:
46
+
...
47
+
- name: kubernetes.core
48
+
version: "2.2.0"
49
+
```
50
+
51
+
With:
52
+
53
+
```yaml
54
+
collections:
55
+
...
56
+
- name: kubernetes.core
57
+
version: "2.3.1"
58
+
```
59
+
- description: >
60
+
For Ansible-based language operators, upgrade `community.kubernetes` from `1.2.1` to `2.0.1`. **IMPORTANT** The `community.kubernetes` collection is being renamed to kubernetes.core. As of version 2.0.0, the collection has been replaced by deprecated redirects for all content to kubernetes.core. If you are using FQCNs starting with `community.kubernetes`, please update them to `kubernetes.core`.
61
+
kind: "change"
62
+
breaking: false
63
+
migration:
64
+
header: For Ansible-based language operators, upgrade `cloud.common` from `2.2.0` to `2.2.1`.
0 commit comments