-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathenv.sh
29 lines (21 loc) · 877 Bytes
/
env.sh
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
export INTERACTIVE=false
# The new version being defined, i.e.: 1.4.0
export NEW_VERSION="1.8.3"
# The current version to be used as a source for the new one, i.e.: 1.4.0-rc2
export CUR_VERSION="1.8.2"
# The latest released version to be replaced (non rc), i.e.: 1.3.0
export REPLACES_VERSION="1.8.2"
# The tag to be used for the skupper-router image
export SKUPPER_ROUTER_TAG="2.7.3"
# The tag to be used for the control plane images:
# site-controller, service-controller, config-sync, flow-collector
export SKUPPER_CONTROL_TAG="1.8.3"
# The tag to be used for the prometheus image
export PROMETHEUS_TAG="v2.42.0"
# The tag to be used for the oauth proxy image
export OAUTH_PROXY_TAG="4.14.0"
# Comma separated list of versions to be skipped (optional)
# example:
# SKIP_VERSIONS="1.4.0-rc2,1.4.0-rc3"
#unset SKIP_VERSIONS
#export SKIP_VERSIONS="1.4.0-rc2,1.4.0-rc3"