Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add capabilities to disable podman socket forwarding and podman-ready notifications from the guest #9

Open
wants to merge 4 commits into
base: crc
Choose a base branch
from

Conversation

cfergeau
Copy link
Owner

@cfergeau cfergeau commented Apr 1, 2025

These podman-machine feature are not needed by macadam, and are actually detrimental to our goal of running unmodified cloud images. This work will allow to disable this.

cfergeau added 4 commits April 1, 2025 16:19
podman-machine is forwarding some podman-specific sockets from the VM to
the host, which requires ssh access to the VM and the use of gvproxy.
This is not needed by macadam, and is currently detrimental as we want
to allow to run unmodified VM images.
This commit adds a new `Capabilities` struct to the vmconfigs, which
will be used for such optional features. podman-machine will enable
socket forwarding, but macadam will be able to opt out of it, and the
podman-machine code is modified to only try to forward sockets when the
capability is enabled.
Move comment next to the code it applies to instead of having an extra
blank line between comment and code.
podman-machine currently adds a `podman-ready` systemd unit to its
virtual machine. This unit sends a signal to the host to indicate the
guest OS has finished booting.
This is unwanted for macadam which aims at running unmodified VM images.
This commit uses the Capabilities mechanism to make this podman-machine
feature optional.
gvProxySocket.GetPath(),
apiSocket.GetPath(),
logPath.GetPath(),
}
if mc.Capabilities.HasReadyUnit {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This caused a failure to me bc I already had a machine on my laptop. When trying to delete it to init another one, it failed bc mc.Capabilities is nil

@@ -195,8 +198,10 @@ func (mc *MachineConfig) Remove(machines map[string]bool, saveIgnition, saveImag

mcRemove := func() error {
var errs []error
if err := connection.RemoveConnections(machines, mc.Name, mc.Name+"-root"); err != nil {
errs = append(errs, err)
if mc.Capabilities.ForwardSockets {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as above

@@ -209,8 +214,10 @@ func (mc *MachineConfig) Remove(machines map[string]bool, saveIgnition, saveImag
errs = append(errs, err)
}
}
if err := readySocket.Delete(); err != nil {
errs = append(errs, err)
if mc.Capabilities.HasReadyUnit {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as above

Copy link

@lstocchi lstocchi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overall LGTM, just the comments above which are mandatory bc you cannot clean old VMs otherwise. The same remarks can be done to other parts as you could start an old VM which would have the Capabilities nil

@@ -112,6 +118,8 @@ func Init(opts machineDefine.InitOptions, mp vmconfigs.VMProvider) error {
}

mc.Version = vmconfigs.MachineConfigVersion
mc.Capabilities = opts.Capabilities
mc.Capabilities.ForwardSockets = false
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be removed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants