Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nfs-subdir-external-provisioner
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Rancher商店
nfs-subdir-external-provisioner
Commits
a0f195cc
Unverified
Commit
a0f195cc
authored
Oct 06, 2020
by
Kubernetes Prow Robot
Committed by
GitHub
Oct 06, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #106 from msau42/fix-canary
Only set staging registry when running canary job
parents
b3c65f9c
7100c120
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
prow.sh
prow.sh
+5
-1
No files found.
prow.sh
View file @
a0f195cc
...
@@ -212,7 +212,7 @@ configvar CSI_PROW_DRIVER_INSTALL "install_csi_driver" "name of the shell functi
...
@@ -212,7 +212,7 @@ configvar CSI_PROW_DRIVER_INSTALL "install_csi_driver" "name of the shell functi
configvar CSI_PROW_DRIVER_CANARY
"
${
CSI_PROW_HOSTPATH_CANARY
}
"
"driver image override for canary images"
configvar CSI_PROW_DRIVER_CANARY
"
${
CSI_PROW_HOSTPATH_CANARY
}
"
"driver image override for canary images"
# Image registry to use for canary images.
# Image registry to use for canary images.
# Only valid if CSI_PROW_DRIVER_CANARY
is set
.
# Only valid if CSI_PROW_DRIVER_CANARY
== "canary"
.
configvar CSI_PROW_DRIVER_CANARY_REGISTRY
"gcr.io/k8s-staging-sig-storage"
"registry for canary images"
configvar CSI_PROW_DRIVER_CANARY_REGISTRY
"gcr.io/k8s-staging-sig-storage"
"registry for canary images"
# The E2E testing can come from an arbitrary repo. The expectation is that
# The E2E testing can come from an arbitrary repo. The expectation is that
...
@@ -697,7 +697,11 @@ install_csi_driver () {
...
@@ -697,7 +697,11 @@ install_csi_driver () {
fi
fi
if
[
"
${
CSI_PROW_DRIVER_CANARY
}
"
!=
"stable"
]
;
then
if
[
"
${
CSI_PROW_DRIVER_CANARY
}
"
!=
"stable"
]
;
then
if
[
"
${
CSI_PROW_DRIVER_CANARY
}
"
==
"canary"
]
;
then
images
=
"
$images
IMAGE_TAG=
${
CSI_PROW_DRIVER_CANARY
}
IMAGE_REGISTRY=
${
CSI_PROW_DRIVER_CANARY_REGISTRY
}
"
images
=
"
$images
IMAGE_TAG=
${
CSI_PROW_DRIVER_CANARY
}
IMAGE_REGISTRY=
${
CSI_PROW_DRIVER_CANARY_REGISTRY
}
"
else
images
=
"
$images
IMAGE_TAG=
${
CSI_PROW_DRIVER_CANARY
}
"
fi
fi
fi
# Ignore: Double quote to prevent globbing and word splitting.
# Ignore: Double quote to prevent globbing and word splitting.
# It's intentional here for $images.
# It's intentional here for $images.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment