Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update operator version and gradle version used in builder
  • Loading branch information
jiangzho committed Apr 18, 2024
commit 8ec7d7317a239d4aa4456d71713caa12adae3c09
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#
#

FROM gradle:8.6-jdk17-alpine AS builder
FROM gradle:8.7-jdk17-alpine AS builder
ARG BASE_VERSION
WORKDIR /app
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions build-tools/helm/spark-kubernetes-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ apiVersion: v2
name: spark-kubernetes-operator
description: A Helm chart for the Apache Spark Kubernetes Operator
type: application
version: 1.0.0-alpha
appVersion: 1.0.0-alpha
version: 0.1.0
appVersion: 0.1.0
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#
#
group=org.apache.spark.kubernetes.operator
version=1.0.0-alpha
version=0.1.0
commonsLang3Version=3.12.0
commonsIOVersion=2.11.0
commonsConfigurationVersion=2.9.0
Expand Down
2 changes: 1 addition & 1 deletion spark-operator-docs/developer_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ If you are working on API (CRD) changes, remember to update CRD yaml in chart as
# Build a local container image which can be used for minikube.etc.
# For testing in remote k8s cluster, please also do `docker push` to make it available
# to the cluster / nodes
docker build --build-arg BASE_VERSION=1.0.0-alpha -t spark-kubernetes-operator:1.0.0-alpha .
docker build --build-arg BASE_VERSION=0.1.0 -t spark-kubernetes-operator:0.1.0 .
```

## Deploy Operator
Expand Down
4 changes: 2 additions & 2 deletions spark-operator-docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ cluster.

### Compatibility

- JDK11, 17, or 23
- JDK17, or 23
- Operator used fabric8 which assumes to be compatible with available k8s versions.
- Spark versions 3.4 and above

Expand All @@ -52,7 +52,7 @@ eval $(minikube docker-env)
# Build a local container image which can be used for minikube.etc.
# For testing in remote k8s cluster, please also do `docker push` to make it available
# to the cluster / nodes
docker build --build-arg BASE_VERSION=1.0.0-alpha -t spark-kubernetes-operator:1.0.0-alpha .
docker build --build-arg BASE_VERSION=0.1.0 -t spark-kubernetes-operator:0.1.0 .

# Generate CRD yaml and make it available for chart deployment
./gradlew spark-operator-api:copyGeneratedCRD

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we should try to mention some preliminaries in this local, such as installing helm and yq.

Expand Down