Skip to content

Commit

Permalink
Allow staging via krel for kubetest
Browse files Browse the repository at this point in the history
This adds a new `--use-krel` flag to kubetest to indicate that we want
to stage the sources directly via the API provided by k/release rather
than the deprecated push-build.sh script (lives in k/release, too).

The idea is to add another job later on for testing this flag on a non
critical Kubernetes build+push job (should live in sig-release).

Signed-off-by: Sascha Grunert <[email protected]>
  • Loading branch information
saschagrunert committed Oct 14, 2020
1 parent f0efae8 commit a2315ff
Show file tree
Hide file tree
Showing 6 changed files with 655 additions and 116 deletions.
30 changes: 16 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ replace github.com/golang/lint => golang.org/x/lint v0.0.0-20190301231843-5614ed
replace (
cloud.google.com/go/pubsub => cloud.google.com/go/pubsub v1.3.1
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.2.0+incompatible
github.com/GoogleCloudPlatform/testgrid => github.com/GoogleCloudPlatform/testgrid v0.0.13
github.com/docker/docker => github.com/docker/docker v1.4.2-0.20200203170920-46ec8731fbce
golang.org/x/lint => golang.org/x/lint v0.0.0-20190409202823-959b441ac422
gopkg.in/yaml.v3 => gopkg.in/yaml.v3 v3.0.0-20190709130402-674ba3eaed22
k8s.io/api => k8s.io/api v0.18.6
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.18.6
k8s.io/apimachinery => k8s.io/apimachinery v0.18.6
Expand All @@ -23,12 +25,12 @@ replace (

require (
cloud.google.com/go/pubsub v1.4.0
cloud.google.com/go/storage v1.10.0
cloud.google.com/go/storage v1.12.0
github.com/Azure/azure-sdk-for-go v42.3.0+incompatible
github.com/Azure/azure-storage-blob-go v0.8.0
github.com/Azure/go-autorest/autorest v0.10.2
github.com/Azure/go-autorest/autorest/adal v0.8.3
github.com/GoogleCloudPlatform/testgrid v0.0.13
github.com/GoogleCloudPlatform/testgrid v0.0.22
github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46
github.com/andygrunwald/go-gerrit v0.0.0-20190120104749-174420ebee6c
github.com/andygrunwald/go-jira v1.12.0
Expand All @@ -47,11 +49,11 @@ require (
github.com/go-openapi/spec v0.19.6
github.com/go-test/deep v1.0.4
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
github.com/golang/mock v1.4.3
github.com/golang/mock v1.4.4
github.com/gomodule/redigo v1.7.0
github.com/google/go-cmp v0.5.0
github.com/google/go-cmp v0.5.2
github.com/google/go-github v17.0.0+incompatible
github.com/google/uuid v1.1.1
github.com/google/uuid v1.1.2
github.com/gorilla/csrf v1.6.2
github.com/gorilla/mux v1.7.4
github.com/gorilla/securecookie v1.1.1
Expand All @@ -60,7 +62,7 @@ require (
github.com/hashicorp/go-retryablehttp v0.6.6
github.com/influxdata/influxdb v0.0.0-20161215172503-049f9b42e9a5
github.com/jinzhu/gorm v1.9.12
github.com/klauspost/pgzip v1.2.1
github.com/klauspost/pgzip v1.2.5
github.com/mattn/go-zglob v0.0.2
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
github.com/pelletier/go-toml v1.8.0
Expand All @@ -71,31 +73,31 @@ require (
github.com/prometheus/common v0.9.1
github.com/satori/go.uuid v1.2.0
github.com/shurcooL/githubv4 v0.0.0-20191102174205-af46314aec7b
github.com/sirupsen/logrus v1.6.0
github.com/sirupsen/logrus v1.7.0
github.com/spf13/cobra v1.0.0
github.com/spf13/pflag v1.0.5
github.com/tektoncd/pipeline v0.13.1-0.20200625065359-44f22a067b75
go.uber.org/zap v1.15.0
gocloud.dev v0.19.0
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
golang.org/x/lint v0.0.0-20200302205851-738671d3881b
golang.org/x/net v0.0.0-20200707034311-ab3426394381
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
golang.org/x/net v0.0.0-20200930145003-4acb6c075d10
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
golang.org/x/tools v0.0.0-20200709181711-e327e1019dfe
google.golang.org/api v0.29.0
google.golang.org/genproto v0.0.0-20200709005830-7a2ca40e9dc3 // indirect
golang.org/x/tools v0.0.0-20200918232735-d647fc253266
google.golang.org/api v0.32.0
gopkg.in/fsnotify.v1 v1.4.7
gopkg.in/robfig/cron.v2 v2.0.0-20150107220207-be2e0b0deed5
gopkg.in/yaml.v3 v3.0.0-20190709130402-674ba3eaed22
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
k8s.io/api v0.18.7-rc.0
k8s.io/apimachinery v0.18.7-rc.0
k8s.io/client-go v11.0.1-0.20190805182717-6502b5e7b1b5+incompatible
k8s.io/code-generator v0.18.6
k8s.io/klog v1.0.0
k8s.io/klog/v2 v2.0.0
k8s.io/utils v0.0.0-20200603063816-c1c6865ac451
k8s.io/release v0.4.3-0.20201014034554-3e6255b8b86d
k8s.io/utils v0.0.0-20200912215256-4140de9c8800
knative.dev/pkg v0.0.0-20200711004937-22502028e31a
mvdan.cc/xurls/v2 v2.0.0
sigs.k8s.io/boskos v0.0.0-20200617235605-f289ba6555ba
Expand Down
Loading

0 comments on commit a2315ff

Please sign in to comment.