-
Notifications
You must be signed in to change notification settings - Fork 602
Expand file tree
/
Copy pathbuild.env
More file actions
79 lines (65 loc) · 2.15 KB
/
build.env
File metadata and controls
79 lines (65 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#
# 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=canary
# The ceph-csi version used as the starting point
# during upgrades. This version will be upgraded
# to the `CSI_IMAGE_VERSION` specified above.
CSI_UPGRADE_VERSION=v3.16.2
# ceph-csi-operator version used for e2e test
# TODO: use release tag which includes the bug fixes
# - https://github.com/ceph/ceph-csi-operator/pull/206
# - https://github.com/ceph/ceph-csi-operator/pull/207
# Till then use the latest tag instead of the release.
CEPH_CSI_OPERATOR_VERSION=latest
# Ceph version to use
BASE_IMAGE=quay.io/ceph/ceph:v20
CEPH_VERSION=tentacle
# standard Golang options
GOLANG_VERSION=1.24.6
GO111MODULE=on
# commitlint version
COMMITLINT_VERSION=latest
# static checks and linters
GOLANGCI_VERSION=v2.5.0
LYCHEE_VERSION=v0.23.0
# external snapshotter version
# Refer: https://github.com/kubernetes-csi/external-snapshotter/releases
SNAPSHOT_VERSION=v8.5.0
# "go test" configuration
# set to stdout or html to enable coverage reporting, disabled by default
#TEST_COVERAGE=html
#GO_COVER_DIR=_output/
# URL for the script to install Helm
HELM_SCRIPT=https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
# helm chart generation, testing and publishing
HELM_VERSION=v3.19.0
# minikube settings
MINIKUBE_VERSION=v1.38.1
VM_DRIVER=none
CHANGE_MINIKUBE_NONE_USER=true
# Rook options
ROOK_VERSION=v1.18.4
# Provide ceph image path
ROOK_CEPH_CLUSTER_IMAGE=quay.io/ceph/ceph:v19.2.2
# CSI sidecar version
K8S_IMAGE_REPO=registry.k8s.io/sig-storage
CSI_ATTACHER_VERSION=v4.11.0
CSI_SNAPSHOTTER_VERSION=v8.5.0
CSI_RESIZER_VERSION=v2.1.0
CSI_PROVISIONER_VERSION=v6.2.0
CSI_NODE_DRIVER_REGISTRAR_VERSION=v2.16.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=300m
DEPLOY_TIMEOUT=10