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

add internal node IPs #157

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
8 changes: 8 additions & 0 deletions ops/staging-deploy.tmpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,14 @@ nginx:
set_real_ip_from 2405:8100::/32;
set_real_ip_from 2a06:98c0::/29;
set_real_ip_from 2c0f:f248::/32;
# Added by RM Adding _internal_ node IPs to
# see if this helps with getting the client
# IP to pods (bit of a punt)
set_real_ip_from 192.168.92.139/32;
set_real_ip_from 192.168.177.103/32;
set_real_ip_from 192.168.191.120/32;
set_real_ip_from 192.168.192.119/32;
set_real_ip_from 192.168.223.177/32;

real_ip_header X-Forwarded-For;
real_ip_recursive on;
Expand Down