Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
amitsagtani97 committed Dec 11, 2024
1 parent 3535c89 commit ba8fc9b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ansible/inventory/offline/99-static
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@
[rmq-cluster:vars]
# rabbitmq_network_interface = enp1s0

# For the following groups, add all nodes defined above to the sections below.
# Define any additional variables that should be set for these nodes.

# Uncomment this is you use the bastion host
# [bastion]
# bastion

# Add all nodes that should be the master
[kube-master]
Expand Down
30 changes: 30 additions & 0 deletions offline/docs_ubuntu_22.04.md
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,36 @@ d kubectl get nodes -owide
```
They should all report ready.

### Troubleshooting external services
Cassandra, Minio and Elasticsearch are running outside Kubernets cluster, make sure those machines have necessary ports open -

On each of the machines running Cassandra, Minio and Elasticsearch, run the following commands to open the necessary ports, if needed:
```
sudo bash -c '
set -eo pipefail;
# cassandra
ufw allow 9042/tcp;
ufw allow 9160/tcp;
ufw allow 7000/tcp;
ufw allow 7199/tcp;
# elasticsearch
ufw allow 9300/tcp;
ufw allow 9200/tcp;
# minio
ufw allow 9000/tcp;
ufw allow 9092/tcp;
#rabbitmq
ufw allow 5671/tcp;
ufw allow 5672/tcp;
ufw allow 4369/tcp;
ufw allow 25672/tcp;
'
```

### Deploy RabbitMQ cluster
Follow the steps mentioned here to create a RabbitMQ cluster based on your setup - [offline/rabbitmq_setup.md](./rabbitmq_setup.md)

Expand Down

0 comments on commit ba8fc9b

Please sign in to comment.