Liveness Probe HTTPRequest is an element in Kubernetes that allows you to control the liveness of a counter in pods using HTTP. The component allows to query a specific endpoint in the container and infer whether the application is working correctly. In this article, I will list some common Kubernetes Liveness Probe and httpGet settings. […]
What is docker-compose? Docker-compose is a useful tool for orchestrating multi-container Docker applications. It allows you to run applications based on a YAML file. These files are a list of instructions specifying the parameters of the applications to be launched. In our example, we will run two containers – a MySQL database and a basic […]
Liveness Probe TCP Socket is a part of Kubernetes, thanks to which you can control the health of the pods. If it is possible to open in the container, the specified port of the container can be considered healthy, otherwise, the status failure will be returned. In this article, I will show you an example […]
Dockerfile – introduction According to Docker’s official documentation, Dockerfile is a text file that contains all commands, in order, needed to build a given image. It defines: source image, list of commands executed while creating the image, list of commands to automatic run, open network port, volumes with databases. Syntax List of the most critical […]
Liveness Probe Command Exec is an element in Kubernetes, thanks to which you can control the state of life of a counter in Pods using command inside containers. This option allows us to check, for example, the content of files, the existence of files and other options (available from the command level) that can give us information about the correct […]
Liveness Probe HTTPRequest is an element in Kubernetes, thanks to which you can control the state of life of a counter in Pods using the HTTP protocol. The component allows you to send queries to a given endpoint in the container and infer whether the application is working correctly. In this article, I will list some common settings of Kubernetes Liveness Probe and httpGet options. […]