Skip to content

Commit

Permalink
provisioner nat setup for workers
Browse files Browse the repository at this point in the history
provisioner nat setup for workers

provisioner nat setup for workers
  • Loading branch information
Cbkhare authored and gauravgahlot committed Jan 4, 2021
1 parent 9f96b8b commit 57eb0ef
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,12 @@ whats_next() (
echo "$BLANK Follow the steps described in https://tinkerbell.org/examples/hello-world/ to say 'Hello World!' with a workflow."
)

setup_nat() (
iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
iptables -A FORWARD -i eth0 -o eth1 -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
)

do_setup() (
# perform some very rudimentary platform detection
lsb_dist=$(get_distribution)
Expand All @@ -502,7 +508,7 @@ do_setup() (
source "$ENV_FILE"

setup_networking "$lsb_dist" "$lsb_version"

setup_nat
setup_osie
generate_certificates
setup_docker_registry
Expand Down

0 comments on commit 57eb0ef

Please sign in to comment.