Somewhere, Something Incredible Is Waiting To Be Known !!!
(Move to ...)
Home
▼
Wednesday, 29 April 2020
k8s pod ??
›
A pod is the smallest object model that you can create and run. You can add labels to a pod to identify a subset to run operations on. When ...
Kubernetes resource model
›
Config maps: holds configuration data for pods to consume Daemon sets: ensures that each node in the cluster runs this pod Deployments: defi...
Sunday, 26 April 2020
Command to leave docker swarm
›
$ docker swarm leave --force
docker update the state of your service by using the command
›
docker service update
Update docker service with an updated number of replicas.
›
docker service update --replicas=5 --detach=true [servicename]
verify docker swarm node cluster
›
docker node ls
To add a worker to this docker swarm
›
docker swarm join \ --token **** \ 10.0.120.3:2377
‹
›
Home
View web version