Skip to content

Commit

Permalink
Merge pull request #29 from bgraef/main
Browse files Browse the repository at this point in the history
add nfs ports to ingress
  • Loading branch information
bgraef authored Sep 2, 2024
2 parents 6fb5b0a + 33acfc0 commit 4a67404
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ol/default_vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ update_all: false
passwordless_ssh: false
use_podman: false
use_haproxy: false
use_nginx: false
use_nginx: false
use_nfs: false
14 changes: 14 additions & 0 deletions ol/templates/ingress_security_rules.j2
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,18 @@ instance_ingress_security_rules:
destination_port_range:
max: 8080
min: 8080
{% endif %}
{% if use_nfs %}
- source: "10.0.0.0/24"
protocol: 6
tcp_options:
destination_port_range:
max: 2049
min: 2049
- source: "10.0.0.0/24"
protocol: 17
udp_options:
destination_port_range:
max: 2049
min: 2049
{% endif %}

0 comments on commit 4a67404

Please sign in to comment.