diff --git a/cmd/wsm/download.go b/cmd/wsm/download.go index ace829c..58a3f7b 100644 --- a/cmd/wsm/download.go +++ b/cmd/wsm/download.go @@ -75,6 +75,11 @@ func DownloadCmd() *cobra.Command { panic(err) } + // Enable weave-trace in the chart values + spec.Values["weave-trace"] = map[string]interface{}{ + "install": true, + } + fmt.Println("Downloading wandb helm chart") wandbImgs, _ := downloadChartImages( spec.Chart.URL, diff --git a/cmd/wsm/list.go b/cmd/wsm/list.go index 2ecb454..8189790 100644 --- a/cmd/wsm/list.go +++ b/cmd/wsm/list.go @@ -141,6 +141,11 @@ func ListCmd() *cobra.Command { panic(err) } + // Enable weave-trace in the chart values + spec.Values["weave-trace"] = map[string]interface{}{ + "install": true, + } + wandbImgs, _ := downloadChartImages( spec.Chart.URL, spec.Chart.Name,