blob: 63019c3cd2f4ea39510a33d7484098beca3e0e81 [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska7d693f52014-10-21 19:17:57 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
Thomas Vachuska7d693f52014-10-21 19:17:57 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Thomas Vachuska7d693f52014-10-21 19:17:57 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cli;
tom9710fb42014-09-29 11:35:28 -070017
18import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.cluster.ClusterAdminService;
Thomas Vachuskade563cf2015-04-01 00:28:50 -070021import org.onosproject.cluster.DefaultControllerNode;
Brian O'Connorabafb502014-12-02 22:26:20 -080022import org.onosproject.cluster.NodeId;
Pavlin Radoslavov444b5192014-10-28 10:45:19 -070023import org.onlab.packet.IpAddress;
tom9710fb42014-09-29 11:35:28 -070024
25/**
26 * Adds a new controller cluster node.
27 */
28@Command(scope = "onos", name = "add-node",
29 description = "Adds a new controller cluster node")
30public class NodeAddCommand extends AbstractShellCommand {
31
32 @Argument(index = 0, name = "nodeId", description = "Node ID",
33 required = true, multiValued = false)
34 String nodeId = null;
35
36 @Argument(index = 1, name = "ip", description = "Node IP address",
37 required = true, multiValued = false)
38 String ip = null;
39
40 @Argument(index = 2, name = "tcpPort", description = "Node TCP listen port",
41 required = false, multiValued = false)
Thomas Vachuskade563cf2015-04-01 00:28:50 -070042 int tcpPort = DefaultControllerNode.DEFAULT_PORT;
tom9710fb42014-09-29 11:35:28 -070043
44 @Override
45 protected void execute() {
46 ClusterAdminService service = get(ClusterAdminService.class);
Pavlin Radoslavov444b5192014-10-28 10:45:19 -070047 service.addNode(new NodeId(nodeId), IpAddress.valueOf(ip), tcpPort);
tom9710fb42014-09-29 11:35:28 -070048 }
49
50}