kubectl run [pod-name] -i --tty -n [namespace] --image [image] --image-pull-policy='IfNotPresent' --restart='Never' --rm -- [commands]kubectl run "$USER-ubuntu" -i --tty -n [namespace] --image=ubuntu:latest --image-pull-policy='IfNotPresent' --restart='Never' --rm -- bash -c 'apt update;/bin/bash'Comando para criar pod $USER-ubuntu pega o nome de usuário do seu sistema e concatena com ubuntu