Deman set, Job and CronJob, ConfigMap, Services and Ingress Controller by Harish
Deman set
- It is used to instantiate pod in every available node.
- Min and max node created using deman set is 1.
Job and CronJob’s
- Job is the resource which runs the task and monitor it to complete.
- Cron job is the resource which runs the task and repeat it on defined schedule.
ConfigMap
- Config map allows us to create and store the data as key-value pair.
- It will be accessible through out all the nodes.
Services
- Services are acts as a load balancer in the kubernetes cluster.
- We ClusterIP, NodePort, LoadBalancer services.
- CluserIp service is used when we need to access the pod with in the cluster.
- NodePort service is used when we need to access the pod out of the cluster.
- LoadBalancer service is used when we need to access the different or multiple pods.
Ingress Controller
- Ingress is the rules specified to the controller.
- Ingress controller is an Application Load balancer.
Top comments (0)