Merge pull request #24560 from openshift-cherrypick-robot/cherry-pick-24321-to-v5.3

[v5.3] Fix for podman machine init not creating necessary JSON file when an ignition-path is passed
This commit is contained in:
openshift-merge-bot[bot]
2024-11-14 13:07:02 +00:00
committed by GitHub
3 changed files with 61 additions and 8 deletions

View File

@ -90,6 +90,11 @@ func (i *initMachine) buildCmd(m *machineTestBuilder) []string {
if strings.Contains(session.errorToString(), "VM does not exist") {
return
}
// FIXME:#24344 work-around for custom ignition removal
if strings.Contains(session.errorToString(), "failed to remove machines files: unable to find connection named") {
return
}
}
Expect(session).To(Exit(0))
})

View File

@ -224,6 +224,50 @@ var _ = Describe("podman machine init", func() {
Expect(sshSession.outputToString()).To(ContainSubstring("example"))
})
It("machine init with ignition path", func() {
skipIfWSL("Ignition is not compatible with WSL machines since they are not based on Fedora CoreOS")
tmpDir, err := os.MkdirTemp("", "")
defer func() { _ = utils.GuardedRemoveAll(tmpDir) }()
Expect(err).ToNot(HaveOccurred())
tmpFile, err := os.CreateTemp(tmpDir, "test-ignition-*.ign")
Expect(err).ToNot(HaveOccurred())
mockIgnitionContent := `{"ignition":{"version":"3.4.0"},"passwd":{"users":[{"name":"core"}]}}`
_, err = tmpFile.WriteString(mockIgnitionContent)
Expect(err).ToNot(HaveOccurred())
err = tmpFile.Close()
Expect(err).ToNot(HaveOccurred())
name := randomString()
i := new(initMachine)
session, err := mb.setName(name).setCmd(i.withImage(mb.imagePath).withIgnitionPath(tmpFile.Name())).run()
Expect(err).ToNot(HaveOccurred())
Expect(session).To(Exit(0))
configDir := filepath.Join(testDir, ".config", "containers", "podman", "machine", testProvider.VMType().String())
// test that all required machine files are created
fileExtensions := []string{".lock", ".json", ".ign"}
for _, ext := range fileExtensions {
filename := filepath.Join(configDir, fmt.Sprintf("%s%s", name, ext))
_, err := os.Stat(filename)
Expect(err).ToNot(HaveOccurred(), fmt.Sprintf("file %v does not exist", filename))
}
// enforce that the raw ignition is copied over verbatim
createdIgn := filepath.Join(configDir, fmt.Sprintf("%s%s", name, ".ign"))
contentWanted, err := os.ReadFile(tmpFile.Name())
Expect(err).ToNot(HaveOccurred())
contentGot, err := os.ReadFile(createdIgn)
Expect(err).ToNot(HaveOccurred())
Expect(contentWanted).To(Equal(contentGot), "The ignition file provided and the ignition file created do not match")
})
It("machine init rootless docker.sock check", func() {
i := initMachine{}
name := randomString()

View File

@ -196,12 +196,15 @@ func Init(opts machineDefine.InitOptions, mp vmconfigs.VMProvider) error {
// copy it into the conf dir
if len(opts.IgnitionPath) > 0 {
err = ignBuilder.BuildWithIgnitionFile(opts.IgnitionPath)
return err
}
err = ignBuilder.GenerateIgnitionConfig()
if err != nil {
return err
if err != nil {
return err
}
} else {
err = ignBuilder.GenerateIgnitionConfig()
if err != nil {
return err
}
}
readyIgnOpts, err := mp.PrepareIgnition(mc, &ignBuilder)
@ -245,9 +248,10 @@ func Init(opts machineDefine.InitOptions, mp vmconfigs.VMProvider) error {
return err
}
err = ignBuilder.Build()
if err != nil {
return err
if len(opts.IgnitionPath) == 0 {
if err := ignBuilder.Build(); err != nil {
return err
}
}
return mc.Write()