Skip to content

Commit

Permalink
Merge pull request #3290 from Monokaix/1.8.2-release
Browse files Browse the repository at this point in the history
Bump image to v1.8.2
  • Loading branch information
volcano-sh-bot committed Jan 9, 2024
2 parents 71e072b + 77701a1 commit 6167390
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 471 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_verify.yaml
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
make lint
make verify
make TAG=v1.8.1 generate-yaml
make TAG=v1.8.2 generate-yaml
make verify-generated-yaml
make unit-test
working-directory: ./src/github.com/${{ github.repository }}
4 changes: 2 additions & 2 deletions .github/workflows/e2e_spark.yaml
Expand Up @@ -61,8 +61,8 @@ jobs:
- name: Build lastest volcano images
run: |
eval $(minikube docker-env)
make TAG=v1.8.1 update-development-yaml
make TAG=v1.8.1 images
make TAG=v1.8.2 update-development-yaml
make TAG=v1.8.2 images
docker images | grep volcano
cat ./installer/volcano-development.yaml | grep image:
minikube kubectl -- replace --force -f ./installer/volcano-development.yaml
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -200,5 +200,5 @@ CONTROLLER_GEN=$(shell which controller-gen)
endif

update-development-yaml:
make generate-yaml TAG=v1.8.1 RELEASE_DIR=installer
mv installer/volcano-v1.8.1.yaml installer/volcano-development.yaml
make generate-yaml TAG=v1.8.2 RELEASE_DIR=installer
mv installer/volcano-v1.8.2.yaml installer/volcano-development.yaml
4 changes: 2 additions & 2 deletions Makefile.def
@@ -1,9 +1,9 @@

# If tag not explicitly set in users default to the git sha.
TAG ?= v1.8.1
TAG ?= v1.8.2
GitSHA=`git rev-parse HEAD`
Date=`date "+%Y-%m-%d %H:%M:%S"`
RELEASE_VER=v1.8.1
RELEASE_VER=v1.8.2
LD_FLAGS=" \
-X '${REPO_PATH}/pkg/version.GitSHA=${GitSHA}' \
-X '${REPO_PATH}/pkg/version.Built=${Date}' \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -76,7 +76,7 @@ Note:
Install Volcano on an existing Kubernetes cluster. This way is both available for x86_64 and arm64 architecture.

```
kubectl apply -f https://raw.githubusercontent.com/volcano-sh/volcano/release-1.8.1/installer/volcano-development.yaml
kubectl apply -f https://raw.githubusercontent.com/volcano-sh/volcano/release-1.8/installer/volcano-development.yaml
```

Enjoy! Volcano will create the following resources in `volcano-system` namespace.
Expand Down Expand Up @@ -122,8 +122,8 @@ This way is only available for x86_64 temporarily.
If you want to get prometheus and grafana volcano dashboard after volcano installed, try following commands:

```bash
make TAG=v1.8.1 generate-yaml
kubectl create -f _output/release/volcano-monitoring-v1.8.1.yaml
make TAG=v1.8.2 generate-yaml
kubectl create -f _output/release/volcano-monitoring-v1.8.2.yaml
```

## Kubernetes compatibility
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -39,7 +39,7 @@ require (
sigs.k8s.io/controller-runtime v0.13.0
sigs.k8s.io/yaml v1.3.0
stathat.com/c/consistent v1.0.0
volcano.sh/apis v1.8.0-alpha.0.0.20231028020234-1a5aa81107d7
volcano.sh/apis v1.8.2
)

