-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
centralized rabbitmq, ocpdb update (#291)
* centralized rabbitmq, ocpdb update * prepare changelog for OCPDB and rabbitmq * add ocpdb config * new init mechanism * Update to 1.2.1 Co-authored-by: Jannis R #38c3 <mail@jannisr.de> --------- Co-authored-by: Jannis R #38c3 <mail@jannisr.de>
- Loading branch information
1 parent
6206bed
commit f6e73a8
Showing
6 changed files
with
116 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"permissions": [ | ||
{ | ||
"configure": ".*", | ||
"read": ".*", | ||
"user": "guest", | ||
"vhost": "/", | ||
"write": ".*" | ||
}, | ||
{ | ||
"configure": ".*", | ||
"read": ".*", | ||
"user": "guest", | ||
"vhost": "ocpdb", | ||
"write": ".*" | ||
}, | ||
{ | ||
"configure": ".*", | ||
"read": ".*", | ||
"user": "guest", | ||
"vhost": "park-api", | ||
"write": ".*" | ||
} | ||
], | ||
"rabbit_version": "3.13.7", | ||
"rabbitmq_version": "3.13.7", | ||
"users": [ | ||
{ | ||
"hashing_algorithm": "rabbit_password_hashing_sha256", | ||
"name": "guest", | ||
"password_hash": "jJ6i6IgumvqlsjiFXbmB57Kr1K4fXCsNVk+Wrw4r9Rx+/6kq", | ||
"tags": [ | ||
"administrator" | ||
] | ||
} | ||
], | ||
"vhosts": [ | ||
{ | ||
"metadata": { | ||
"description": "Default virtual host" | ||
}, | ||
"name": "/" | ||
}, | ||
{ | ||
"metadata": { | ||
"description": "Virtual host for ParkAPI" | ||
}, | ||
"name": "park-api" | ||
}, | ||
{ | ||
"metadata": { | ||
"description": "Virtual host for OCPDB" | ||
}, | ||
"name": "ocpdb" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Just reload definitions if they are changed | ||
definitions.skip_if_unchanged = true | ||
# Point to definitions file | ||
definitions.import_backend = local_filesystem | ||
definitions.local.path = /etc/rabbitmq/definitions.json |