Add SinkAudience to SourceStatus (#2844)

This commit is contained in:
Christoph Stäbler 2023-10-02 15:16:21 +02:00 committed by GitHub
parent 1860700f6f
commit 0736c742cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -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)