-
Notifications
You must be signed in to change notification settings - Fork 0
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
base: crc
Are you sure you want to change the base?
Conversation
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 { |
There was a problem hiding this comment.
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 { |
There was a problem hiding this comment.
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 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above
There was a problem hiding this 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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be removed?
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.