#devops
Read more stories on Hashnode
Articles with this tag
A pod can be created using a YAML template $vim pod_definition.yml A simple pod_definition template in YAML is as follows: apiVersion: v1 kind:...
Containers are completely isolated run-time environments, for each component or an application. In a production environment, there will be multiple...
To get the version of Kubernetes running on the cluster: kubectl version To get the list of nodes: kubectl get nodes To get the list of pods: ...
Let's say, we were developing an end-to-end application. The technologies used were: WebServer - Node JS Database - Mongo DB Messaging -...
Kubernetes Components:- Pod:- Smallest unit of Kubernetes. Node:- Virtual/Physical Machines. Service:- Static IP address that can be linked to the...
An Opensource container orchestration tool developed by Google. Manages containerized applications in different deployment environments. Why...