mirror of https://github.com/kubernetes/kops.git
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:
parent
7a2a950043
commit
21a6fa550d
|
|
@ -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,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue