blob: 5258c18e64637497eab2b9ff682cb506d6dbe6be [file] [log] [blame]
Jian Lib1cd0b02019-02-21 16:41:40 +09001/*
2 * Copyright 2019-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.k8snetworking.cli;
17
Jian Lica34c672019-02-26 14:04:08 +090018import com.fasterxml.jackson.databind.ObjectMapper;
19import com.fasterxml.jackson.databind.node.ArrayNode;
20import com.fasterxml.jackson.databind.node.ObjectNode;
Jian Lib1cd0b02019-02-21 16:41:40 +090021import com.google.common.collect.Lists;
22import io.fabric8.kubernetes.api.model.Endpoints;
Jian Lica34c672019-02-26 14:04:08 +090023import io.fabric8.kubernetes.client.utils.Serialization;
Jian Lib1cd0b02019-02-21 16:41:40 +090024import org.apache.karaf.shell.api.action.Command;
25import org.apache.karaf.shell.api.action.lifecycle.Service;
26import org.onosproject.cli.AbstractShellCommand;
27import org.onosproject.k8snetworking.api.K8sEndpointsService;
28
Jian Lica34c672019-02-26 14:04:08 +090029import java.io.IOException;
Jian Lib1cd0b02019-02-21 16:41:40 +090030import java.util.Comparator;
31import java.util.List;
32
Jian Lica34c672019-02-26 14:04:08 +090033import static org.onosproject.k8snetworking.util.K8sNetworkingUtil.prettyJson;
34
Jian Lib1cd0b02019-02-21 16:41:40 +090035/**
36 * Lists kubernetes endpoints.
37 */
38@Service
39@Command(scope = "onos", name = "k8s-endpoints",
40 description = "Lists all kubernetes endpoints")
41public class K8sEndpointsListCommand extends AbstractShellCommand {
42
43 private static final String FORMAT = "%-50s%-50s%-20s";
Jian Li2cc2b632019-02-18 00:56:40 +090044 private static final String PORT_PROTOCOL_SEPARATOR = "/";
Jian Lib1cd0b02019-02-21 16:41:40 +090045
46 @Override
47 protected void doExecute() {
48 K8sEndpointsService service = get(K8sEndpointsService.class);
49 List<Endpoints> endpointses = Lists.newArrayList(service.endpointses());
50 endpointses.sort(Comparator.comparing(e -> e.getMetadata().getName()));
51
Jian Lica34c672019-02-26 14:04:08 +090052 if (outputJson()) {
53 print("%s", json(endpointses));
54 } else {
55 print(FORMAT, "Name", "IP Addresses", "Ports");
Jian Lib1cd0b02019-02-21 16:41:40 +090056
Jian Lica34c672019-02-26 14:04:08 +090057 for (Endpoints endpoints : endpointses) {
Jian Lib1cd0b02019-02-21 16:41:40 +090058
Jian Lica34c672019-02-26 14:04:08 +090059 List<String> ips = Lists.newArrayList();
60 List<String> portWithProtocol = Lists.newArrayList();
Jian Lib1cd0b02019-02-21 16:41:40 +090061
Jian Lica34c672019-02-26 14:04:08 +090062 endpoints.getSubsets().forEach(e -> {
63 e.getAddresses().forEach(a -> ips.add(a.getIp()));
64 e.getPorts().forEach(p -> portWithProtocol.add(p.getPort() +
65 PORT_PROTOCOL_SEPARATOR + p.getProtocol()));
66 });
Jian Lib1cd0b02019-02-21 16:41:40 +090067
Jian Lica34c672019-02-26 14:04:08 +090068 print(FORMAT,
69 endpoints.getMetadata().getName(),
70 ips.isEmpty() ? "" : ips,
71 portWithProtocol.isEmpty() ? "" : portWithProtocol);
72 }
73 }
74 }
75
76 private String json(List<Endpoints> endpointses) {
77 ObjectMapper mapper = new ObjectMapper();
78 ArrayNode result = mapper.createArrayNode();
79 try {
80 for (Endpoints endpoints : endpointses) {
81 ObjectNode json = (ObjectNode) new ObjectMapper()
82 .readTree(Serialization.asJson(endpoints));
83 result.add(json);
84 }
85 return prettyJson(mapper, result.toString());
86 } catch (IOException e) {
87 log.warn("Failed to parse endpoints's JSON string.");
88 return "";
Jian Lib1cd0b02019-02-21 16:41:40 +090089 }
90 }
91}