Skip to content

Commit

Permalink
Add deploy rabbitmq cluster in azure blog (#467)
Browse files Browse the repository at this point in the history
* Add deploy rabbitmq cluster in azure blog

Signed-off-by: DRoyyy <[email protected]>

* update blog

Signed-off-by: DRoyyy <[email protected]>

---------

Signed-off-by: DRoyyy <[email protected]>
  • Loading branch information
DRoyyy authored Sep 18, 2024
1 parent d0c920c commit 17a622b
Show file tree
Hide file tree
Showing 13 changed files with 342 additions and 2 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
340 changes: 340 additions & 0 deletions content/post/deploy-rabbitmq-cluster-in-aks/index.md

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S)
rabbitmq-cluster ClusterIP 10.128.71.135 <none> 15672/TCP,5672/TCP 4m26s
rabbitmq-cluster-pods ClusterIP None <none> 4369/TCP,25672/TCP 4m26s
```
Here, we are going to use `rabbitmq-cluster` Service to connect with the database. Now, let’s port-forward the `rabbitmq-cluster` Service to the port `9200` to local machine:
Here, we are going to use `rabbitmq-cluster` Service to connect with the database. Now, let’s port-forward the `rabbitmq-cluster` Service to the port `15672` to local machine:

```bash
$ kubectl port-forward -n demo svc/rabbitmq-cluster 15672
Expand Down
2 changes: 1 addition & 1 deletion content/post/deploy-rabbitmq-cluster-in-gke/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S)
rabbitmq-cluster ClusterIP 10.96.92.2 <none> 15672/TCP,5672/TCP 4m52s
rabbitmq-cluster-pods ClusterIP None <none> 4369/TCP,25672/TCP 4m52s
```
Here, we are going to use `rabbitmq-cluster` Service to connect with the database. Now, let’s port-forward the `rabbitmq-cluster` Service to the port `9200` to local machine:
Here, we are going to use `rabbitmq-cluster` Service to connect with the database. Now, let’s port-forward the `rabbitmq-cluster` Service to the port `15672` to local machine:

```bash
$ kubectl port-forward -n demo svc/rabbitmq-cluster 15672
Expand Down

0 comments on commit 17a622b

Please sign in to comment.