mirror of
https://github.com/containers/podman.git
synced 2025-11-01 22:32:50 +08:00
Create pkg/machine/ignition package
Moves all of the ignitionfiles out of the `machine` package and into its own called `ignition`. This required `VMType` to get moved out of the `machine` package and into the `define` package in order to prevent a circular dependency. Signed-off-by: Jake Correnti <jakecorrenti+github@proton.me>
This commit is contained in:
@ -3,7 +3,7 @@ package e2e_test
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/containers/podman/v4/pkg/machine"
|
||||
"github.com/containers/podman/v4/pkg/machine/define"
|
||||
. "github.com/onsi/ginkgo/v2"
|
||||
. "github.com/onsi/gomega"
|
||||
. "github.com/onsi/gomega/gexec"
|
||||
@ -24,7 +24,7 @@ var _ = Describe("podman machine proxy settings propagation", func() {
|
||||
|
||||
It("ssh to running machine and check proxy settings", func() {
|
||||
// https://github.com/containers/podman/issues/20129
|
||||
if testProvider.VMType() == machine.HyperVVirt {
|
||||
if testProvider.VMType() == define.HyperVVirt {
|
||||
Skip("proxy settings not yet supported")
|
||||
}
|
||||
name := randomString()
|
||||
|
||||
Reference in New Issue
Block a user