Install kubernetes. For the local cluster we can use Minikube.
minikube start
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
helm repo add stable https://charts.helm.sh/stable
helm repo update
docker build -t rferrandop/app-poc:latest .
docker push rferrandop/app-poc:latest