Skip to content

Commit f49f40a

Browse files
committed
fix: pass path to conformance retrieve results
Sonobouy once again changed the API in a way that breaks our tool. Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
1 parent 942c807 commit f49f40a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pkg/cluster/sonobuoy/product.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ var talos = product{
2222
Vendor: "Talos Systems",
2323
Name: "Talos",
2424
Version: version.Tag,
25-
WebsiteURL: "https://www.talos-systems.com",
25+
WebsiteURL: "https://www.siderolabs.com/",
2626
RepoURL: "https://github.com/talos-systems/talos",
2727
DocumentationURL: "https://www.talos.dev",
28-
ProductLogoURL: "https://www.talos-systems.com/images/TalosSystems_Horizontal_Logo_FullColor_RGB-for-site.svg",
28+
ProductLogoURL: "https://www.talos.dev/images/TalosSystems_Horizontal_Logo_FullColor_RGB-for-site.svg",
2929
Type: "installer",
3030
Description: "Talos is a modern Kubernetes-focused OS designed to be secure, immutable, and minimal.",
3131
}

pkg/cluster/sonobuoy/sonobuoy.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ func Run(ctx context.Context, cluster cluster.K8sProvider, options *Options) err
239239
if options.RetrieveResults {
240240
resultR, errCh, err := sclient.RetrieveResults(&client.RetrieveConfig{
241241
Namespace: config.DefaultNamespace,
242+
Path: config.AggregatorResultsPath,
242243
})
243244
if err != nil {
244245
return fmt.Errorf("error retrieving results: %w", err)

0 commit comments

Comments
 (0)