docs/es: add first couple of pages under the run-application section (#13743)

Signed-off-by: Alexander Brand <alexbrand09@gmail.com>
This commit is contained in:
Alexander Brand
2019-04-17 15:34:03 -04:00
committed by Kubernetes Prow Robot
parent 3f010d61c8
commit 13269b3165
6 changed files with 443 additions and 0 deletions
@@ -0,0 +1,19 @@
apiVersion: apps/v1 # Usa apps/v1beta2 para versiones anteriores a 1.9.0
kind: Deployment
metadata:
name: nginx-deployment
spec:
selector:
matchLabels:
app: nginx
replicas: 4 # Actualiza el número de réplicas de 2 a 4
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.8
ports:
- containerPort: 80