Skip to content

Instantly share code, notes, and snippets.

View alvarosego01's full-sized avatar
🏠
Working from home

Álvaro Segovia alvarosego01

🏠
Working from home
View GitHub Profile
@Klerith
Klerith / K8s.README.md
Last active June 25, 2024 05:45
Comandos que utilizaremos para configurar Kubernetes.

Helm commands

  • Crear configuración helm create <nombre>
  • Aplicar configuración inicial: helm install <nombre> .
  • Aplicar actualizaciones: helm upgrade <nombre> .

K8s commands

  • Obtener pods, deployments y services: kubectl get <pods | deployments | services>
  • Revisar todos pods: kubectl describe pods