David Brown
David Brown
I also got an idempotence failure for tasks * [centos8] => postgresql : PostgrSQL | Install all the required dependencies | dnf * [centos8] => postgresql : disable system postgresql...
@geerlingguy So, is this issue being worked off of a different branch?
Oddly, the second run of a converge seems to get past the initial GPG key error. Is that the case for others?
Interesting related issue https://github.com/containers/libpod/issues/4431 Trying to change the task from a `command` to a `shell` and add the environment variable `GPG_TTY=/dev/null`
I'm wondering if the yum command need some sort of TTY input to open and close...
Interestingly enough I got the task to work by using expect. It's a tty input/output emulator through a scripting language. ``` - name: Install Expect package: name: ['expect'] - name:...
Thought of another option last night, `ignore_errors: true` also seems to get past the issue. Though I'm not sure if that's inviting more problems later.
@ZoeyCluff it's been a year so not sure if you care anymore. However, for everyone else running ansible inside of a docker container does work better with `privileged` mode and...
I did figure out how to do this using my config it looks like the following... ``` apiVersion: infrastructure.cluster.x-k8s.io/v1beta1 kind: AzureCluster metadata: name: mycluster namespace: default spec: networkSpec: vnet: resourceGroup:...
https://github.com/kubernetes-sigs/cluster-api-provider-azure/blob/main/docs/book/src/topics/custom-vnet.md Documentation reference I was using at least.