This is one single repo that contains a NodeJs application showing "Hello World" from a Mysql Database.
It uses Github Actions to build and push a Docker image to Docker Hub and updates kustomize yaml file with the new image tag.
Two Actions secrets needed to be created in the repo in order push images to Docker Hub:
DOCKER_USERNAME
: docker hub usernameDOCKER_TOKEN
: docker hub token
Argo CD is watching the kustomize file and updates the resource on 2 Kubernetes Clusters: Dev and Prod in which were deployed using Minikube.
Helm is used to deploying Argo CD and Mysql to the Dev Cluster plus another instance of Mysql to the Prod Cluster.
All resources are created inside the default
namespace.
These tools need to be present on the system before running the init script:
- Clone the repo :
git clone [email protected]:sadok-f/hello-world-cicd.git
- Run the init script:
cd hello-world-cicd
./init.sh
At the end of the script, the URL to Argo CD will be shown with its initial credentials.