Rui Lopes

Results 311 comments of Rui Lopes

can you please confirm that the spice agent, removed in https://github.com/virtio-win/virtio-win-guest-tools-installer/commit/926dbaca56b03507ecdb6c624e3bb95204f6904a, was re-introduced in https://github.com/virtio-win/virtio-win-pkg-scripts/commit/62c74d124bac4bf8422bf54a97a10702a8f5b938 and included in https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.262-2/? if so, maybe this issue can be closed?

I believe what is being requested is to automatically trust the driver publisher certificate. For example, I'm using the following PowerShell script at https://github.com/rgl/windows-vagrant/blob/master/provision-guest-tools-qemu-kvm.ps1#L15-L24: ```powershell # trust the qemu driver...

@madwolfcrazy for the power status, following the code at https://github.com/talos-systems/sidero/blob/7cdae7b616db7720627ab2e5b409e2f22b0085e0/app/sidero-controller-manager/internal/power/ipmi/ipmi.go#L51 might help. please note that you might need to use the goipmi fork at https://github.com/talos-systems/goipmi

FYI, `regctl tag rm` (see https://github.com/regclient/regclient) can remove a docker hub image tag, e.g.: ```bash function regctl { docker container run --rm --net host \ -u "$(id -u):$(id -g)" -e...

After all [it cannot actually remove it](https://github.com/regclient/regclient/issues/96#issuecomment-930669873). It will still be there, but without any content. So effectively, no-one can actually use it, but the tag will still be there...

Dear maintainers, can you please help getting a flag to enable `copy.Options.DownloadForeignLayers` [as mentioned above](https://github.com/containers/skopeo/issues/545#issuecomment-1026348985)? Or guide me in getting that flag? :-)

@mtrmac, I gave it a try at https://github.com/rgl/skopeo/commit/481b4baf66faff375d92c4b4989a570845163439 but it does not seem to work: ```console $ ./bin/skopeo copy --debug --all docker://docker.io/ruilopes/example-docker-buildx-go:v1.6.0 docker://localhost:5000/example-docker-buildx-go:v1.6.0 ... DEBU[0004] PUT http://localhost:5000/v2/example-docker-buildx-go/manifests/sha256:e9907d195e669b89e80c0b940f4d5359c7c4979738d2c764f598dfe13bc9c64a DEBU[0004] Error uploading...

@mtrmac, changing the default registry configuration helped! `skopeo copy` is no longer failing to upload the manifest! thx for the tip! This is what I appended to the `/etc/docker/registry/config.yml` file:...

@mtrmac, got it! thanks for the help! :-)

@mtrmac, yes. I will do the PR in the next couple of days. I have to first check whether this actually worked for my use-case.