Skip to content

Commit

Permalink
fix(cli): fix TRACETEST_DEV in k8s installer (#2395)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeepc authored and schoren committed Jun 5, 2023
1 parent 36cf8d1 commit f04e433
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cli/installer/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,10 @@ func installTracetestChart(conf configuration, ui cliUI.UI) {
cmd = append(cmd, "--set image.tag=latest")
}

if os.Getenv("TRACETEST_DEV") != "" {
cmd = append(cmd, "--set env.tracetestDev=true")
}

execCmd(helmCmd(conf, cmd...), ui)
}

Expand Down

0 comments on commit f04e433

Please sign in to comment.