mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
cad6707071
Use a qualified image name, including the registry where it should come
from. This makes it possible to pull the image from the right location,
and consume it in CI jobs without trying to pull again.
Signed-off-by: Niels de Vos <ndevos@redhat.com>
(cherry picked from commit bdf8fe7f93
)
47 lines
1.1 KiB
Bash
47 lines
1.1 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.
|
|
#
|
|
|
|
# Ceph version to use
|
|
BASE_IMAGE=docker.io/ceph/ceph:v15
|
|
CEPH_VERSION=nautilus
|
|
|
|
# standard Golang options
|
|
GOLANG_VERSION=1.13.9
|
|
GO111MODULE=on
|
|
|
|
# static checks and linters
|
|
GOLANGCI_VERSION=v1.27.0
|
|
GOSEC_VERSION=v2.3.0
|
|
|
|
# "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.14.1
|
|
VM_DRIVER=none
|
|
CHANGE_MINIKUBE_NONE_USER=true
|
|
|
|
# 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=60m
|
|
DEPLOY_TIMEOUT=10
|
|
UPGRADE_VERSION=v3.0.0
|
|
|
|
# This var will be used by CentOS CI to build the image
|
|
CSI_IMAGE_VERSION=v3.1-canary
|