mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
e7066798bb
This version is required to support k8s 1.24,
which is inturn required to test new sa token
behavior.
Signed-off-by: Rakshith R <rar@redhat.com>
(cherry picked from commit 7a00736b4f
)
63 lines
1.5 KiB
Bash
63 lines
1.5 KiB
Bash
#
|
|
# build.env
|
|
#
|
|
# Environment file used by scripts and tools. All (default) versions used for
|
|
# building, testing and deploying Ceph-CSI are listed here.
|
|
#
|
|
# The format should be source-able by shell scripts, but do not assume only
|
|
# shell scripts consume this file. Variables that reference variables may not
|
|
# get proporly expanded.
|
|
#
|
|
# cephcsi image version
|
|
CSI_IMAGE_VERSION=v3.6-canary
|
|
|
|
# Ceph version to use
|
|
BASE_IMAGE=quay.io/ceph/ceph:v17
|
|
CEPH_VERSION=quincy
|
|
|
|
# standard Golang options
|
|
GOLANG_VERSION=1.17.5
|
|
GO111MODULE=on
|
|
|
|
# commitlint version
|
|
COMMITLINT_VERSION=latest
|
|
|
|
# static checks and linters
|
|
GOLANGCI_VERSION=v1.43.0
|
|
|
|
# external snapshotter version
|
|
# Refer: https://github.com/kubernetes-csi/external-snapshotter/releases
|
|
SNAPSHOT_VERSION=v5.0.1
|
|
|
|
# "go test" configuration
|
|
# set to stdout or html to enable coverage reporting, disabled by default
|
|
#TEST_COVERAGE=html
|
|
#GO_COVER_DIR=_output/
|
|
|
|
# helm chart generation, testing and publishing
|
|
HELM_VERSION=v3.1.2
|
|
|
|
# minikube settings
|
|
MINIKUBE_VERSION=v1.26.0-beta.1
|
|
VM_DRIVER=none
|
|
CHANGE_MINIKUBE_NONE_USER=true
|
|
|
|
# Rook options
|
|
ROOK_VERSION=v1.8.2
|
|
# Provide ceph image path
|
|
ROOK_CEPH_CLUSTER_IMAGE=quay.io/ceph/ceph:v16
|
|
|
|
# CSI sidecar version
|
|
CSI_ATTACHER_VERSION=v3.4.0
|
|
CSI_SNAPSHOTTER_VERSION=v5.0.1
|
|
CSI_PROVISIONER_VERSION=v3.1.0
|
|
CSI_RESIZER_VERSION=v1.4.0
|
|
CSI_NODE_DRIVER_REGISTRAR_VERSION=v2.4.0
|
|
|
|
# e2e settings
|
|
# - enable CEPH_CSI_RUN_ALL_TESTS when running tests with if it has root
|
|
# permissions on the host
|
|
#CEPH_CSI_RUN_ALL_TESTS=true
|
|
E2E_TIMEOUT=120m
|
|
DEPLOY_TIMEOUT=10
|