use of io.fabric8.kubernetes.client.DefaultKubernetesClient in project fabric8 by fabric8io.
the class Apply method main.
public static void main(String... args) {
if (args.length < 1) {
System.out.println("Usage jsonFileToApply");
return;
}
try {
KubernetesClient kube = new DefaultKubernetesClient();
File file = new File(args[0]);
System.out.println("Applying file: " + file);
if (!file.exists() || !file.isFile()) {
System.out.println("File does not exist! " + file.getAbsolutePath());
return;
}
Controller controller = new Controller(kube);
String answer = controller.apply(file);
System.out.println("Applied!: " + answer);
} catch (Exception e) {
System.out.println("FAILED: " + e);
e.printStackTrace();
}
}
use of io.fabric8.kubernetes.client.DefaultKubernetesClient in project fabric8 by fabric8io.
the class CreateBuildConfig method main.
public static void main(String... args) {
if (args.length < 1) {
System.out.println("Usage nameOfBuildConfig");
return;
}
try {
KubernetesClient kube = new DefaultKubernetesClient();
String name = args[0];
String namespace = kube.getNamespace();
if (Strings.isNullOrBlank(namespace)) {
namespace = KubernetesHelper.defaultNamespace();
}
if (Strings.isNullOrBlank(namespace)) {
namespace = "default";
}
System.out.println("Creating a BuildConfig for name: " + name + " in namespace: " + namespace);
BuildConfig buildConfig = new BuildConfigBuilder().withNewMetadata().withName(name).withNamespace(namespace).endMetadata().withNewSpec().withNewSource().withType("Git").withNewGit().withUri("http://gogs.vagrant.f8/gogsadmin/" + name + ".git").endGit().endSource().endSpec().build();
System.out.println("Creating BuildConfig: " + buildConfig);
Controller controller = new Controller(kube);
if (controller.getNamespace() == null) {
controller.setNamespace(namespace);
}
controller.applyBuildConfig(buildConfig, "Generated!");
System.out.println("Applied!: " + name);
} catch (Exception e) {
System.out.println("FAILED: " + e);
e.printStackTrace();
}
}
use of io.fabric8.kubernetes.client.DefaultKubernetesClient in project fabric8 by fabric8io.
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 fabric8io.
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 syndesis by syndesisio.
the class PodMetricsReaderTest method readTest.
@Test
@Ignore
public void readTest() {
String podName = "dbtest1-2-3nvf3";
String integration = "DBTest1";
String integrationId = "-L5ApZneYNfmLWG-PKQt";
String version = "1";
PodMetricsReader reader = new PodMetricsReader(new DefaultKubernetesClient(), podName, integration, integrationId, version, new LogRawMetrics());
reader.run();
}
Aggregations