Skip to content

Instantly share code, notes, and snippets.

View ddgutierrezc's full-sized avatar

David Daniel Gutiérrez Calderón ddgutierrezc

View GitHub Profile
@Klerith
Klerith / client-gateway.ingress.yml
Created March 20, 2024 15:03
Ingress Ymls - Client Gateway y WebHook
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: tienda-ingress
spec:
rules:
- http:
paths:
- path: /*
pathType: ImplementationSpecific
@Klerith
Klerith / K8s.README.md
Last active June 7, 2025 15:07
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