Rui Lopes

Results 311 comments of Rui Lopes

For my particular case, the metadata is informational only, and a push time only way is enough. I do not have enough experience to comment about other use cases. PS...

FWIW, In the context of the OCI image spec, the correct name seems to the [_annotations_](https://github.com/opencontainers/image-spec/blob/main/annotations.md) instead of _metadata_. So probably, should be implemented as, e.g.: ```bash spin registry push...

BTW, if you point me in the right direction, I would like to try to implement this :-)

Thank You! Got it working at https://github.com/fermyon/spin/pull/2254! :-)

Oh, wait... maybe its due to `-replace '^(SkipWinRE\s*)=.*','$1=1'` at https://github.com/rgl/uup-dump-get-windows-iso/blob/main/uup-dump-get-windows-iso.ps1#L273. you can try removing that line, so it includes WinRE.

try removing that line from the script and retry; in theory it no longer removes winre from the iso. But I never really used the recovery environment, so I cannot...

[Vagrant 2.4.3](https://github.com/hashicorp/vagrant/releases/tag/v2.4.3) fixed the installation for me. But vagrant now shows the following warning: ```console $ vagrant destroy -f [fog][WARNING] Unrecognized arguments: libvirt_ip_command ==> default: Pruning invalid NFS exports. Administrator...

Ah, indeed, having a `sysprep` module seems too complex. I retract that request/suggestion. Having it is not really required if we have a way to signal the `win_powershell` module that...

The change to `win_powershell` would be something like the last lines of: ```yaml - name: Sysprep ansible.windows.win_powershell: script: | C:\Windows\System32\Sysprep\Sysprep.exe ` /mode:vm ` /generalize ` /oobe ` /quiet ` /quit...