We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8da3fdc commit 5021027Copy full SHA for 5021027
pkg/plugin/cmd.go
@@ -345,6 +345,7 @@ func (o *DebugOptions) Run() error {
345
agentPod = o.getAgentPod()
346
agentPod, err = o.launchPod(agentPod)
347
if err != nil {
348
+ fmt.Fprintf(o.Out, "the agentPod is not running, you should check the reason and delete the failed agentPod and retry.\n")
349
return err
350
}
351
@@ -356,6 +357,8 @@ func (o *DebugOptions) Run() error {
356
357
pod = copyAndStripPod(pod, containerName)
358
pod, err = o.launchPod(pod)
359
360
+ fmt.Fprintf(o.Out, "the ForkedPod is not running, you should check the reason and delete the failed ForkedPod and retry\n")
361
+ o.deleteAgent(agentPod)
362
363
364
0 commit comments