Category: Kubernetes, yaml

First, you need to have Docker installed on your computer so that it will make this process easy for you. You can create your Node.js app according to your preferences, and if you’ve already created node app, you can use it for this tutorial.

You can use any container registry to store your docker image and you should set its’ path to this configuration file. Also, if you’re a beginner in Kubernetes, you can use Docker Hub as your container registry which is free and push your Docker image to it.

Once your login succeeded, you can tag your Docker image and push it to the Docker Hub using docker tag & docker push commands.

Related Articles