Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/200-serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ metadata:
apiVersion: v1
kind: ServiceAccount
metadata:
name: clusterbus-controller
name: bus-operator
namespace: knative-eventing
4 changes: 2 additions & 2 deletions config/201-clusterrolebinding.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ roleRef:
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRoleBinding
metadata:
name: clusterbus-controller-manage
name: bus-operator-manage
subjects:
- kind: ServiceAccount
name: clusterbus-controller
name: bus-operator
namespace: knative-eventing
roleRef:
kind: ClusterRole
Expand Down
4 changes: 2 additions & 2 deletions config/buses/gcppubsub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ The dispatcher receives events via a Channel's Service from inside the cluster a
Note: Cloud Pub/Sub does not guarantee exactly once delivery, subscribers must guard against multiple deliveries of the same event.

To view logs:
- for the dispatcher `kail -d gcppubsub-bus-dispatcher -c dispatcher`
- for the provisioner `kail -d gcppubsub-bus-provisioner -c provisioner`
- for the dispatcher `kail -d gcppubsub-[namespace]-bus-dispatcher -c dispatcher`
- for the provisioner `kail -d gcppubsub-[namespace]-bus-provisioner -c provisioner`
4 changes: 2 additions & 2 deletions config/buses/kafka/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ from the subscription's channel and forwards them over HTTP to the
subscriber.

To view logs:
- for the dispatcher `kail -d kafka-bus-dispatcher -c dispatcher`
- for the provisioner `kail -d kafka-bus-provisioner -c provisioner`
- for the dispatcher `kail -d kafka-[namespace]-bus-dispatcher -c dispatcher`
- for the provisioner `kail -d kafka-[namespace]-bus-provisioner -c provisioner`
2 changes: 1 addition & 1 deletion config/buses/stub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ The dispatcher receives events via a Channel's Service from inside the cluster a

Note: The stub bus does not guarantee delivery, errors will not be reattempted.

To view logs: `kail -d stub-bus-dispatcher -c dispatcher`
To view logs: `kail -d stub-[namespace]-bus-dispatcher -c dispatcher`
Loading