Skip to content

Commit

Permalink
make the argument control_ip_list optional for setup_vnc_config, this
Browse files Browse the repository at this point in the history
will allow analytics/config to be installed/provisioned without control

Change-Id: Ie65f7381bd7f0968462f838c180308a43c082ed7
Partial-Bug: #1601897
(cherry picked from commit 8884cf0)
  • Loading branch information
Raj Reddy committed Jul 18, 2016
1 parent f387fdf commit 5e037e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contrail_provisioning/config/setup.py
Expand Up @@ -46,6 +46,7 @@ def __init__(self, args_str = None):
'manage_neutron': 'yes',
'orchestrator' : 'openstack',
'amqp_port': '5672',
'control_ip_list': '',
}
self.parse_args(args_str)

Expand Down Expand Up @@ -77,7 +78,7 @@ def parse_args(self, args_str):
parser.add_argument("--zookeeper_ip_list", help = "List of IP Addresses of zookeeper servers",
nargs='+', type=str)
parser.add_argument("--control_ip_list", help = "List of IP Addresses of Control nodes",
nargs='+', type=str)
type=str)
parser.add_argument("--quantum_port", help = "Quantum Server port")
parser.add_argument("--quantum_service_protocol", help = "Protocol of quantum/neutron for nova to use ")
parser.add_argument("--keystone_auth_protocol",
Expand Down

0 comments on commit 5e037e2

Please sign in to comment.