-
Notifications
You must be signed in to change notification settings - Fork 20
/
Soluciones.txt
40 lines (25 loc) · 1.46 KB
/
Soluciones.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Soluciones y Ejemplos:
Ejemplo 1:
kubectl create deployment kubernetes-bootcamp --image=jocatalin/kubernetes-bootcamp:v1
Ejemplo 2:
kubectl run --generator=run-pod/v1 -it curl --image=byrnedo/alpine-curl:0.1.7 --command -- /bin/sh
Ejemplo 3:
kubectl run kubernetes-bootcamp --image=jocatalin/kubernetes-bootcamp:v1 --port=8080 --replicas=2
Ejemplo 4:
kubectl set image deployment/kubernetes-bootcamp kubernetes-bootcamp=jocatalin/kubernetes-bootcamp:v2
Ejemplo 5:
kubectl create -f https://raw.githubusercontent.com/codeurjc/Curso-Kubernetes/master/Volumenes/pod-pvc.yaml
Ejercicio 1:
kubectl create -f https://raw.githubusercontent.com/codeurjc/Curso-Kubernetes/master/Ejercicio1/webgatos-minikube-deployment.yaml
Ejercicio 2:
kubectl scale deployment webgatos-deploy --replicas=2
Ejercicio 3:
kubectl create -f https://raw.githubusercontent.com/codeurjc/Curso-Kubernetes/master/Ejercicio3/mysql-service-without-pvc.yaml
kubectl create -f https://raw.githubusercontent.com/codeurjc/Curso-Kubernetes/master/Ejercicio3/java-mysql-minikube.yaml
Ejercicio 4:
kubectl create -f https://raw.githubusercontent.com/codeurjc/Curso-Kubernetes/master/Ejercicio4/mysql-service-with-pvc.yaml
kubectl create -f https://raw.githubusercontent.com/codeurjc/Curso-Kubernetes/master/Ejercicio4/java-mysql-minikube.yaml
Ejercicio 5:
https://github.com/codeurjc/Curso-Kubernetes/tree/master/ejemplo4/java-bd
Si clonamos el repo desde el directorio superior hacer
$ helm install --name java-bd ./java-bd