Skip to content

Commit

Permalink
Fix yaml linting in ironic-rabbitmq-queue.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaskuechler committed Feb 26, 2024
1 parent 9e2b491 commit c172969
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions components/13-ironic/ironic-rabbitmq-queue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ metadata:
namespace: openstack
spec:
tags:
- management # available tags are 'management', 'policymaker', 'monitoring' and 'administrator'
- management # available tags are 'management', 'policymaker', 'monitoring' and 'administrator'
- policymaker
rabbitmqClusterReference:
name: rabbitmq # rabbitmqCluster must exist in the same namespace as this resource
name: rabbitmq # rabbitmqCluster must exist in the same namespace as this resource
namespace: openstack
importCredentialsSecret:
name: ironic-rabbitmq-password
Expand All @@ -20,10 +20,10 @@ metadata:
name: ironic-vhost
namespace: openstack
spec:
name: "ironic" # vhost name; required and cannot be updated
defaultQueueType: quorum # default queue type for this vhost; require RabbitMQ version 3.11.12 or above
name: "ironic" # vhost name; required and cannot be updated
defaultQueueType: quorum # default queue type for this vhost; require RabbitMQ version 3.11.12 or above
rabbitmqClusterReference:
name: rabbitmq # rabbitmqCluster must exist in the same namespace as this resource
name: rabbitmq # rabbitmqCluster must exist in the same namespace as this resource
namespace: openstack
---
apiVersion: rabbitmq.com/v1beta1
Expand All @@ -32,13 +32,13 @@ metadata:
name: ironic-queue
namespace: openstack
spec:
name: ironic-qq # name of the queue
vhost: "ironic" # default to '/' if not provided
type: quorum # without providing a queue type, rabbitmq creates a classic queue
name: ironic-qq # name of the queue
vhost: "ironic" # default to '/' if not provided
type: quorum # without providing a queue type, rabbitmq creates a classic queue
autoDelete: false
durable: true # seting 'durable' to false means this queue won't survive a server restart
durable: true # seting 'durable' to false means this queue won't survive a server restart
rabbitmqClusterReference:
name: rabbitmq # rabbitmqCluster must exist in the same namespace as this resource
name: rabbitmq # rabbitmqCluster must exist in the same namespace as this resource
namespace: openstack
---
apiVersion: rabbitmq.com/v1beta1
Expand All @@ -47,13 +47,13 @@ metadata:
name: ironic-permission
namespace: openstack
spec:
vhost: "ironic" # name of a vhost
vhost: "ironic" # name of a vhost
userReference:
name: "ironic" # name of a user.rabbitmq.com in the same namespace; must specify either spec.userReference or spec.user
name: "ironic" # name of a user.rabbitmq.com in the same namespace; must specify either spec.userReference or spec.user
permissions:
write: ".*"
configure: ".*"
read: ".*"
rabbitmqClusterReference:
name: rabbitmq # rabbitmqCluster must exist in the same namespace as this resource
name: rabbitmq # rabbitmqCluster must exist in the same namespace as this resource
namespace: openstack

0 comments on commit c172969

Please sign in to comment.