Github user pwendell commented on a diff in the pull request:
https://github.com/apache/spark/pull/453#discussion_r13415161
--- Diff: ec2/spark_ec2.py ---
@@ -103,6 +103,8 @@ def parse_args():
help="When destroying a cluster, delete the security groups that
were created")
parser.add_option("--use-existing-master", action="store_true",
default=False,
help="Launch fresh slaves, but use an existing stopped master if
possible")
+ parser.add_option("--ips-allowed", default="0.0.0.0/0",
+ help="IP addresses allowed to access the machine")
--- End diff --
What is the format for specifying multiple IP addresses (is it comma
separated?). It would be good to put that format in this comment. I'd also
mention that these are CIDR ranges and not individual addresses.
```
parser.add_option("--ips-allowed", default="0.0.0.0/0",
help="CIDR IP ranges allowed to access the machine. Multiple ranges
can be separated with commas.")
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---