Scott Moser
Scott Moser
There is not currently a way to include only matching versions from the release update service This adds filter-prefix entry to Update section of melange.yaml. Specific use case for filter-prefix...
In some cases, knowing that a port will available is difficult. Rather than guessing, it would be good to allow '--port=0' to let the kernel pick a port and have...
One might expect that FromHumanSize("1MiB") would either * return error * return units.MiB (1024 * 1024 * 1024) Currently it does not raise error and returns units.MB (1000 * 1000...
This test just assumed that 'keytool' was available (and at the right version) on the host. Instead of that, use keytool provided by the jvm that is inside the image...
## New Image Pull Request Template ### Image Size - [ ] The Image is smaller in size than its common public counterpart. - [ ] The Image is larger...
Currently UseCloudInitWorkflow/IscloudInitEnabled only looks in the single file `/etc/cloud/cloud.cfg` for `disable_vmware_customization: false`. Its generally better practice to put local changes like this into `/etc/cloud/cloud.cfg.d/somefile.cfg`. If the user did that, then...
The `python/import` test is very nice, with 'imports' and makes testing import very easy. I'd like to be able to do some more complex tests, and thought a pipeline would...
I noticed this when I was playing with a shbang program like: #!/usr/bin/env busybox sh echo hello world Melange would give a warning like this: Error reading shbang from usr/bin/hello-busybox:...
This relies on https://github.com/chainguard-dev/melange/pull/1083 And allows adding an "include prefix" for update checks.
A previous comment says that stderr output is confusing to viewing the github action so it was sent to /dev/null. That makes debugging harder. So if it doens't look like...