You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Listar todos los pods
$ kubectl get pods --all-namespaces
# Pods de WUR
$ kubectl get pods --namespace wur
# Pods de Development para WUR
$ kubectl get pods --namespace wur --context development
# Listar todos los servicios
$ kubectl get services
Manejo de pods
# Listar pods
kubectl get pods --namespace wur --context staging
#Log de un Pod
kubectl logs service-amqp2salesforce-545f58bb7c-5n62h --namespace wur --context staging
#Log de un Pod Live
kubectl logs --follow service-amqp2salesforce-545f58bb7c-5n62h --namespace wur --context staging
# Describe del pod
kubectl describe pod service-amqp2salesforce-545f58bb7c-5n62h --namespace wur --context staging
Historico de deployemnts y Rollback
# Historico de deployment
kubectl rollout history deployment/app-backend
# Rollback a un deployment especifico
kubectl rollout undo deployment/app-backend --to-revision=2
Manejo de Cronjobs
# Listar los cronjobs
kubectl get cronjobs --namespace wur --context staging