Skip to content
This repository has been archived by the owner on May 1, 2020. It is now read-only.

Helpful Cluster Commands

Jonathan Beakley edited this page Jan 29, 2019 · 6 revisions

This page contains a number of commands that you mind find useful when working with Synopsys Operator.

To list images in a namespace:

kubectl get pods -n <namespace> -o yaml | grep image | grep -v Pull | grep -v imageID

To show if any containers are pending:

kubectl describe <pod> -n <namespace>

To show why a container won't schedule:

kubectl get pods -o yaml -n <namespace>