1

I'm editing a script that calls the oc wait command with these parameters:

oc wait --for=condition=Ready pod --field-selector=status.phase!=Terminating -l app=foo --timeout=55s

The above command executes successfully, but I need to check for InvalidImageName in addition to Terminating in the --field-selector=status.phase option.

I've tried

oc wait --for=condition=Ready pod --field-selector=status.phase!=Terminating||InvalidImageName -l app=foo --timeout=55s

But that does not work.

What is the correct way to format this command?

wwillfred
  • 11
  • 1

0 Answers0