Kubernetes Deployment
Kubernetes deployment files are located in the deploy/k8s directory.
Example of Minikube deployment:
Copy all *.yaml.dist files in the
deploy/k8sdirectory to *.yaml files and replace all environment variables by their base64 encoded values.
echo -n "my-password" | base64
2. Copy postgresql sql.dist initialization script to SQL file and replace all credentials by their values. Push the sql file to the Minikube VM.
minikube cp svph-user-db.sql /home/docker/svph-user-db.sql
Start the deployment
kubectl apply -f deploy/k8s