Skip to content

Commit

Permalink
[release-1.11] Cherry-pick Provision sequences CA cert in its status (#…
Browse files Browse the repository at this point in the history
…7592)

* Solve the conflict by removing the OIDC code, as we don't have OIDC in this release

Signed-off-by: Leo Li <leoli@redhat.com>

* goimports

Signed-off-by: Leo Li <leoli@redhat.com>

---------

Signed-off-by: Leo Li <leoli@redhat.com>
Co-authored-by: Christoph Stäbler <cstabler@redhat.com>
  • Loading branch information
Leo6Leo and creydr committed Jan 17, 2024
1 parent 8b1ec7d commit 219ae96
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/apis/flows/v1/sequence_lifecycle.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,10 @@ func (ss *SequenceStatus) setAddress(address *duckv1.Addressable) {
ss.Address = duckv1.Addressable{}
sCondSet.Manage(ss).MarkUnknown(SequenceConditionAddressable, "emptyAddress", "addressable is nil")
} else {
ss.Address = duckv1.Addressable{URL: address.URL}
ss.Address = duckv1.Addressable{
URL: address.URL,
CACerts: address.CACerts,
}
sCondSet.Manage(ss).MarkTrue(SequenceConditionAddressable)
}
}

0 comments on commit 219ae96

Please sign in to comment.