Kubernetes Flashcards

1
Q

Kubectl

A

manejar cluster de contenedores sobre una infraestructura de nodos distribuida) definicion_pods.yaml

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

kubectl apply -f

A

definicion_pods.yaml (modo declarativo)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

kubectl create -f

A

definicion_pods.yaml (modo imperativo)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

kubectl run

A

my-nginx –image=nginx –port=80 (creacion de un pod sin yaml)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

kubectl get pods

A

(pods que están ejecutandose)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

kubectl describe pod nombreDelPod

A

(info mas detallada del pod)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

kubectl get nodes

A

(nodos en el cluster)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

kubectl logs

A

my-nginx

How well did you know this?
1
Not at all
2
3
4
5
Perfectly