init repo
This commit is contained in:
29
src/rabbitmq/README.md
Normal file
29
src/rabbitmq/README.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# RabbitMQ
|
||||
|
||||
## Introduction
|
||||
|
||||
RabbitMQ is the most widely deployed open source message broker.
|
||||
|
||||
## Installation
|
||||
|
||||
To install RabbitMQ, run:
|
||||
|
||||
```bash
|
||||
make install
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
After installation, verify the deployment:
|
||||
|
||||
```bash
|
||||
kubectl get pods -n rabbitmq
|
||||
```
|
||||
|
||||
To access RabbitMQ management UI, port-forward the service:
|
||||
|
||||
```bash
|
||||
kubectl port-forward svc/rabbitmq 15672:15672 -n rabbitmq
|
||||
```
|
||||
|
||||
Then access at <http://localhost:15672>
|
||||
Reference in New Issue
Block a user