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
|
2023-04-24 06:23:25 +00:00
|
|
|
GOLANG_VERSION=1.19.8
|
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-09-27 13:40:26 +00:00
|
|
|
SNAPSHOT_VERSION=v6.1.0
|
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/
|
|
|
|
|
2023-05-22 07:30:40 +00:00
|
|
|
# URL for the script to install Helm
|
|
|
|
HELM_SCRIPT=https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
|
|
|
|
|
2020-06-22 12:48:32 +00:00
|
|
|
# helm chart generation, testing and publishing
|
2022-10-14 14:59:09 +00:00
|
|
|
HELM_VERSION=v3.10.1
|
2020-06-22 13:20:33 +00:00
|
|
|
|
|
|
|
# minikube settings
|
2023-04-04 08:06:55 +00:00
|
|
|
MINIKUBE_VERSION=v1.30.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
|
2023-01-12 09:14:46 +00:00
|
|
|
ROOK_VERSION=v1.10.9
|
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-09-27 13:40:26 +00:00
|
|
|
CSI_SNAPSHOTTER_VERSION=v6.1.0
|
2022-09-14 08:38:55 +00:00
|
|
|
CSI_RESIZER_VERSION=v1.6.0
|
2022-09-27 13:40:26 +00:00
|
|
|
CSI_PROVISIONER_VERSION=v3.3.0
|
2022-12-08 07:08:19 +00:00
|
|
|
CSI_NODE_DRIVER_REGISTRAR_VERSION=v2.6.2
|
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
|