Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion mantle/kola/tests/ignition/kdump.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,15 @@ func init() {
Tags: []string{"kdump", kola.SkipBaseChecksTag, kola.NeedsInternetTag},
Platforms: []string{"qemu"},
})
// Add tag "reprovision" to run serially to avoid NFS port conflicts.
// This is hack until a better solution exists.
// See https://github.com/coreos/coreos-assembler/issues/4117#issuecomment-3495048106
register.RegisterTest(&register.Test{
Run: kdumpNFSTest,
ClusterSize: 0,
Name: `kdump.crash.nfs`,
Description: "Verifies kdump logs are exported to NFS destination",
Tags: []string{"kdump", kola.SkipBaseChecksTag, kola.NeedsInternetTag},
Tags: []string{"kdump", kola.SkipBaseChecksTag, kola.NeedsInternetTag, "reprovision"},
Platforms: []string{"qemu"},
})
}
Expand Down
7 changes: 5 additions & 2 deletions mantle/kola/tests/ostree/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,17 @@ systemd:
enabled: true`)

func init() {
// See https://github.com/ostreedev/ostree/pull/2968
// Add tag "reprovision" to run serially to avoid NFS port conflicts.
// This is hack until a better solution exists.
// See https://github.com/coreos/coreos-assembler/issues/4117#issuecomment-3495048106
register.RegisterTest(&register.Test{
// See https://github.com/ostreedev/ostree/pull/2968
Run: ostreeSyncTest,
ClusterSize: 0,
Name: "ostree.sync",
Description: "Verify ostree can sync the filesystem with disconnected the NFS volume.",
Distros: []string{"rhcos"},
Tags: []string{"ostree", kola.SkipBaseChecksTag, kola.NeedsInternetTag},
Tags: []string{"ostree", kola.SkipBaseChecksTag, kola.NeedsInternetTag, "reprovision"},
})
}

Expand Down
Loading