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

feat: add spark 3.5 #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
31 changes: 31 additions & 0 deletions .github/workflows/github_ci_spark_3_5.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build and Push Spark 3.5 Image

on:
workflow_dispatch:

jobs:
build_and_push_spark_image:
name: Build spark base image
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build, tag, and push image to Docker Hub
env:
REGISTRY: ${{ secrets.DOCKERHUB_USERNAME }}
REPOSITORY: spark
IMAGE_TAG: v3.5.0-hadoop3
run: |
cd $IMAGE_PATH
docker buildx create --name=container --driver=docker-container --use --bootstrap
./bin/docker-image-tool.sh -r $REGISTRY -t $IMAGE_TAG -p ./kubernetes/dockerfiles/spark/bindings/python/Dockerfile -X build
env:
IMAGE_PATH : "spark-3.5.0-bin-hadoop3"
568 changes: 568 additions & 0 deletions spark-3.5.0-bin-hadoop3/LICENSE

Large diffs are not rendered by default.

Loading