Skip to content

Commit

Permalink
Add deploy rabbitmq cluster in azure blog
Browse files Browse the repository at this point in the history
Signed-off-by: DRoyyy <[email protected]>
  • Loading branch information
DRoyyy committed Sep 17, 2024
1 parent d0c920c commit 6b440be
Show file tree
Hide file tree
Showing 13 changed files with 337 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.
335 changes: 335 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 6b440be

Please sign in to comment.