andygrove commented on code in PR #322: URL: https://github.com/apache/arrow-ballista/pull/322#discussion_r990663931
########## 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/[email protected] +~/go/bin/kind create cluster +``` + +## Build + +```shell +dev/build-ballista-docker.sh Review Comment: This fails for me with: ``` ERROR: Version in "./docker-compose.yml" is unsupported. You might be seeing this error because you're using the wrong Compose file version. Either specify a supported version (e.g "2.2" or "3.3") and place your service definitions under the `services` key, or omit the `version` key and place your service definitions at the root of the file to use version 1. ``` Maybe we can downgrade to 3.3 unless there are specific features we need from newer versions? -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
