blob: e54081cad9e3242365ff8f881aa9f9deace8b567 [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
tom9710fb42014-09-29 11:35:28 -070019package org.onlab.onos.cli;
20
21import org.apache.karaf.shell.commands.Argument;
22import org.apache.karaf.shell.commands.Command;
23import org.onlab.onos.cluster.ClusterAdminService;
24import org.onlab.onos.cluster.NodeId;
Pavlin Radoslavov444b5192014-10-28 10:45:19 -070025import org.onlab.packet.IpAddress;
tom9710fb42014-09-29 11:35:28 -070026
27/**
28 * Adds a new controller cluster node.
29 */
30@Command(scope = "onos", name = "add-node",
31 description = "Adds a new controller cluster node")
32public class NodeAddCommand extends AbstractShellCommand {
33
34 @Argument(index = 0, name = "nodeId", description = "Node ID",
35 required = true, multiValued = false)
36 String nodeId = null;
37
38 @Argument(index = 1, name = "ip", description = "Node IP address",
39 required = true, multiValued = false)
40 String ip = null;
41
42 @Argument(index = 2, name = "tcpPort", description = "Node TCP listen port",
43 required = false, multiValued = false)
44 int tcpPort = 9876;
45
46 @Override
47 protected void execute() {
48 ClusterAdminService service = get(ClusterAdminService.class);
Pavlin Radoslavov444b5192014-10-28 10:45:19 -070049 service.addNode(new NodeId(nodeId), IpAddress.valueOf(ip), tcpPort);
tom9710fb42014-09-29 11:35:28 -070050 }
51
52}