Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stephan/feat/hue firewall #205

Merged
merged 3 commits into from
Oct 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 34 additions & 2 deletions tdp_vars_defaults/firewall/firewall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -818,6 +818,17 @@ firewalld_rules:
- public
state: present

# Hue
hue_server:
- name: hue_web_http_port
short: Hue - HTTP port - bind_url_port
port: "{{ hue_web_http_port }}"
protocol: tcp
zones:
- internal
- public
state: present

# Jupyter
jupyter_hub:
- name: jupyterhub_http_port
Expand All @@ -836,8 +847,8 @@ firewalld_rules:
- internal
state: present

# Livy
livy:
# Livy for Spark2
livy_server:
- name: livy_spark2_server_port
short: livy spark2 - HTTP port - livy.server.port
port: "{{ livy_spark2_server_port }}"
Expand All @@ -846,6 +857,18 @@ firewalld_rules:
- internal
- public
state: present
# Prometheus exporter
- name: exporter_livy_spark_http_port
short: livy spark2 - Prometheus exporter HTTP port - ?
port: "{{ exporter_livy_spark_http_port }}"
protocol: tcp
zones:
- internal
- public
state: present

# Livy for Spark3
livy_spark3_server:
- name: livy_spark3_server_port
short: livy spark3 - HTTP port - livy.server.port
port: "{{ livy_spark3_server_port }}"
Expand All @@ -854,3 +877,12 @@ firewalld_rules:
- internal
- public
state: present
# Prometheus exporter
- name: exporter_livy_spark3_http_port
short: livy spark3 - Prometheus exporter HTTP port - ?
port: "{{ exporter_livy_spark3_http_port }}"
protocol: tcp
zones:
- internal
- public
state: present
Loading