Kubernetes
Kubernetes (K8s) is an open-source system for automating deployment, scaling, and management of containerized applications.
For deploying nodes ,clusters and dockers I have used IBM cloud services
https://www.ibm.com/cloud since it was being used in my company
List of Commands which are used more frequently.
kubectl get pods //get all pods currently ruuning kubectl get pods | grep -i "name" //get all pods mathing with name kubectl get pods --sort-by=.metadata.creationTimestamp //sorted by creation time /*TO GET LOGS FROM THE POD */ kubectl logs (podname) // to get logs and stop monitoring kubectl logs (podname) > file.txt // to output to a file kubectl -n default logs -f podname //to monitor logs continuously /*TO GET CURRENT CONTEXT OF KUBERNETES */ kubectl config current-context
To know detailed description about the commands one can go the Kubernetes documentation page
https://kubernetes.io/docs/home/
https://kubernetes.io/