Skip to content

Commit

Permalink
Merge pull request #35 from ansforge/fix/34_enabling_the_shovel_manag…
Browse files Browse the repository at this point in the history
…ement_rabbitMQ_plugin

Fix/34 enabling the shovel management rabbit mq plugin
  • Loading branch information
edegenetais-nx authored Nov 12, 2024
2 parents 8838560 + 30775f0 commit d9ffb79
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
19 changes: 17 additions & 2 deletions DISTRIBUTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,24 @@ Give this new distribution a semantic version number based on what changed (new

## History

### 1.2.0

**NB** : these version number and entry content are provisional, as 1.2.0 has not been released yet, as of 2024/09/20
### 1.2.1

This version fixes the following bugs :
- The shovel_management plugin is not enabled in rabbitMQ and should be
for dead letter queue replays.

|Component| Version |
|---------|---------|
|psc-ps-api| `2.1.0` |
|psc-amar-connector| `1.1.2` |
|psc-toggle-manager| `0.1.0` |
|psc-rass-loader| `1.1.1` |
|psc-extract| `0.2.0` |
|psc-admin-portal| `1.0.0` |


### 1.2.0

This version adds the necessary change for the administration portal :
- Using fixed prometheus & alertmanager version to be able to rely on alertmanager's v2 API.
Expand Down
20 changes: 19 additions & 1 deletion psc-rabbitmq/psc-rabbitmq.nomad.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,15 @@ job "psc-rabbitmq" {
propagation = "rshared"
}
}
mount {
type = "bind"
target = "/etc/rabbitmq/enabled_plugins"
source = "local/enabled_plugins"
readonly = false
bind_options {
propagation = "rshared"
}
}
#mount {
# type = "bind"
# target = "/etc/rabbitmq/definitions.json"
Expand Down Expand Up @@ -95,7 +104,16 @@ EOH
management.tcp.port = 15672
EOF
}
#template {

template {
change_mode = "restart"
destination = "local/enabled_plugins"
data = <<EOF
[rabbitmq_management,rabbitmq_prometheus,rabbitmq_shovel_management].
EOF
}

#template { # TODO : this dead code should die...
# change_mode = "restart"
# destination = "local/definitions.json"
# data = <<EOF
Expand Down

0 comments on commit d9ffb79

Please sign in to comment.