
Usage: nsxadmin -r cluster -o show Output example: NSX Cluster has 3 manager nodes: 10.192.210.183 10.192.210.184 10.192.210.185 Change-Id: I1a138c759c52e25481fdf34f1ed3d861470adf3e
40 lines
1.5 KiB
Python
40 lines
1.5 KiB
Python
# Copyright 2018 VMware, Inc. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from neutron_lib.callbacks import registry
|
|
from oslo_log import log as logging
|
|
|
|
from vmware_nsx.shell.admin.plugins.common import constants
|
|
from vmware_nsx.shell.admin.plugins.common import utils as admin_utils
|
|
from vmware_nsx.shell.admin.plugins.nsxv3.resources import utils
|
|
from vmware_nsx.shell import resources as shell
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
@admin_utils.output_header
|
|
def find_cluster_managers_ips(resource, event, trigger, **kwargs):
|
|
"""Show the current NSX rate limit."""
|
|
|
|
nsxlib = utils.get_connected_nsxlib()
|
|
manager_ips = nsxlib.cluster_nodes.get_managers_ips()
|
|
LOG.info("NSX Cluster has %s manager nodes:", len(manager_ips))
|
|
for ip in manager_ips:
|
|
LOG.info("%s", str(ip))
|
|
|
|
|
|
registry.subscribe(find_cluster_managers_ips,
|
|
constants.CLUSTER,
|
|
shell.Operations.SHOW.value)
|