use of io.fabric8.kubernetes.client.DefaultKubernetesClient in project fabric8 by jboss-fuse.
the class DeleteBuildConfig method main.
public static void main(String... args) {
if (args.length < 1) {
System.out.println("Usage nameOfBuildConfig");
return;
}
try {
String name = args[0];
System.out.println("Deleting BuildConfig: " + name);
KubernetesClient kube = new DefaultKubernetesClient();
String namespace = kube.getNamespace();
System.out.println("Using namespace: " + namespace);
Controller controller = new Controller(kube);
OpenShiftClient openshift = controller.getOpenShiftClientOrJenkinshift();
if (openshift == null) {
System.err.println("Cannot connect to OpenShift or Jenkinshift!");
return;
}
BuildConfig buildConfig = openshift.buildConfigs().withName(name).get();
if (buildConfig != null) {
System.out.println("Managed to load BuildConfig with resourceVersion " + KubernetesHelper.getResourceVersion(buildConfig));
} else {
System.err.println("Could not find BuildConfig called: " + name);
return;
}
Boolean result = openshift.buildConfigs().withName(name).delete();
System.out.println("Deleted BuildConfig with name " + name + " result: " + result);
} catch (Exception e) {
System.out.println("FAILED: " + e);
e.printStackTrace();
}
}
use of io.fabric8.kubernetes.client.DefaultKubernetesClient in project fabric8 by jboss-fuse.
the class GetServiceURL method main.
public static void main(String... args) {
if (args.length < 1) {
System.out.println("Usage nameOfService");
return;
}
try {
String name = args[0];
KubernetesClient kube = new DefaultKubernetesClient();
String namespace = kube.getNamespace();
if (Strings.isNullOrBlank(namespace)) {
namespace = "default";
}
String url = KubernetesHelper.getServiceURL(kube, name, namespace, "http", true);
System.out.println("Service " + name + " has external URL: " + url);
} catch (Exception e) {
System.out.println("FAILED: " + e);
e.printStackTrace();
}
}
use of io.fabric8.kubernetes.client.DefaultKubernetesClient in project fabric8 by jboss-fuse.
the class IsOpenShift method main.
public static void main(String... args) {
KubernetesClient client = new DefaultKubernetesClient();
try {
boolean openShift = KubernetesHelper.isOpenShift(client);
System.out.println("OpenShift: " + openShift);
} catch (Exception e) {
System.out.println("FAILED: " + e);
e.printStackTrace();
}
}
use of io.fabric8.kubernetes.client.DefaultKubernetesClient in project fabric8 by jboss-fuse.
the class PodIdToReplicationControllerIDExample method main.
public static void main(String[] args) {
if (args.length < 3) {
System.out.println("Arguments: kuberneteMasterUrl namespace podID");
return;
}
String kuberneteMasterUrl = args[0];
String namespace = args[1];
String podID = args[2];
System.out.println("Looking up ReplicationController for pod ID: " + podID);
KubernetesClient client = new DefaultKubernetesClient(new ConfigBuilder().withMasterUrl(kuberneteMasterUrl).build());
Pod pod = (Pod) client.pods().inNamespace(namespace).withName(podID);
pod.getMetadata().getLabels();
List<ReplicationController> replicationControllers = client.replicationControllers().inNamespace(namespace).withLabels(pod.getMetadata().getLabels()).list().getItems();
if (replicationControllers.size() == 1) {
ReplicationController replicationController = replicationControllers.get(0);
String id = KubernetesHelper.getName(replicationController);
System.out.println("Found replication controller: " + id);
} else {
System.out.println("Could not find replication controller!");
}
}
use of io.fabric8.kubernetes.client.DefaultKubernetesClient in project fabric8 by jboss-fuse.
the class Example method main.
public static void main(String... args) {
System.out.println("\n\nfabric8 Kubernetes-api example");
KubernetesClient kube = new DefaultKubernetesClient();
System.out.println("=========================================================================");
try {
listPods(kube);
listReplicationControllers(kube);
listServices(kube);
listServiceAccounts(kube);
listEndpoints(kube);
} catch (Exception e) {
System.out.println("FAILED: " + e);
e.printStackTrace();
} finally {
kube.close();
}
System.out.println("=========================================================================");
}
Aggregations