Helm Chart for installing YataiService on Kubernetes
- Kubernetes 1.16+
- Helm 3+
Make sure you have a local k8s cluster running before developing the chart. One can use minikube
Install Helm dependencies:
$ helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx && helm dependency build .
Lint helm after making changes to the chart:
$ helm lint .
Dry-run helm installation to test out development:
$ helm install -f values/postgres.yaml --dry-run --debug yatai-service .
Install the helm charts:
$ helm install -f values/postgres.yaml yatai-service .
Uninstall the charts:
$ helm uninstall yatai-service