@@ -43,7 +43,7 @@ give full pre-installation instructions for [RHEL](#k3s-rhel) and
43
43
### RHEL {#k3s-rhel}
44
44
45
45
K3s recommends that you turn off
46
- [ ` firewalld ` ] ( https://docs.redhat.com/en/ documentation/red_hat_enterprise_linux/8/html/configuring_and_managing_networking/using-and-configuring-firewalld_configuring-and-managing-networking )
46
+ [ ` firewalld ` ] ( https://firewalld.org/ documentation/ )
47
47
before installation using the command:
48
48
49
49
``` bash
@@ -59,6 +59,17 @@ firewall-cmd --permanent --zone=trusted --add-source=10.43.0.0/16 #services
59
59
firewall-cmd --reload
60
60
```
61
61
62
+ You should also add [ port rules] ( https://firewalld.org/documentation/howto/open-a-port-or-service.html )
63
+ for all the [ RDI services] ({{< relref "/integrate/redis-data-integration/ingest/reference/ports" >}})
64
+ you intend to use:
65
+
66
+ ``` bash
67
+ firewall-cmd --permanent --add-port=8080/tcp # (Required) rdi-operator/rdi-api
68
+ firewall-cmd --permanent --add-port=9090/tcp # vm-dis-reloader
69
+ firewall-cmd --permanent --add-port=9092/tcp # prometheus-service
70
+ firewall-cmd --permanent --add-port=9121/tcp # rdi-metric-exporter
71
+ ```
72
+
62
73
You may also need to open other ports if your setup requires them. See the K3s
63
74
[ Inbound rules] ( https://docs.k3s.io/installation/requirements?_highlight=red&_highlight=hat&os=rhel#inbound-rules-for-k3s-nodes )
64
75
docs for more information. If you change the default CIDR for pods or services,
@@ -95,6 +106,17 @@ ufw allow from 10.42.0.0/16 to any #pods
95
106
ufw allow from 10.43.0.0/16 to any # services
96
107
```
97
108
109
+ You should also add [ port rules] ( https://ubuntu.com/server/docs/firewalls )
110
+ for all the [ RDI services] ({{< relref "/integrate/redis-data-integration/ingest/reference/ports" >}})
111
+ you intend to use:
112
+
113
+ ``` bash
114
+ ufw allow 8080/tcp # (Required) rdi-operator/rdi-api
115
+ ufw allow 9090/tcp # vm-dis-reloader
116
+ ufw allow 9092/tcp # prometheus-service
117
+ ufw allow 9121/tcp # rdi-metric-exporter
118
+ ```
119
+
98
120
You may also need to open other ports if your setup requires them. See the K3s
99
121
[ Inbound rules] ( https://docs.k3s.io/installation/requirements?_highlight=red&_highlight=hat&os=debian#inbound-rules-for-k3s-nodes )
100
122
docs for more information. If you change the default CIDR for pods or services,
0 commit comments