Skip to content

Commit

Permalink
fix: permissions for rabbitmq didn't work
Browse files Browse the repository at this point in the history
These permissions didn't work for the event source. Marek was correct
in #248
  • Loading branch information
cardoe committed Sep 4, 2024
1 parent 5d417c2 commit b8a8c3a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ spec:
userReference:
name: "argo" # name of a user.rabbitmq.com in the same namespace; must specify either spec.userReference or spec.user
permissions:
write: "^$"
configure: "^$"
read: "^ironic_versioned_notifications.info$"
write: ".*"
configure: ".*"
read: ".*"
rabbitmqClusterReference:
name: rabbitmq # rabbitmqCluster must exist in the same namespace as this resource
namespace: openstack
Expand All @@ -35,7 +35,7 @@ spec:
permissions:
write: ".*"
configure: ".*"
read: "^notifications.info$"
read: ".*"
rabbitmqClusterReference:
name: rabbitmq # rabbitmqCluster must exist in the same namespace as this resource
namespace: openstack

0 comments on commit b8a8c3a

Please sign in to comment.