This repository will serve as a repo for planning, and as a testing environment for the dockerized frontend and backend
- Docker container engine
- Minikube local Kubernetes cluster
- Skaffold to handle the building of the containerized applications, pushing it to our Minikube cluster, and then deploying them
- Kubectl to interact with the cluster via Kubernetes API
Add user to docker group
sudo usermod -aG docker $USERSet Skaffold to use local cluster
skaffold config set --global local-cluster true
Run ./configure.sh which does these:
- Start Minikube cluster
minikube start --profile nextims- Points the shell to minikube's docker-daemon
minikube -p nextims docker-env- Start Skaffold in continuous development mode
skaffold dev