File tree Expand file tree Collapse file tree
knative.dev/eventing/pkg/apis/eventing/v1alpha1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ require (
2929 k8s.io/client-go v0.33.4
3030 k8s.io/code-generator v0.33.4
3131 k8s.io/utils v0.0.0-20241210054802-24370beab758
32- knative.dev/eventing v0.46.1-0.20250815061442-81cbeaaeb807
32+ knative.dev/eventing v0.46.1-0.20250818084647-0a35d6edaa04
3333 knative.dev/hack v0.0.0-20250708013849-70d4b00da6ba
3434 knative.dev/pkg v0.0.0-20250817140644-c745f1fcaa2e
35- knative.dev/reconciler-test v0.0.0-20250814021443-f87776da7a48
35+ knative.dev/reconciler-test v0.0.0-20250818021647-3bf376b1f1ce
3636)
3737
3838require (
Original file line number Diff line number Diff line change @@ -1070,14 +1070,14 @@ k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff h1:/usPimJzUKKu+m+TE36gUy
10701070k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff /go.mod h1:5jIi+8yX4RIb8wk3XwBo5Pq2ccx4FP10ohkbSKCZoK8 =
10711071k8s.io/utils v0.0.0-20241210054802-24370beab758 h1:sdbE21q2nlQtFh65saZY+rRM6x6aJJI8IUa1AmH/qa0 =
10721072k8s.io/utils v0.0.0-20241210054802-24370beab758 /go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0 =
1073- knative.dev/eventing v0.46.1-0.20250815061442-81cbeaaeb807 h1:Dl/S7E8e/YDCg8V7JDhDdyQ02JaKxUx8Bw7c3V6it5k =
1074- knative.dev/eventing v0.46.1-0.20250815061442-81cbeaaeb807 /go.mod h1:MfDvzjZa6T5McrZUmhmARie6xCdfcf8wt8RTia8GwVE =
1073+ knative.dev/eventing v0.46.1-0.20250818084647-0a35d6edaa04 h1:3IiyVZfZsSNltuR6OzuA1QRVS8efE+juGHPD89q4Thg =
1074+ knative.dev/eventing v0.46.1-0.20250818084647-0a35d6edaa04 /go.mod h1:pA2CWkd3Pl4E0Y81ochzLtZbL8b23+BzpkYSgAUTNqg =
10751075knative.dev/hack v0.0.0-20250708013849-70d4b00da6ba h1:PkOTBI8DRfvUKD8HTvYYT94NJ49J++llrDo3y0/ZAwc =
10761076knative.dev/hack v0.0.0-20250708013849-70d4b00da6ba /go.mod h1:R0ritgYtjLDO9527h5vb5X6gfvt5LCrJ55BNbVDsWiY =
10771077knative.dev/pkg v0.0.0-20250817140644-c745f1fcaa2e h1:MQvV6He65+DIYxcHWahAij/JSwNUs78JqmONjMZQhtU =
10781078knative.dev/pkg v0.0.0-20250817140644-c745f1fcaa2e /go.mod h1:D3Q1EurZkGaiPNEvPpErGmUU7Ny0WgqGVktfIyH2vYM =
1079- knative.dev/reconciler-test v0.0.0-20250814021443-f87776da7a48 h1:XK5JoVucbqcmdEJYv95ExROPXpRvMXuEnKYoxRGrPVg =
1080- knative.dev/reconciler-test v0.0.0-20250814021443-f87776da7a48 /go.mod h1:XgdM9QleSPiDXxw3Yg+YT9ZjyLa4MZGmmuOAv78KQMA =
1079+ knative.dev/reconciler-test v0.0.0-20250818021647-3bf376b1f1ce h1:IOhYsvpX1mIo+UZei1/dBukpGGlgt5PFWopnS7KZPtE =
1080+ knative.dev/reconciler-test v0.0.0-20250818021647-3bf376b1f1ce /go.mod h1:10PmVxyoupuQCJOGhH9SYhbiwo4Ta2zX/PQ0oGFIqQ0 =
10811081rsc.io/binaryregexp v0.2.0 /go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8 =
10821082rsc.io/quote/v3 v3.1.0 /go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0 =
10831083rsc.io/sampler v1.3.0 /go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA =
Original file line number Diff line number Diff line change @@ -24,6 +24,22 @@ import (
2424 "k8s.io/apimachinery/pkg/runtime/schema"
2525)
2626
27+ const (
28+ // RequestReplyBrokerAddressStatusAnnotationKey is the RequestReply status
29+ // annotation key used to specify the address of the broker
30+ RequestReplyBrokerAddressStatusAnnotationKey = "knative.dev/brokerAddress"
31+
32+ // RequestReplyBrokerCACertsStatusAnnotationKey is the RequestReply status
33+ // annotation key used to specify the broker's Certification Authority (CA)
34+ // certificates in PEM format according to
35+ // https://www.rfc-editor.org/rfc/rfc7468
36+ RequestReplyBrokerCACertsStatusAnnotationKey = "knative.dev/brokerCACerts"
37+
38+ // RequestReplyBrokerAudienceStatusAnnotationKey is the RequestReply status
39+ // anotation key used to specify the broker's OIDC audience
40+ RequestReplyBrokerAudienceStatusAnnotationKey = "knative.dev/brokerAudience"
41+ )
42+
2743// SchemeGroupVersion is group version used to register these objects
2844var SchemeGroupVersion = schema.GroupVersion {Group : eventing .GroupName , Version : "v1alpha1" }
2945
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import (
2020 metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2121 "k8s.io/apimachinery/pkg/runtime"
2222 "k8s.io/apimachinery/pkg/runtime/schema"
23+ "k8s.io/apimachinery/pkg/types"
2324
2425 "knative.dev/pkg/apis"
2526 duckv1 "knative.dev/pkg/apis/duck/v1"
@@ -120,3 +121,10 @@ func (rr *RequestReply) GetUntypedSpec() interface{} {
120121func (rr * RequestReply ) GetStatus () * duckv1.Status {
121122 return & rr .Status .Status
122123}
124+
125+ func (rr * RequestReply ) GetNamespacedName () types.NamespacedName {
126+ return types.NamespacedName {
127+ Name : rr .Name ,
128+ Namespace : rr .Namespace ,
129+ }
130+ }
Original file line number Diff line number Diff line change @@ -1174,7 +1174,7 @@ k8s.io/utils/net
11741174k8s.io/utils/pointer
11751175k8s.io/utils/ptr
11761176k8s.io/utils/trace
1177- # knative.dev/eventing v0.46.1-0.20250815061442-81cbeaaeb807
1177+ # knative.dev/eventing v0.46.1-0.20250818084647-0a35d6edaa04
11781178## explicit; go 1.24.0
11791179knative.dev/eventing/pkg/apis
11801180knative.dev/eventing/pkg/apis/common/integration/v1alpha1
@@ -1339,7 +1339,7 @@ knative.dev/pkg/webhook/json
13391339knative.dev/pkg/webhook/resourcesemantics
13401340knative.dev/pkg/webhook/resourcesemantics/defaulting
13411341knative.dev/pkg/webhook/resourcesemantics/validation
1342- # knative.dev/reconciler-test v0.0.0-20250814021443-f87776da7a48
1342+ # knative.dev/reconciler-test v0.0.0-20250818021647-3bf376b1f1ce
13431343## explicit; go 1.24.0
13441344knative.dev/reconciler-test/cmd/eventshub
13451345knative.dev/reconciler-test/pkg/environment
You can’t perform that action at this time.
0 commit comments