We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 146e647 commit 5a350c8Copy full SHA for 5a350c8
.pipelines/templates/cilium-cli.yaml
@@ -1,10 +1,10 @@
1
steps:
2
- script: |
3
echo "install cilium CLI"
4
- if [[ ${CILIUM_VERSION_TAG_V1_5} =~ ^1.1[1-3].[0-9]{1,2} ]]; then
+ if [[ ${CILIUM_VERSION_TAG_V1_5#v} =~ ^1.1[1-3].[0-9]{1,2}-[0-9]{1,6} ]]; then
5
echo "Cilium Agent Version ${BASH_REMATCH[0]}"
6
CILIUM_CLI_VERSION=$(curl -s https://raw.githubusercontent.com/cilium/cilium-cli/main/stable-v0.14.txt)
7
- elif [[ ${CILIUM_VERSION_TAG_V1_5} =~ ^1.14.[0-9]{1,2} ]]; then
+ elif [[ ${CILIUM_VERSION_TAG_V1_5#v} =~ ^1.1[1-4].[0-9]{1,2}-[0-9]{1,6} ]]; then
8
9
CILIUM_CLI_VERSION=v0.15.22
10
else
0 commit comments