Hmmm any way other than ‘kubectl get events’' to verify which scheduler schedule . . .

Phill Jolliffe:
hmmm any way other than ‘kubectl get events’’ to verify which scheduler scheduled your pod?

Phill Jolliffe:

apiVersion: v1 
kind: Pod 
metadata:
  name: nginx 
spec:
  schedulerName: my-scheduler
  containers:
  - image: nginx
    name: nginx

Phill Jolliffe:
pod comes up

Phill Jolliffe:
but ‘k get events’ does not explicitly indicate which scheduler kicked in

Phill Jolliffe:
pod starts and is fine with above

Phill Jolliffe:
if i change schduler to mmmy-scheduler for example, the pod fails to start

Augusto:
k describe po POD_NAME

Augusto:
You should see it there.

unnivkn:
k get po -o yaml | grep -i schedule -A3