Complete the command to list all events in the default namespace.
kubectl get [1]The kubectl get events command lists all events in the current namespace, which is default if not specified.
Complete the command to describe a specific event named 'my-event'.
kubectl describe [1] my-eventThe kubectl describe event my-event command shows detailed information about the event named 'my-event'.
Fix the error in the command to get events from the 'kube-system' namespace.
kubectl get events -n [1]The -n kube-system flag specifies the 'kube-system' namespace to get events from that namespace.
Fill both blanks to filter events by reason 'Failed' in the 'default' namespace.
kubectl get events -n [1] --field-selector reason=[2]
Use -n default to specify the namespace and --field-selector reason=Failed to filter events with reason 'Failed'.
Fill all three blanks to create a JSON output of events filtered by type 'Warning' in 'kube-system' namespace.
kubectl get events -n [1] --field-selector type=[2] -o [3]
Use -n kube-system for the namespace, --field-selector type=Warning to filter warning events, and -o json to output in JSON format.