#!/bin/bash echo "=== STATUS DOS NÓS ===" kubectl get nodes echo -e "\n=== PODS NÃO SAUDÁVEIS ===" kubectl get pods -A | grep -vE 'Running|Completed' echo -e "\n=== EVENTOS RECENTES DE ERRO ===" kubectl get events -A --field-selector type=Warning