Skip to content
Closed
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -422,17 +422,21 @@ jobs:
uses: docker/setup-buildx-action@v3
with:
cache-binary: false
- name: Pull Spark image
run: |
docker pull apache/spark:3.5.5
- name: Build Kyuubi Docker Image
uses: docker/build-push-action@v6
with:
# passthrough CI into build container
build-args: |
CI=${CI}
MVN_ARG=--flink-provided --hive-provided
BASE_IMAGE=apache/spark:3.5.5
MVN_ARG=--spark-provided --flink-provided --hive-provided
context: .
file: build/Dockerfile.CI
load: true
tags: apache/kyuubi:latest
tags: apache/kyuubi:ci
- name: Cache Engine Archives
uses: ./.github/actions/cache-engine-archives
- name: Setup Minikube
Expand All @@ -442,9 +446,8 @@ jobs:
sudo install minikube-linux-amd64 /usr/local/bin/minikube
minikube start --cpus 2 --memory 4096 --kubernetes-version=${KUBERNETES_VERSION} --force
# https://minikube.sigs.k8s.io/docs/handbook/pushing/#7-loading-directly-to-in-cluster-container-runtime
minikube image load apache/kyuubi:latest
minikube image load apache/kyuubi:ci
# pre-install spark into minikube
docker pull apache/spark:3.5.5
minikube image load apache/spark:3.5.5
- name: kubectl pre-check
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.
#

apiVersio: v1
apiVersion: v1
kind: Pod
metadata:
name: driver
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
serviceAccountName: kyuubi
containers:
- name: kyuubi-server
image: apache/kyuubi:latest
image: apache/kyuubi:ci
imagePullPolicy: IfNotPresent
env:
- name: KYUUBI_JAVA_OPTS
Expand Down