Event Commands¶
Commands for viewing Kubernetes events.
View Events¶
k8stool get events <resource-type> <resource-name> [flags]
k8stool get ev <resource-type> <resource-name> [flags] # Short alias
Flags¶
Flag | Short | Description | Default |
---|---|---|---|
--namespace |
-n |
Target namespace | default |
--type |
- | Filter by event type (Normal/Warning) | - |
Examples¶
View pod events:
View deployment events:
Filter by event type:
Output¶
The output includes:
- Last Seen (smart formatting)
- Type (color-coded)
- Normal: Green
- Warning: Yellow
- Reason
- Object
- Message
Example output:
LAST SEEN TYPE REASON OBJECT MESSAGE
2m Normal Scheduled pod/nginx-pod Successfully assigned default/nginx-pod to node-1
30s Warning Failed pod/nginx-pod Error: ImagePullBackOff
Related Commands¶
- Pods: List and manage pods
- Deployments: List and manage deployments
- Describe: Get detailed resource information