mirror of https://github.com/knative/caching.git
upgrade to latest dependencies (#792)
bumping knative.dev/pkg 1860700...294e777: > 294e777 Add rest.Config to fake context in SetupFakeContext (# 2847) > 0736c74 Add SinkAudience to SourceStatus (# 2844) Signed-off-by: Knative Automation <automation@knative.team>
This commit is contained in:
parent
808ee92ee6
commit
6c2d45f618
2
go.mod
2
go.mod
|
@ -12,7 +12,7 @@ require (
|
|||
k8s.io/code-generator v0.27.6
|
||||
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f
|
||||
knative.dev/hack v0.0.0-20230926181829-f2f9b6f91263
|
||||
knative.dev/pkg v0.0.0-20231002125759-1860700f6ffe
|
||||
knative.dev/pkg v0.0.0-20231002131630-294e777acf1a
|
||||
)
|
||||
|
||||
require (
|
||||
|
|
4
go.sum
4
go.sum
|
@ -665,8 +665,8 @@ k8s.io/utils v0.0.0-20230209194617-a36077c30491 h1:r0BAOLElQnnFhE/ApUsg3iHdVYYPB
|
|||
k8s.io/utils v0.0.0-20230209194617-a36077c30491/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
|
||||
knative.dev/hack v0.0.0-20230926181829-f2f9b6f91263 h1:e6r9J1YopzSh6tDCpyKhVBfRUlZ2r0KRo9wupRjdRF4=
|
||||
knative.dev/hack v0.0.0-20230926181829-f2f9b6f91263/go.mod h1:yk2OjGDsbEnQjfxdm0/HJKS2WqTLEFg/N6nUs6Rqx3Q=
|
||||
knative.dev/pkg v0.0.0-20231002125759-1860700f6ffe h1:hjBKTt3k7dtsC3LMRXDicPtM0HwERGsJ6CkWVOcts2E=
|
||||
knative.dev/pkg v0.0.0-20231002125759-1860700f6ffe/go.mod h1:PxnS8ZnVtC0S+An+NEhrpzWt6k9hedDNt659Gu5EtJk=
|
||||
knative.dev/pkg v0.0.0-20231002131630-294e777acf1a h1:o3A1May7y6MDLC97LTF+F0uyho97sLC1ypvrlSyOccg=
|
||||
knative.dev/pkg v0.0.0-20231002131630-294e777acf1a/go.mod h1:PxnS8ZnVtC0S+An+NEhrpzWt6k9hedDNt659Gu5EtJk=
|
||||
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=
|
||||
|
|
|
@ -90,6 +90,10 @@ type SourceStatus struct {
|
|||
// +optional
|
||||
SinkCACerts *string `json:"sinkCACerts,omitempty"`
|
||||
|
||||
// SinkAudience is the OIDC audience of the sink.
|
||||
// +optional
|
||||
SinkAudience *string `json:"sinkAudience,omitempty"`
|
||||
|
||||
// Auth defines the attributes that provide the generated service account
|
||||
// name in the resource status.
|
||||
// +optional
|
||||
|
|
|
@ -666,6 +666,11 @@ func (in *SourceStatus) DeepCopyInto(out *SourceStatus) {
|
|||
*out = new(string)
|
||||
**out = **in
|
||||
}
|
||||
if in.SinkAudience != nil {
|
||||
in, out := &in.SinkAudience, &out.SinkAudience
|
||||
*out = new(string)
|
||||
**out = **in
|
||||
}
|
||||
if in.Auth != nil {
|
||||
in, out := &in.Auth, &out.Auth
|
||||
*out = new(AuthStatus)
|
||||
|
|
|
@ -699,7 +699,7 @@ k8s.io/utils/trace
|
|||
# knative.dev/hack v0.0.0-20230926181829-f2f9b6f91263
|
||||
## explicit; go 1.18
|
||||
knative.dev/hack
|
||||
# knative.dev/pkg v0.0.0-20231002125759-1860700f6ffe
|
||||
# knative.dev/pkg v0.0.0-20231002131630-294e777acf1a
|
||||
## explicit; go 1.18
|
||||
knative.dev/pkg/apis
|
||||
knative.dev/pkg/apis/duck
|
||||
|
|
Loading…
Reference in New Issue