require (
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Expand Up @@ -1870,5 +1870,5 @@ sigs.k8s.io/yaml v1.3.0 h1:a2VclLzOGrwOHDiV8EfBGhvjHvP46CtW5j6POvhYGGo=
sigs.k8s.io/yaml v1.3.0/go.mod h1:GeOyir5tyXNByN85N/dRIT9es5UQNerPYEKK56eTBm8=
stathat.com/c/consistent v1.0.0 h1:ezyc51EGcRPJUxfHGSgJjWzJdj3NiMU9pNfLNGiXV0c=
stathat.com/c/consistent v1.0.0/go.mod h1:QkzMWzcbB+yQBL2AttO6sgsQS/JSTapcDISJalmCDS0=
volcano.sh/apis v1.8.0-alpha.0.0.20231028020234-1a5aa81107d7 h1:Meq/5hsE1nK9XFZrU5tLM29RjC2SfXpsfLWaKcRyGbE=
volcano.sh/apis v1.8.0-alpha.0.0.20231028020234-1a5aa81107d7/go.mod h1:h+xbUpkjfRaHjktAi8h+7JNnNahjwhRSgpN9FUUwNXQ=
volcano.sh/apis v1.8.2 h1:MJ1EXpdQeKG+XEhb/I3liWgMFzkgW3qCcj6qdhTuvfA=
volcano.sh/apis v1.8.2/go.mod h1:h+xbUpkjfRaHjktAi8h+7JNnNahjwhRSgpN9FUUwNXQ=
6 changes: 3 additions & 3 deletions hack/check-generated-yaml.sh
Expand Up @@ -21,12 +21,12 @@ set -o pipefail
VK_ROOT=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/..
export RELEASE_FOLDER=${VK_ROOT}/${RELEASE_DIR}

if ! diff ${VK_ROOT}/installer/volcano-development.yaml ${RELEASE_FOLDER}/volcano-v1.8.1.yaml ; then
if ! diff ${VK_ROOT}/installer/volcano-development.yaml ${RELEASE_FOLDER}/volcano-v1.8.2.yaml ; then
{
echo
echo "The Generated yaml is different from the one in installer/volcano-development.yaml"
echo "please run 'make generate-yaml TAG=v1.8.1 RELEASE_DIR=installer \
&& mv ${VK_ROOT}/installer/volcano-v1.8.1.yaml ${VK_ROOT}/installer/volcano-development.yaml' to update"
echo "please run 'make generate-yaml TAG=v1.8.2 RELEASE_DIR=installer \
&& mv ${VK_ROOT}/installer/volcano-v1.8.2.yaml ${VK_ROOT}/installer/volcano-development.yaml' to update"
echo
} >&2
false
Expand Down
2 changes: 1 addition & 1 deletion installer/helm/chart/volcano/values.yaml
Expand Up @@ -7,7 +7,7 @@ basic:
scheduler_config_file: "config/volcano-scheduler.conf"
image_pull_secret: ""
image_pull_policy: "IfNotPresent"
image_tag_version: "v1.8.1"
image_tag_version: "v1.8.2"
admission_port: 8443
custom:
metrics_enable: false
Expand Down
8 changes: 4 additions & 4 deletions installer/volcano-development.yaml
Expand Up @@ -150,7 +150,7 @@ spec:
- --port=8443
- -v=4
- 2>&1
image: volcanosh/vc-webhook-manager:v1.8.1
image: volcanosh/vc-webhook-manager:v1.8.2
imagePullPolicy: IfNotPresent
name: admission
volumeMounts:
Expand Down Expand Up @@ -185,7 +185,7 @@ spec:
restartPolicy: Never
containers:
- name: main
image: volcanosh/vc-webhook-manager:v1.8.1
image: volcanosh/vc-webhook-manager:v1.8.2
imagePullPolicy: IfNotPresent
command: ["./gen-admission-secret.sh", "--service", "volcano-admission-service", "--namespace",
"volcano-system", "--secret", "volcano-admission-secret"]
Expand Down Expand Up @@ -3923,7 +3923,7 @@ spec:
priorityClassName: system-cluster-critical
containers:
- name: volcano-controllers
image: volcanosh/vc-controller-manager:v1.8.1
image: volcanosh/vc-controller-manager:v1.8.2
args:
- --logtostderr
- --enable-healthz=true
Expand Down Expand Up @@ -4091,7 +4091,7 @@ spec:
priorityClassName: system-cluster-critical
containers:
- name: volcano-scheduler
image: volcanosh/vc-scheduler:v1.8.1
image: volcanosh/vc-scheduler:v1.8.2
args:
- --logtostderr
- --scheduler-conf=/volcano.scheduler/volcano-scheduler.conf
Expand Down
File renamed without changes.

0 comments on commit 6167390

Please sign in to comment.