blob: 99f94bb33c72fcb8ece5eeec39cf50b0c2a32639 [file] [log] [blame]
Ray Milkeyd84f89b2018-08-17 14:54:17 -07001/*
2 * Copyright 2014-present Open Networking Foundation
3 *
4 * 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
7 *
8 * 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.
15 */
16package org.onosproject.cli2;
17
18import org.apache.karaf.shell.api.action.Argument;
19import org.apache.karaf.shell.api.action.Command;
20import org.apache.karaf.shell.api.action.lifecycle.Service;
21import org.onlab.packet.IpAddress;
22import org.onosproject.cluster.ClusterAdminService;
23import org.onosproject.cluster.DefaultControllerNode;
24import org.onosproject.cluster.NodeId;
25
26/**
27 * Adds a new controller cluster node.
28 */
29@Service
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 = DefaultControllerNode.DEFAULT_PORT;
45
46 @Override
47 protected void doExecute() {
48 ClusterAdminService service = get(ClusterAdminService.class);
49 service.addNode(new NodeId(nodeId), IpAddress.valueOf(ip), tcpPort);
50 }
51
52}