--- - name: Helm | Install or upgrade Uyuni from OCI registry ansible.builtin.command: > helm upgrade --install uyuni-server oci://registry.opensuse.org/uyuni/server-helm --namespace {{ uyuni_namespace }} --create-namespace --version {{ uyuni_chart_version }} --set {{ item.key }}={{ item.value }} --timeout 20m0s --wait loop: "{{ uyuni_helm_values | dict2items }}" environment: KUBECONFIG: "{{ uyuni_kubeconfig }}" PATH: "/usr/local/bin:/usr/bin:/bin" register: _helm_install changed_when: "'STATUS: deployed' in _helm_install.stdout or 'has been upgraded' in _helm_install.stdout"