Blog: SinghSpeak.com/blog/kubernetes-development-ci-cd-with-skaffold
pip install -r requirements
If you are working with Minikube and want to try this locally run the following before building the images:
eval $(minikube docker-env)
docker build -t background-image ./background --network=host
docker build -t frontend-image ./frontend --network=host
If you're not using minikube publish these images to a docker registry and update the manifest files (k8s/backend-deployment.yaml and k8s/frontend-deployment.yaml and ) to include the image.
kubectl apply -f k8s/frontend-deployment.yaml
kubectl apply -f k8s/backend-deployment.yaml
After you deploy the services, run the following command to get the URL.
minikube service frontend-service