Skip to content

Commit

Permalink
Merge pull request #17 from cloudfly/master
Browse files Browse the repository at this point in the history
remote --domain options in bootstrap
  • Loading branch information
sunyi00 committed May 23, 2016
2 parents 247ce8e + be12f97 commit 3c168af
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def main():
help="host network subnet [default: auto default]")
parser.add_option('--vip',
help="Floating IP for external visiting")
parser.add_option('--domain', default='lain.local',
help="Default domain for apps in the cluster [default: lain.local]")
# parser.add_option('--domain', default='lain.local',
# help="Default domain for apps in the cluster [default: lain.local]")
parser.add_option('--net-interface',
help="network interface to communicate with cluster [default: auto detect]")
parser.add_option('-v', '--verbose', action='store_true',
Expand Down Expand Up @@ -199,7 +199,8 @@ def apply_bootstrap_playbook(options):
node_ip=options.node_ip,
node_network=options.node_network,
vip=options.vip,
domain=options.domain,
# domain=options.domain,
domain="lain.local",
net_interface=options.net_interface,
allow_restart_docker='yes',
bootstrapping='yes',
Expand Down

0 comments on commit 3c168af

Please sign in to comment.