kubetest2: don't cache version markers

When uploading the version marker, make sure we turn off caching.

Otherwise we see jobs using older versions than they should be
running.
This commit is contained in:
Justin SB 2023-03-03 15:06:31 -05:00
parent 7a2a950043
commit 21a6fa550d
1 changed files with 3 additions and 1 deletions

View File

@ -53,7 +53,9 @@ func (d *deployer) PostTest(testErr error) error {
}
args := []string{
"gsutil", "cp",
"gsutil",
"-h", "Cache-Control:private, max-age=0, no-transform",
"cp",
tempSrc.Name(),
d.PublishVersionMarker,
}