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
Properly handle resources with '-' in the group name (#2712)
* Properly handle resources with '-' in the group name
Resources with '-' in the APIGroup now are properly formatted when
passed to Ansible. For example
```
apiVersion: cert-manager.io/v1alpha2
kind: Certificate
```
will now result in a variabled called
`_cert_manager_io_certificaterequest`
instead of
`_cert-manager_io_certificaterequest`
Fixes#2486
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@
21
21
22
22
### Bug Fixes
23
23
24
+
- Resources that use '-' in the APIGroup name can now be directly accessed by Ansible. ([#2712](https://github.com/operator-framework/operator-sdk/pull/2712))
24
25
- Fixed issue in CSV generation that caused an incorrect path to be generated for descriptors on types that are fields in array elements. ([#2721](https://github.com/operator-framework/operator-sdk/pull/2721))
0 commit comments