Micro-services development with Minikube and Skaffold
Sunday, November 1, 2020
While developing a multi-component application, like a micro-services backend, the release environments are quite different from the ones on our local machines. For example, during releases, the docker images are built and pushed to an artifactory then get deployed to a cloud kubernetes cluster. There are more steps going on in the CI/CD pipeline, accessing key vaults, applying configmaps, etc.
Scenario Services are sometimes dependent on each other. As in my scenario, we are using the API-LED architecture.…