Skip to content

Commit dd4260d

Browse files
authored
Bump dependencies prior to Knative 1.0 (#497)
Let's see what's broken.
1 parent a0f8fe3 commit dd4260d

File tree

929 files changed

+40492
-19437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

929 files changed

+40492
-19437
lines changed

config/core/200-imported/200-eventing/100-resources/broker.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,9 @@ spec:
134134
type:
135135
description: 'Type of condition.'
136136
type: string
137+
deadLetterSinkUri:
138+
description: DeadLetterSinkURI is the resolved URI of the dead letter sink that will be used as a fallback when not specified by Triggers.
139+
type: string
137140
observedGeneration:
138141
description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller.
139142
type: integer

config/core/200-imported/200-eventing/100-resources/trigger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ spec:
162162
description: 'Type of condition.'
163163
type: string
164164
deadLetterSinkUri:
165-
description: DeadLetterSinkURI is the resolved URI of the dead letter sink for this Trigger.
165+
description: DeadLetterSinkURI is the resolved URI of the dead letter sink for this Trigger, in case there is none this will fallback to it's Broker status DeadLetterSinkURI.
166166
type: string
167167
observedGeneration:
168168
description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller.

config/core/200-imported/200-eventing/roles/channelable-manipulator-clusterrole.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,4 @@ rules:
5252
- watch
5353
- update
5454
- patch
55+
- delete

config/in-memory/200-imc-controller-serviceaccount.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,20 @@ roleRef:
5656
kind: Role
5757
name: knative-inmemorychannel-webhook
5858
apiGroup: rbac.authorization.k8s.io
59+
---
60+
apiVersion: rbac.authorization.k8s.io/v1
61+
kind: ClusterRoleBinding
62+
metadata:
63+
name: imc-controller-resolver
64+
labels:
65+
knative.dev/release: devel
66+
app.kubernetes.io/version: devel
67+
app.kubernetes.io/part-of: mink-system
68+
subjects:
69+
- kind: ServiceAccount
70+
name: imc-controller
71+
namespace: mink-system
72+
roleRef:
73+
kind: ClusterRole
74+
name: addressable-resolver
75+
apiGroup: rbac.authorization.k8s.io

config/in-memory/deployments/dispatcher.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ metadata:
2424
app.kubernetes.io/version: devel
2525
app.kubernetes.io/part-of: mink-system
2626
spec:
27+
strategy:
28+
rollingUpdate:
29+
maxSurge: 50%
30+
maxUnavailable: 75%
31+
type: RollingUpdate
2732
selector:
2833
matchLabels: &labels
2934
messaging.knative.dev/channel: in-memory-channel

config/in-memory/resources/in-memory-channel.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@ spec:
190190
namespace:
191191
description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ This is optional field, it gets defaulted to the object holding it if left out.'
192192
type: string
193+
deadLetterSinkUri:
194+
description: DeadLetterSinkURI is the resolved URI of the dead letter ref if one is specified in the Spec.Delivery.
195+
type: string
193196
observedGeneration:
194197
description: ObservedGeneration is the 'Generation' of the Service that was last processed by the controller.
195198
type: integer

config/in-memory/roles/channelable-manipulator-clusterrole.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ rules:
3535
- watch
3636
- update
3737
- patch
38+
- delete

go.mod

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,28 @@ require (
2020
github.com/pierrec/lz4 v2.6.1+incompatible
2121
github.com/ryanuber/go-glob v1.0.0
2222
github.com/shurcooL/githubv4 v0.0.0-20191127044304-8f68eb5628d0 // indirect
23-
github.com/sigstore/cosign v1.1.1-0.20210914204018-152eefb4bbf3
23+
github.com/sigstore/cosign v1.2.1
2424
github.com/spf13/cobra v1.2.1
2525
github.com/spf13/pflag v1.0.5
2626
github.com/spf13/viper v1.8.1
27-
github.com/tektoncd/chains v0.4.1-0.20210917154024-fe76b611bd58
28-
github.com/tektoncd/cli v0.3.1-0.20210921083325-c0a8f3ee19e0
29-
github.com/tektoncd/pipeline v0.28.1-0.20210921160225-57c0cc718258
27+
github.com/tektoncd/chains v0.5.1-0.20211019183434-e53b16ab0bd8
28+
github.com/tektoncd/cli v0.3.1-0.20211021054435-3aa43bb188a4
29+
github.com/tektoncd/pipeline v0.29.1-0.20211022010736-e73bfb11bc24
3030
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
3131
gopkg.in/src-d/go-billy.v4 v4.3.2
3232
gopkg.in/src-d/go-git.v4 v4.13.1
3333
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
3434
k8s.io/api v0.22.1
3535
k8s.io/apimachinery v0.22.1
3636
k8s.io/client-go v11.0.1-0.20190805182717-6502b5e7b1b5+incompatible
37-
knative.dev/caching v0.0.0-20210914230307-0184eb914a42
38-
knative.dev/eventing v0.25.1-0.20210920134735-f031ba23b23d
39-
knative.dev/hack v0.0.0-20210806075220-815cd312d65c
40-
knative.dev/net-http01 v0.25.1-0.20210920162335-16a8df171563
41-
knative.dev/net-kourier v0.25.1-0.20210920060635-5e8ac6c0beaf
42-
knative.dev/networking v0.0.0-20210914225408-69ad45454096
43-
knative.dev/pkg v0.0.0-20210919202233-5ae482141474
44-
knative.dev/serving v0.25.1-0.20210920201536-4a26f1daa58a
37+
knative.dev/caching v0.0.0-20211019132135-6facf87d69eb
38+
knative.dev/eventing v0.26.1-0.20211022181727-e136cbbb2235
39+
knative.dev/hack v0.0.0-20211019034732-ced8ce706528
40+
knative.dev/net-http01 v0.26.1-0.20211020163553-bc23f49f333f
41+
knative.dev/net-kourier v0.26.1-0.20211020135652-410a53d883a6
42+
knative.dev/networking v0.0.0-20211021055311-e50e34d37d19
43+
knative.dev/pkg v0.0.0-20211019132235-ba2b2b1bf268
44+
knative.dev/serving v0.26.1-0.20211022182733-a45951406e94
4545
)
4646

4747
replace (
@@ -68,6 +68,3 @@ replace (
6868
)
6969

7070
replace github.com/tektoncd/cli => github.com/mattmoor/cli v0.3.1-0.20210915213736-bc5603302c04
71-
72-
// Copied from net-kourier v0.25.0
73-
replace github.com/envoyproxy/go-control-plane => github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d

0 commit comments

Comments
 (0)