operator-sdk-ansible-util icon indicating copy to clipboard operation
operator-sdk-ansible-util copied to clipboard

A collection of Ansible assets for use with Ansible-based operators built with the operator-sdk.

Results 7 operator-sdk-ansible-util issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, This fixes a `-` / `_` error in the `k8s_event` example Cheers, Pierre

I noticed that the apiVersion for the involved object had been hard coded to v1; I found that for CR's where the ApiVersion was different I would get an error...

We try to call k8s_event from our Ansible Operator, using v0.5.0 operator-sdk-ansible-util. ``` - name: Create Kubernetes Event k8s_event: state: present name: test-k8s-event namespace: dtest2 message: "mycluster getting created Event...

I am getting below error during docker run the operator image. What could be the issue? ``` podman run -it localhost/controller:latest {"level":"info","ts":1687455343.9304368,"logger":"cmd","msg":"Version","Go Version":"go1.15.5","GOOS":"linux","GOARCH":"amd64","ansible-operator":"v1.3.0","commit":"1abf57985b43bf6a59dcd18147b3c574fa57d3f6"} {"level":"error","ts":1687455343.9306693,"logger":"cmd","msg":"Failed to get config.","error":"invalid configuration: no configuration...

[Bumping kubernetes.core version](https://github.com/operator-framework/operator-sdk/pull/5249) is being planned. It would be nice to make this collection compatible with turbo mode, available in the new version.

lifecycle/frozen

Hi, k8s_status makes changes when running playbook in check_mode

When trying to delete the `old_stuff` field from this CR status: ```yaml status: old_stuff: used: no_longer progress: 0% ``` using this task ```yaml - name: Update CR status operator_sdk.util.k8s_status: api_version:...