blob: 8003e2877814dd7f4dfcccf611a537555ba3ec55 [file] [log] [blame]
Jian Li1cf51882019-02-26 14:41:20 +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
18import com.fasterxml.jackson.databind.ObjectMapper;
19import com.fasterxml.jackson.databind.node.ArrayNode;
20import com.fasterxml.jackson.databind.node.ObjectNode;
21import com.google.common.collect.Lists;
22import io.fabric8.kubernetes.api.model.extensions.Ingress;
23import io.fabric8.kubernetes.client.utils.Serialization;
24import 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.K8sIngressService;
28
29import java.io.IOException;
30import java.util.Comparator;
31import java.util.List;
32
33import static org.onosproject.k8snetworking.util.K8sNetworkingUtil.prettyJson;
34
35/**
36 * Lists kubernetes ingresses.
37 */
38@Service
39@Command(scope = "onos", name = "k8s-ingresses",
40 description = "Lists all kubernetes ingresses")
41public class K8sIngressListCommand extends AbstractShellCommand {
42
43 private static final String FORMAT = "%-50s%-15s%-30s";
44
45 @Override
46 protected void doExecute() {
47 K8sIngressService service = get(K8sIngressService.class);
48 List<Ingress> ingresses = Lists.newArrayList(service.ingresses());
49 ingresses.sort(Comparator.comparing(p -> p.getMetadata().getName()));
50
51 if (outputJson()) {
52 print("%s", json(ingresses));
53 } else {
54 print(FORMAT, "Name", "Namespace", "LB Addresses");
55
56 for (Ingress ingress : ingresses) {
57
58 List<String> lbIps = Lists.newArrayList();
59
60 ingress.getStatus().getLoadBalancer()
61 .getIngress().forEach(i -> lbIps.add(i.getIp()));
62
63 print(FORMAT,
64 ingress.getMetadata().getName(),
65 ingress.getMetadata().getNamespace(),
66 lbIps.isEmpty() ? "" : lbIps);
67 }
68 }
69 }
70
71 private String json(List<Ingress> ingresses) {
72 ObjectMapper mapper = new ObjectMapper();
73 ArrayNode result = mapper.createArrayNode();
74 try {
75 for (Ingress ingress : ingresses) {
76 ObjectNode json = (ObjectNode) new ObjectMapper()
77 .readTree(Serialization.asJson(ingress));
78 result.add(json);
79 }
80 return prettyJson(mapper, result.toString());
81 } catch (IOException e) {
82 log.warn("Failed to parse ingress's JSON string.");
83 return "";
84 }
85 }
86}