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
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