Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
IPv6: Envoy bootstrap localhost
Sets the localhost IP to ::1 for the admin port 15000 of envoy.
Note: This forces the template to use an IPv6 address, and, as a result,
the golden test files are updated. This should be made configurable
to allow IPv4 or IPv6 operation.
  • Loading branch information
pmichali committed Mar 5, 2018
1 parent e7e5d48 commit 21b82c4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/bootstrap/testdata/all_golden.json
Expand Up @@ -6,7 +6,7 @@
"access_log_path": "/dev/stdout",
"address": {
"socket_address": {
"address": "127.0.0.1",
"address": "::1",
"port_value": 15000
}
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/bootstrap/testdata/auth_golden.json
Expand Up @@ -6,7 +6,7 @@
"access_log_path": "/dev/stdout",
"address": {
"socket_address": {
"address": "127.0.0.1",
"address": "::1",
"port_value": 15000
}
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/bootstrap/testdata/default_golden.json
Expand Up @@ -6,7 +6,7 @@
"access_log_path": "/dev/stdout",
"address": {
"socket_address": {
"address": "127.0.0.1",
"address": "::1",
"port_value": 15000
}
}
Expand Down
2 changes: 1 addition & 1 deletion tools/deb/envoy_bootstrap_tmpl.json
Expand Up @@ -6,7 +6,7 @@
"access_log_path": "/dev/stdout",
"address": {
"socket_address": {
"address": "127.0.0.1",
"address": "::1",
"port_value": 15000
}
}
Expand Down

0 comments on commit 21b82c4

Please sign in to comment.