File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
content/es/docs/concepts/workloads/controllers Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ Esto es útil para futuras introspecciones, por ejemplo para comprobar qué coma
83
83
84
84
A continuación, ejecuta el comando ` kubectl get deployments ` . La salida debe ser parecida a la siguiente:
85
85
86
- ``` shell
86
+ ```
87
87
NAME READY UP-TO-DATE AVAILABLE AGE
88
88
nginx-deployment 3/3 3 3 1s
89
89
```
@@ -126,7 +126,7 @@ deployment "nginx-deployment" successfully rolled out
126
126
127
127
Ejecuta de nuevo el comando ` kubectl get deployments ` unos segundos más tarde:
128
128
129
- ``` shell
129
+ ```
130
130
NAME READY UP-TO-DATE AVAILABLE AGE
131
131
nginx-deployment 3/3 3 3 18s
132
132
```
@@ -136,7 +136,7 @@ la última plantilla Pod) y están disponibles (el estado del Pod tiene el valor
136
136
137
137
Para ver el ReplicaSet (` rs ` ) creado por el Deployment, ejecuta el comando ` kubectl get rs ` :
138
138
139
- ``` shell
139
+ ```
140
140
NAME DESIRED CURRENT READY AGE
141
141
nginx-deployment-75675f5897 3 3 3 18s
142
142
```
@@ -146,7 +146,7 @@ genera de forma aleatoria y usa el pod-template-hash como semilla.
146
146
147
147
Para ver las etiquetas generadas automáticamente en cada pod, ejecuta el comando ` kubectl get pods --show-labels ` . Se devuelve la siguiente salida:
148
148
149
- ``` shell
149
+ ```
150
150
NAME READY STATUS RESTARTS AGE LABELS
151
151
nginx-deployment-75675f5897-7ci7o 1/1 Running 0 18s app=nginx,pod-template-hash=75675f5897
152
152
nginx-deployment-75675f5897-kzszj 1/1 Running 0 18s app=nginx,pod-template-hash=75675f5897
You can’t perform that action at this time.
0 commit comments