When working with OpenShift via the CLI, it's very handy to be able to use jq to parse output, e.g.
oc get pods my-pod -o json | jq '.spec.containers[] | select(.name == "my-container")'
Currently, the web-terminal-tooling image doesn't contain jq.
In a similar vein, having yq available would be nice too, but installing yq depends on Python and may bloat image size too much.