Skip to content

Commit

Permalink
Log e2e instance test runner config (#8009)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdoherty4 authored Apr 19, 2024
1 parent f44c243 commit 08f65e8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion internal/test/e2e/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,14 @@ func RunTests(conf instanceRunConf, inventoryCatalogue map[string]*hardwareCatal
defer releaseTinkerbellHardware(&conf, hardwareCatalogue)
}

conf.Logger.Info("Creating runner instance", "cfg", conf)
conf.Logger.Info("Creating runner instance",
"instance_profile_name", conf.InstanceProfileName, "storage_bucket", conf.StorageBucket,
"parent_job_id", conf.ParentJobID, "regex", conf.Regex, "test_report_folder", conf.TestReportFolder,
"branch_name", conf.BranchName, "ip_pool", conf.IPPool.ToString(),
"hardware_count", conf.HardwareCount, "tinkerbell_airgapped_test", conf.TinkerbellAirgappedTest,
"bundles_override", conf.BundlesOverride, "test_runner_type", conf.TestRunnerType,
"cleanup_vms", conf.CleanupVMs)

instanceId, err := testRunner.createInstance(conf)
if err != nil {
return "", nil, err
Expand Down

0 comments on commit 08f65e8

Please sign in to comment.