andygrove commented on code in PR #322:
URL: https://github.com/apache/arrow-ballista/pull/322#discussion_r990668299


##########
helm/README.md:
##########
@@ -0,0 +1,48 @@
+# Ballista Helm Chart
+
+Helm is a convenient way to install applications into Kubernetes. It can work 
against any Kubeneretes environement,
+including all the major cloud providers. 
+For the purposes of this documentation, we will use Kubernetes-in-Docker 
(kind) to install locally.
+
+## Prerequisites
+
+```shell
+sudo apt install kubectl docker.io docker-compose
+sudo snap install go --classic
+go install sigs.k8s.io/kind@v0.16.0
+~/go/bin/kind create cluster
+```
+
+## Build
+
+```shell
+dev/build-ballista-docker.sh
+```
+
+## Deploy
+
+```shell
+# See https://iximiuz.com/en/posts/kubernetes-kind-load-docker-image/
+# 
https://kind.sigs.k8s.io/docs/user/quick-start/#loading-an-image-into-your-cluster
+~/go/bin/kind load docker-image ballista-scheduler:latest
+~/go/bin/kind load docker-image ballista-executor:latest
+
+cd helm/ballista
+helm repo add bitnami https://charts.bitnami.com/bitnami
+helm dep update 
+helm dep build 
+helm install ballista .
+```
+
+## Connect

Review Comment:
   ```suggestion
   ## Access Scheduler Web UI
   
   Run the following command to redirect localhost port 8080 to port 80 in the 
scheduler container and then view the scheduler UI at http://localhost:8080. 
   
   kubectl port-forward ballista-scheduler-0 8080:80
   
   ## Connect
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to