Skip to content

Commit 65563c7

Browse files
committed
Bump image to 1.10.1
Signed-off-by: JesseStutler <[email protected]>
1 parent dc1737d commit 65563c7

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

.github/workflows/code_verify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
make lint
3737
make verify
38-
make TAG=v1.10.0 generate-yaml
38+
make TAG=v1.10.1 generate-yaml
3939
make verify-generated-yaml
4040
make unit-test
4141
working-directory: ./src/github.com/${{ github.repository }}

.github/workflows/e2e_spark.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ jobs:
6161
- name: Build lastest volcano images
6262
run: |
6363
eval $(minikube docker-env)
64-
make TAG=v1.10.0 update-development-yaml
65-
make TAG=v1.10.0 images
64+
make TAG=v1.10.1 update-development-yaml
65+
make TAG=v1.10.1 images
6666
docker images | grep volcano
6767
cat ./installer/volcano-development.yaml | grep image:
6868
sed 's/imagePullPolicy: Always/imagePullPolicy: IfNotPresent/' ./installer/volcano-development.yaml | minikube kubectl -- replace --force -f -

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ CONTROLLER_GEN=$(shell which controller-gen)
195195
endif
196196

197197
update-development-yaml:
198-
make generate-yaml TAG=v1.10.0 RELEASE_DIR=installer
199-
mv installer/volcano-v1.10.0.yaml installer/volcano-development.yaml
198+
make generate-yaml TAG=v1.10.1 RELEASE_DIR=installer
199+
mv installer/volcano-v1.10.1.yaml installer/volcano-development.yaml
200200

201201
mod-download-go:
202202
@-GOFLAGS="-mod=readonly" find -name go.mod -execdir go mod download \;

Makefile.def

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
# If tag not explicitly set in users default to the git sha.
3-
TAG ?= v1.10.0
3+
TAG ?= v1.10.1
44
GitSHA=`git rev-parse HEAD`
55
Date=`date "+%Y-%m-%d %H:%M:%S"`
6-
RELEASE_VER=v1.10.0
6+
RELEASE_VER=v1.10.1
77
LD_FLAGS=" \
88
-X '${REPO_PATH}/pkg/version.GitSHA=${GitSHA}' \
99
-X '${REPO_PATH}/pkg/version.Built=${Date}' \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ This way is only available for x86_64 temporarily.
141141
If you want to get prometheus and grafana volcano dashboard after volcano installed, try following commands:
142142

143143
```bash
144-
make TAG=v1.10.0 generate-yaml
145-
kubectl create -f _output/release/volcano-monitoring-v1.10.0.yaml
144+
make TAG=v1.10.1 generate-yaml
145+
kubectl create -f _output/release/volcano-monitoring-v1.10.1.yaml
146146
```
147147

148148
## Kubernetes compatibility

hack/check-generated-yaml.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ set -o pipefail
2121
VK_ROOT=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/..
2222
export RELEASE_FOLDER=${VK_ROOT}/${RELEASE_DIR}
2323

24-
if ! diff ${VK_ROOT}/installer/volcano-development.yaml ${RELEASE_FOLDER}/volcano-v1.10.0.yaml ; then
24+
if ! diff ${VK_ROOT}/installer/volcano-development.yaml ${RELEASE_FOLDER}/volcano-v1.10.1.yaml ; then
2525
{
2626
echo
2727
echo "The Generated yaml is different from the one in installer/volcano-development.yaml"
28-
echo "please run 'make generate-yaml TAG=v1.10.0 RELEASE_DIR=installer \
29-
&& mv ${VK_ROOT}/installer/volcano-v1.10.0.yaml ${VK_ROOT}/installer/volcano-development.yaml' to update"
28+
echo "please run 'make generate-yaml TAG=v1.10.1 RELEASE_DIR=installer \
29+
&& mv ${VK_ROOT}/installer/volcano-v1.10.1.yaml ${VK_ROOT}/installer/volcano-development.yaml' to update"
3030
echo
3131
} >&2
3232
false

installer/helm/chart/volcano/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
description: A Helm chart for Volcano
33
name: volcano
4-
version: "1.10.0"
4+
version: "1.10.1"
55
appVersion: "0.1"
66
icon: https://raw.githubusercontent.com/volcano-sh/charts/master/docs/images/volcano-logo.png
77
home: https://volcano.sh

installer/helm/chart/volcano/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ basic:
77
scheduler_config_file: "config/volcano-scheduler.conf"
88
image_pull_secret: ""
99
image_pull_policy: "Always"
10-
image_tag_version: "v1.10.0"
10+
image_tag_version: "v1.10.1"
1111
admission_port: 8443
1212
image_registry: "docker.io"
1313
custom:

installer/volcano-development.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ spec:
147147
- --port=8443
148148
- -v=4
149149
- 2>&1
150-
image: docker.io/volcanosh/vc-webhook-manager:v1.10.0
150+
image: docker.io/volcanosh/vc-webhook-manager:v1.10.1
151151
imagePullPolicy: Always
152152
name: admission
153153
volumeMounts:
@@ -231,7 +231,7 @@ spec:
231231
restartPolicy: Never
232232
containers:
233233
- name: main
234-
image: docker.io/volcanosh/vc-webhook-manager:v1.10.0
234+
image: docker.io/volcanosh/vc-webhook-manager:v1.10.1
235235
imagePullPolicy: Always
236236
command: ["./gen-admission-secret.sh", "--service", "volcano-admission-service", "--namespace",
237237
"volcano-system", "--secret", "volcano-admission-secret"]
@@ -4352,7 +4352,7 @@ spec:
43524352
priorityClassName: system-cluster-critical
43534353
containers:
43544354
- name: volcano-controllers
4355-
image: docker.io/volcanosh/vc-controller-manager:v1.10.0
4355+
image: docker.io/volcanosh/vc-controller-manager:v1.10.1
43564356
args:
43574357
- --logtostderr
43584358
- --enable-healthz=true
@@ -4523,7 +4523,7 @@ spec:
45234523
priorityClassName: system-cluster-critical
45244524
containers:
45254525
- name: volcano-scheduler
4526-
image: docker.io/volcanosh/vc-scheduler:v1.10.0
4526+
image: docker.io/volcanosh/vc-scheduler:v1.10.1
45274527
args:
45284528
- --logtostderr
45294529
- --scheduler-conf=/volcano.scheduler/volcano-scheduler.conf

0 commit comments

Comments
 (0)