Skip to content

Commit 357071f

Browse files
committed
diagnostics: in-pod command now openshift-diagnostics
1 parent 8c71416 commit 357071f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/oc/admin/diagnostics/diagnostics/client/run_diagnostics_pod.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ func (d *DiagnosticPod) runDiagnosticPod(r types.DiagnosticResult) {
7272
{
7373
Name: "pod-diagnostics",
7474
Image: imageName,
75-
Command: []string{"openshift", "infra", "diagnostic-pod", "-l", strconv.Itoa(loglevel)},
75+
Command: []string{"openshift-diagnostics", "diagnostic-pod", "-l", strconv.Itoa(loglevel)},
7676
},
7777
},
7878
},

pkg/oc/admin/diagnostics/diagnostics/network/run_pod.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ func (d *NetworkDiagnostic) runNetworkDiagnostic() {
137137
// In Collection phase, results from each node are moved to the user machine where the CLI cmd is executed.
138138

139139
// TEST Phase: Run network diagnostic pod on all valid nodes in parallel
140-
command := fmt.Sprintf("openshift infra network-diagnostic-pod -l %d", loglevel)
140+
command := fmt.Sprintf("openshift-diagnostics network-diagnostic-pod -l %d", loglevel)
141141
if err := d.runNetworkPod(command); err != nil {
142142
d.res.Error("DNet2006", err, err.Error())
143143
return

0 commit comments

Comments
 (0)