K8service

kubernetes

How to use Jobs In Kubernetes

Reading Time: 4 minutes Introduction Jobs In Kubernetes is like other resources but allows you to run a pod whose container isn’t restarted when the process running inside finishes successfully. Once it does, the pod is considered complete. Job resource is controlled by a job controller, which supervises pods for carrying out certain tasks. How does it work? Jobs are managed by a job controller and the controller is Continue Reading

Understanding Services in Kubernetes with Examples!

Reading Time: 4 minutes What is Service? Service is an abstraction level that Kubernetes uses to make a deployed application accessible from the internal and external of the cluster. Think time… Imagine that, you have been asked to deploy a web app How front-end web app is exposed to the outside world ? In what way will we connect front-end with back-end and database? How do we resolve Pod IP Continue Reading