mirror of https://github.com/knative/pkg.git
Add SinkAudience to SourceStatus (#2844)
This commit is contained in:
parent
1860700f6f
commit
0736c742cf
|
@ -90,6 +90,10 @@ type SourceStatus struct {
|
||||||
// +optional
|
// +optional
|
||||||
SinkCACerts *string `json:"sinkCACerts,omitempty"`
|
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
|
// Auth defines the attributes that provide the generated service account
|
||||||
// name in the resource status.
|
// name in the resource status.
|
||||||
// +optional
|
// +optional
|
||||||
|
|
|
@ -666,6 +666,11 @@ func (in *SourceStatus) DeepCopyInto(out *SourceStatus) {
|
||||||
*out = new(string)
|
*out = new(string)
|
||||||
**out = **in
|
**out = **in
|
||||||
}
|
}
|
||||||
|
if in.SinkAudience != nil {
|
||||||
|
in, out := &in.SinkAudience, &out.SinkAudience
|
||||||
|
*out = new(string)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
if in.Auth != nil {
|
if in.Auth != nil {
|
||||||
in, out := &in.Auth, &out.Auth
|
in, out := &in.Auth, &out.Auth
|
||||||
*out = new(AuthStatus)
|
*out = new(AuthStatus)
|
||||||
|
|
Loading…
Reference in New Issue