You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IMS jobs translates to k8s jobs. Unfortunately, kubectl -n ims describe job <ims job name> won't show the pod it relates to. There for to find our the pod related to an IMS job we need to filter pods in ims namespace by jobname label like:
$ kubectl -n ims get pods --selector=job-name=cray-ims-e8b8092a-5312-47d2-a434-8cf76e49f10e-create
NAME READY STATUS RESTARTS AGE
cray-ims-e8b8092a-5312-47d2-a434-8cf76e49f10e-create-v7bjs 0/2 Init:3/4 0 85m
Extend the manta log <job name> functionality so it can fetch the logs from an IMS job, the command does not know if the job name belongs to CFS session or an IMS job therefore it needs to search both
The text was updated successfully, but these errors were encountered:
IMS jobs translates to k8s jobs. Unfortunately,
kubectl -n ims describe job <ims job name>
won't show the pod it relates to. There for to find our the pod related to an IMS job we need to filter pods in ims namespace byjobname
label like:then fetch the logs
Extend the
manta log <job name>
functionality so it can fetch the logs from an IMS job, the command does not know if the job name belongs to CFS session or an IMS job therefore it needs to search bothThe text was updated successfully, but these errors were encountered: