mirror of https://github.com/knative/caching.git
upgrade to latest dependencies (#437)
bumping knative.dev/pkg bbe0bb3...4048853: > 4048853 Drop master references to knative repos (# 2050) > c326b70 Add RunAndSyncInformers helper that makes sure informers are synced in tests (# 2055) > 9eeb66f Update common github actions (# 2056) Signed-off-by: Knative Automation <automation@knative.team>
This commit is contained in:
parent
9dc5ceb7b9
commit
4b366c7a9f
2
go.mod
2
go.mod
|
@ -18,5 +18,5 @@ require (
|
|||
k8s.io/code-generator v0.19.7
|
||||
k8s.io/kube-openapi v0.0.0-20200805222855-6aeccd4b50c6
|
||||
knative.dev/hack v0.0.0-20210309141825-9b73a256fd9a
|
||||
knative.dev/pkg v0.0.0-20210310173525-bbe0bb3eb1e0
|
||||
knative.dev/pkg v0.0.0-20210311174826-40488532be3f
|
||||
)
|
||||
|
|
4
go.sum
4
go.sum
|
@ -1188,8 +1188,8 @@ k8s.io/utils v0.0.0-20200729134348-d5654de09c73 h1:uJmqzgNWG7XyClnU/mLPBWwfKKF1K
|
|||
k8s.io/utils v0.0.0-20200729134348-d5654de09c73/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
|
||||
knative.dev/hack v0.0.0-20210309141825-9b73a256fd9a h1:0UGKyvFzY1Czu0lP9+0IrJhwtKe2oNLI2GYa7MIQ5c0=
|
||||
knative.dev/hack v0.0.0-20210309141825-9b73a256fd9a/go.mod h1:PHt8x8yX5Z9pPquBEfIj0X66f8iWkWfR0S/sarACJrI=
|
||||
knative.dev/pkg v0.0.0-20210310173525-bbe0bb3eb1e0 h1:j1YS+xEsmRLnhmrSwr6Skg3xsJcQpUGFzkoGtAaBx6I=
|
||||
knative.dev/pkg v0.0.0-20210310173525-bbe0bb3eb1e0/go.mod h1:pn/vClSL/iCW40TlFR91EhtmMmsyPQR2V2LavDAOOMs=
|
||||
knative.dev/pkg v0.0.0-20210311174826-40488532be3f h1:WBgC84Ldkyvt+25osB1pfrNXH9LKoXvr3BptANZWvIE=
|
||||
knative.dev/pkg v0.0.0-20210311174826-40488532be3f/go.mod h1:pn/vClSL/iCW40TlFR91EhtmMmsyPQR2V2LavDAOOMs=
|
||||
pgregory.net/rapid v0.3.3/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU=
|
||||
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
||||
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
||||
|
|
|
@ -73,7 +73,7 @@ the resulting JSON Patch can only contain fields relevant to the resource.
|
|||
|
||||
In Knative, we follow the Kubernetes API principles of using `conditions` as a
|
||||
key part of our resources’ status, but we go a step further in
|
||||
[defining particular conventions](https://github.com/knative/serving/blob/master/docs/spec/errors.md#error-conditions-and-reporting)
|
||||
[defining particular conventions](https://github.com/knative/serving/blob/main/docs/spec/errors.md#error-conditions-and-reporting)
|
||||
on how these are used.
|
||||
|
||||
To support this, we define:
|
||||
|
|
|
@ -41,7 +41,7 @@ const (
|
|||
DomainEnv = "METRICS_DOMAIN"
|
||||
|
||||
// The following keys are used to configure metrics reporting.
|
||||
// See https://github.com/knative/serving/blob/master/config/config-observability.yaml
|
||||
// See https://github.com/knative/serving/blob/main/config/config-observability.yaml
|
||||
// for details.
|
||||
allowStackdriverCustomMetricsKey = "metrics.allow-stackdriver-custom-metrics"
|
||||
collectorAddressKey = "metrics.opencensus-address"
|
||||
|
|
|
@ -81,7 +81,7 @@ type ExporterOptions struct {
|
|||
PrometheusHost string
|
||||
|
||||
// ConfigMap is the data from config map config-observability. Must be present.
|
||||
// See https://github.com/knative/serving/blob/master/config/config-observability.yaml
|
||||
// See https://github.com/knative/serving/blob/main/config/config-observability.yaml
|
||||
// for details.
|
||||
ConfigMap map[string]string
|
||||
|
||||
|
|
|
@ -658,7 +658,7 @@ k8s.io/utils/trace
|
|||
# knative.dev/hack v0.0.0-20210309141825-9b73a256fd9a
|
||||
## explicit
|
||||
knative.dev/hack
|
||||
# knative.dev/pkg v0.0.0-20210310173525-bbe0bb3eb1e0
|
||||
# knative.dev/pkg v0.0.0-20210311174826-40488532be3f
|
||||
## explicit
|
||||
knative.dev/pkg/apis
|
||||
knative.dev/pkg/apis/duck
|
||||
|
|
Loading…
Reference in New Issue