Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Starting a Ballista Cluster using Docker documentation is incorrect #1198

Open
milenkovicm opened this issue Mar 7, 2025 · 1 comment · May be fixed by #1204
Open

Starting a Ballista Cluster using Docker documentation is incorrect #1198

milenkovicm opened this issue Mar 7, 2025 · 1 comment · May be fixed by #1204
Labels
bug Something isn't working

Comments

@milenkovicm
Copy link
Contributor

Describe the bug

Documentation Starting a Ballista Cluster using Docker is incorrect, it references wrong docker containers and versions

To Reproduce

Just follow documentation

Expected behavior

Correct documentation how to use docker to deploy ballista, or removal of the documentation

Additional context

At the moment we release only standalone version, if we consider releasing other containers as well we may need to add object store support to make it useful

@milenkovicm milenkovicm added the bug Something isn't working label Mar 7, 2025
@milenkovicm
Copy link
Contributor Author

maybe we should move

docker:
name: Docker
needs: [linux-build-lib]
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Restore rust artifacts
uses: actions/download-artifact@v4
with:
name: rust-artifacts
path: target/release
- name: Build and push Docker image
run: |
echo "github user is $DOCKER_USER"
docker build -t arrow-ballista-standalone:latest -f dev/docker/ballista-standalone.Dockerfile .
export DOCKER_TAG="$(git describe --exact-match --tags $(git log -n1 --pretty='%h') || echo '')"
if [[ $DOCKER_TAG =~ ^[0-9\.]+-rc[0-9]+$ ]]
then
echo "publishing docker tag $DOCKER_TAG"
docker tag arrow-ballista-standalone:latest ghcr.io/apache/arrow-ballista-standalone:$DOCKER_TAG
docker login ghcr.io -u $DOCKER_USER -p "$DOCKER_PASS"
docker push ghcr.io/apache/arrow-ballista-standalone:$DOCKER_TAG
fi
env:
DOCKER_USER: ${{ github.actor }}
DOCKER_PASS: ${{ secrets.GITHUB_TOKEN }}

to docker.yaml

@milenkovicm milenkovicm changed the title Incorrect documentation for docker deployment 'Starting a Ballista Cluster using Docker' documentation is incorrect Mar 7, 2025
@milenkovicm milenkovicm changed the title 'Starting a Ballista Cluster using Docker' documentation is incorrect Starting a Ballista Cluster using Docker documentation is incorrect Mar 8, 2025
@milenkovicm milenkovicm linked a pull request Mar 12, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant