Skip to content

Commit

Permalink
set internal-ip-address to true by default and lint
Browse files Browse the repository at this point in the history
  • Loading branch information
iris-garden committed Aug 5, 2024
1 parent 940b1b1 commit 91706bf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions hail/python/hailtop/hailctl/dataproc/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,11 @@ def start(
bool, Opt(help='Enable debug features on created cluster (heap dump on out-of-memory error)')
] = False,
public_ip_address: Ann[
bool, Opt(help='Allow nodes to have a public IP address, and hence make requests on the public internet (default is internal-only from dataproc 2.2).')
] = False,
bool,
Opt(
help='Allow nodes to have a public IP address, and hence make requests on the public internet (default is internal-only from dataproc 2.2).'
),
] = True,
):
"""
Start a Dataproc cluster configured for Hail.
Expand Down

0 comments on commit 91706bf

Please sign in to comment.