mirror of https://github.com/knative/caching.git
upgrade to latest dependencies (#747)
bumping knative.dev/pkg dfad48e...300df43:%0A > 300df43 Eventing TLS: Added AddressableFromDestination method on the resolver (# 2717) Signed-off-by: Knative Automation <automation@knative.team>
This commit is contained in:
parent
e773a6225c
commit
d563a61633
2
go.mod
2
go.mod
|
@ -12,7 +12,7 @@ require (
|
|||
k8s.io/code-generator v0.25.4
|
||||
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1
|
||||
knative.dev/hack v0.0.0-20230417170854-f591fea109b3
|
||||
knative.dev/pkg v0.0.0-20230418073056-dfad48eaa5d0
|
||||
knative.dev/pkg v0.0.0-20230420071539-300df436f953
|
||||
)
|
||||
|
||||
require (
|
||||
|
|
4
go.sum
4
go.sum
|
@ -800,8 +800,8 @@ k8s.io/utils v0.0.0-20221108210102-8e77b1f39fe2 h1:GfD9OzL11kvZN5iArC6oTS7RTj7oJ
|
|||
k8s.io/utils v0.0.0-20221108210102-8e77b1f39fe2/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
|
||||
knative.dev/hack v0.0.0-20230417170854-f591fea109b3 h1:+W4WBOq83tfGXKhtv8OB/uJeYqze3zh69GKiz1ucuqk=
|
||||
knative.dev/hack v0.0.0-20230417170854-f591fea109b3/go.mod h1:yk2OjGDsbEnQjfxdm0/HJKS2WqTLEFg/N6nUs6Rqx3Q=
|
||||
knative.dev/pkg v0.0.0-20230418073056-dfad48eaa5d0 h1:EFQcoUo8I4bc+U3y6tR1B3ONYZSHWUdAfI7Vh7dae8g=
|
||||
knative.dev/pkg v0.0.0-20230418073056-dfad48eaa5d0/go.mod h1:2qWPP9Gjh9Q7ETti+WRHnBnGCSCq+6q7m3p/nmUQviE=
|
||||
knative.dev/pkg v0.0.0-20230420071539-300df436f953 h1:GAB1JB35FWv5zqypwzmO7v4EPY8xXsomPtHEtb8xdx4=
|
||||
knative.dev/pkg v0.0.0-20230420071539-300df436f953/go.mod h1:2qWPP9Gjh9Q7ETti+WRHnBnGCSCq+6q7m3p/nmUQviE=
|
||||
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=
|
||||
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
|
||||
|
|
|
@ -128,3 +128,12 @@ func isKReferenceGroupAllowed(ctx context.Context) bool {
|
|||
func KReferenceGroupAllowed(ctx context.Context) context.Context {
|
||||
return context.WithValue(ctx, isGroupAllowed{}, struct{}{})
|
||||
}
|
||||
|
||||
func (kr *KReference) String() string {
|
||||
address := ""
|
||||
if kr.Address != nil {
|
||||
address = *kr.Address
|
||||
}
|
||||
return fmt.Sprintf("Kind = %s, Namespace = %s, Name = %s, APIVersion = %s, Group = %s, Address = %s",
|
||||
kr.Kind, kr.Namespace, kr.Name, kr.APIVersion, kr.Group, address)
|
||||
}
|
||||
|
|
|
@ -690,7 +690,7 @@ k8s.io/utils/trace
|
|||
# knative.dev/hack v0.0.0-20230417170854-f591fea109b3
|
||||
## explicit; go 1.18
|
||||
knative.dev/hack
|
||||
# knative.dev/pkg v0.0.0-20230418073056-dfad48eaa5d0
|
||||
# knative.dev/pkg v0.0.0-20230420071539-300df436f953
|
||||
## explicit; go 1.18
|
||||
knative.dev/pkg/apis
|
||||
knative.dev/pkg/apis/duck
|
||||
|
|
Loading…
Reference in New Issue