mirror of https://github.com/knative/caching.git
upgrade to latest dependencies (#863)
bumping knative.dev/pkg f69d19c...360b72e: > 360b72e Update AuthStatus to have list of ServiceAccountNames (# 3032) > 1d1616a Update community files (# 3031) bumping knative.dev/hack abdcdea...68e3bfb: > 68e3bfb Update community files (# 382) Signed-off-by: Knative Automation <automation@knative.team>
This commit is contained in:
parent
383932e618
commit
7dad151e15
4
go.mod
4
go.mod
|
@ -10,8 +10,8 @@ require (
|
|||
k8s.io/client-go v0.29.2
|
||||
k8s.io/code-generator v0.29.2
|
||||
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00
|
||||
knative.dev/hack v0.0.0-20240426013324-abdcdea830f0
|
||||
knative.dev/pkg v0.0.0-20240506063849-f69d19cde324
|
||||
knative.dev/hack v0.0.0-20240507013718-68e3bfb39d11
|
||||
knative.dev/pkg v0.0.0-20240507092124-360b72e4948e
|
||||
)
|
||||
|
||||
require (
|
||||
|
|
8
go.sum
8
go.sum
|
@ -661,10 +661,10 @@ k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 h1:aVUu9fTY98ivBPKR9Y5w/A
|
|||
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00/go.mod h1:AsvuZPBlUDVuCdzJ87iajxtXuR9oktsTctW/R9wwouA=
|
||||
k8s.io/utils v0.0.0-20240102154912-e7106e64919e h1:eQ/4ljkx21sObifjzXwlPKpdGLrCfRziVtos3ofG/sQ=
|
||||
k8s.io/utils v0.0.0-20240102154912-e7106e64919e/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
|
||||
knative.dev/hack v0.0.0-20240426013324-abdcdea830f0 h1:GRCZDU7GyuKnpm6L984hnsOBDR2qNBUgQS2bqBnqeq0=
|
||||
knative.dev/hack v0.0.0-20240426013324-abdcdea830f0/go.mod h1:yk2OjGDsbEnQjfxdm0/HJKS2WqTLEFg/N6nUs6Rqx3Q=
|
||||
knative.dev/pkg v0.0.0-20240506063849-f69d19cde324 h1:qYAn64yjCp9zpSrKRd2pAxNxOU19tLcHlNtspBPmZ8s=
|
||||
knative.dev/pkg v0.0.0-20240506063849-f69d19cde324/go.mod h1:PQiq+p9Gr++TnU+w5P+ZpFS5MOwcMF6Y2oWFU8Ou7bw=
|
||||
knative.dev/hack v0.0.0-20240507013718-68e3bfb39d11 h1:CYoD72R8/R35REjeY2nnWfBak+Q3f+NxXwEfwcID1eU=
|
||||
knative.dev/hack v0.0.0-20240507013718-68e3bfb39d11/go.mod h1:yk2OjGDsbEnQjfxdm0/HJKS2WqTLEFg/N6nUs6Rqx3Q=
|
||||
knative.dev/pkg v0.0.0-20240507092124-360b72e4948e h1:By0c/FKLZlisAerWiMj9crtaEhcl/sp8gN8Rp0s8fKM=
|
||||
knative.dev/pkg v0.0.0-20240507092124-360b72e4948e/go.mod h1:PQiq+p9Gr++TnU+w5P+ZpFS5MOwcMF6Y2oWFU8Ou7bw=
|
||||
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=
|
||||
|
|
|
@ -22,4 +22,9 @@ type AuthStatus struct {
|
|||
// ServiceAccountName is the name of the generated service account
|
||||
// used for this components OIDC authentication.
|
||||
ServiceAccountName *string `json:"serviceAccountName,omitempty"`
|
||||
|
||||
// ServiceAccountNames is the list of names of the generated service accounts
|
||||
// used for this components OIDC authentication. This list can have len() > 1,
|
||||
// when the component uses multiple identities (e.g. in case of a Parallel).
|
||||
ServiceAccountNames []string `json:"serviceAccountNames,omitempty"`
|
||||
}
|
||||
|
|
|
@ -158,6 +158,11 @@ func (in *AuthStatus) DeepCopyInto(out *AuthStatus) {
|
|||
*out = new(string)
|
||||
**out = **in
|
||||
}
|
||||
if in.ServiceAccountNames != nil {
|
||||
in, out := &in.ServiceAccountNames, &out.ServiceAccountNames
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
@ -685,10 +685,10 @@ k8s.io/utils/pointer
|
|||
k8s.io/utils/ptr
|
||||
k8s.io/utils/strings/slices
|
||||
k8s.io/utils/trace
|
||||
# knative.dev/hack v0.0.0-20240426013324-abdcdea830f0
|
||||
# knative.dev/hack v0.0.0-20240507013718-68e3bfb39d11
|
||||
## explicit; go 1.18
|
||||
knative.dev/hack
|
||||
# knative.dev/pkg v0.0.0-20240506063849-f69d19cde324
|
||||
# knative.dev/pkg v0.0.0-20240507092124-360b72e4948e
|
||||
## explicit; go 1.21
|
||||
knative.dev/pkg/apis
|
||||
knative.dev/pkg/apis/duck
|
||||
|
|
Loading…
Reference in New Issue