2020-06-22 10:19:37 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2020-12-09 07:04:58 +00:00
|
|
|
# cephcsi image version
|
|
|
|
CSI_IMAGE_VERSION=canary
|
2020-06-22 10:19:37 +00:00
|
|
|
|
2020-06-22 13:54:18 +00:00
|
|
|
# Ceph version to use
|
2022-03-07 12:30:41 +00:00
|
|
|
BASE_IMAGE=quay.io/ceph/ceph:v17
|
|
|
|
CEPH_VERSION=quincy
|
2020-06-22 13:54:18 +00:00
|
|
|
|
2020-06-22 10:19:37 +00:00
|
|
|
# standard Golang options
|
2022-08-03 06:08:10 +00:00
|
|
|
GOLANG_VERSION=1.18.5
|
2020-06-22 10:19:37 +00:00
|
|
|
GO111MODULE=on
|
2020-06-22 12:06:43 +00:00
|
|
|
|
2021-07-29 10:47:52 +00:00
|
|
|
# commitlint version
|
2021-08-04 12:21:16 +00:00
|
|
|
COMMITLINT_VERSION=latest
|
2021-07-29 10:47:52 +00:00
|
|
|
|
2020-06-22 12:06:43 +00:00
|
|
|
# static checks and linters
|
2022-08-03 06:08:10 +00:00
|
|
|
GOLANGCI_VERSION=v1.47.3
|
2020-06-22 12:48:32 +00:00
|
|
|
|
2020-10-05 10:31:34 +00:00
|
|
|
# external snapshotter version
|
|
|
|
# Refer: https://github.com/kubernetes-csi/external-snapshotter/releases
|
2022-05-31 07:33:33 +00:00
|
|
|
SNAPSHOT_VERSION=v6.0.1
|
2020-10-05 10:31:34 +00:00
|
|
|
|
2020-06-22 14:48:41 +00:00
|
|
|
# "go test" configuration
|
|
|
|
# set to stdout or html to enable coverage reporting, disabled by default
|
|
|
|
#TEST_COVERAGE=html
|
|
|
|
#GO_COVER_DIR=_output/
|
|
|
|
|
2020-06-22 12:48:32 +00:00
|
|
|
# helm chart generation, testing and publishing
|
2022-08-03 06:08:10 +00:00
|
|
|
HELM_VERSION=v3.9.2
|
2020-06-22 13:20:33 +00:00
|
|
|
|
|
|
|
# minikube settings
|
2022-08-03 06:03:59 +00:00
|
|
|
MINIKUBE_VERSION=v1.26.1
|
2020-06-22 13:20:33 +00:00
|
|
|
VM_DRIVER=none
|
|
|
|
CHANGE_MINIKUBE_NONE_USER=true
|
2020-06-24 06:15:58 +00:00
|
|
|
|
2020-11-19 12:18:24 +00:00
|
|
|
# Rook options
|
2022-08-03 06:08:10 +00:00
|
|
|
ROOK_VERSION=v1.9.8
|
2021-02-08 13:51:25 +00:00
|
|
|
# Provide ceph image path
|
2022-06-01 09:31:46 +00:00
|
|
|
ROOK_CEPH_CLUSTER_IMAGE=quay.io/ceph/ceph:v17
|
2020-11-19 12:18:24 +00:00
|
|
|
|
2021-08-16 04:58:46 +00:00
|
|
|
# CSI sidecar version
|
2022-09-20 10:37:14 +00:00
|
|
|
CSI_ATTACHER_VERSION=v4.0.0
|
2022-06-01 09:31:46 +00:00
|
|
|
CSI_SNAPSHOTTER_VERSION=v6.0.1
|
2022-09-14 08:38:55 +00:00
|
|
|
CSI_RESIZER_VERSION=v1.6.0
|
2022-06-15 07:14:49 +00:00
|
|
|
CSI_PROVISIONER_VERSION=v3.2.1
|
2022-05-17 08:00:07 +00:00
|
|
|
CSI_NODE_DRIVER_REGISTRAR_VERSION=v2.5.1
|
2021-08-16 04:58:46 +00:00
|
|
|
|
2020-06-24 06:15:58 +00:00
|
|
|
# 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
|
2022-05-24 09:48:22 +00:00
|
|
|
E2E_TIMEOUT=150m
|
2020-07-03 08:14:46 +00:00
|
|
|
DEPLOY_TIMEOUT=10
|