Skip to content

Commit

Permalink
fix: pass path to conformance retrieve results
Browse files Browse the repository at this point in the history
Sonobouy once again changed the API in a way that breaks our tool.

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
(cherry picked from commit f49f40a)
  • Loading branch information
smira committed Jan 21, 2022
1 parent 4e2b32f commit c1c5d9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/cluster/sonobuoy/product.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ var talos = product{
Vendor: "Talos Systems",
Name: "Talos",
Version: version.Tag,
WebsiteURL: "https://www.talos-systems.com",
WebsiteURL: "https://www.siderolabs.com/",
RepoURL: "https://github.com/talos-systems/talos",
DocumentationURL: "https://www.talos.dev",
ProductLogoURL: "https://www.talos-systems.com/images/TalosSystems_Horizontal_Logo_FullColor_RGB-for-site.svg",
ProductLogoURL: "https://www.talos.dev/images/TalosSystems_Horizontal_Logo_FullColor_RGB-for-site.svg",
Type: "installer",
Description: "Talos is a modern Kubernetes-focused OS designed to be secure, immutable, and minimal.",
}
1 change: 1 addition & 0 deletions pkg/cluster/sonobuoy/sonobuoy.go
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ func Run(ctx context.Context, cluster cluster.K8sProvider, options *Options) err
if options.RetrieveResults {
resultR, errCh, err := sclient.RetrieveResults(&client.RetrieveConfig{
Namespace: config.DefaultNamespace,
Path: config.AggregatorResultsPath,
})
if err != nil {
return fmt.Errorf("error retrieving results: %w", err)
Expand Down

0 comments on commit c1c5d9e

Please sign in to comment.