use of io.fabric8.kubernetes.client.KubernetesClient in project fabric8 by fabric8io.
the class Services method toServiceUrl.
public static String toServiceUrl(String serviceName, String serviceProtocol, String servicePortName, String servicePath, boolean serviceExternal) {
KubernetesClient client = KubernetesHolder.getClient();
String serviceNamespace = client.getNamespace();
String actualProtocol = Strings.isNullOrBlank(serviceProtocol) ? DEFAULT_PROTO : serviceProtocol;
return URLUtils.pathJoin(KubernetesHelper.getServiceURL(client, serviceName, serviceNamespace, actualProtocol, servicePortName, serviceExternal), servicePath);
}
use of io.fabric8.kubernetes.client.KubernetesClient 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.KubernetesClient 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.KubernetesClient 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.KubernetesClient in project fabric8 by fabric8io.
the class Example method listServiceAccounts.
protected static void listServiceAccounts(KubernetesClient kube) {
System.out.println("\n\nLooking up service accounts");
System.out.println("=========================================================================");
ServiceAccountList serviceAccounts = kube.serviceAccounts().list();
List<ServiceAccount> serviceAccountItems = serviceAccounts.getItems();
for (ServiceAccount serviceAccount : serviceAccountItems) {
System.out.println("Service Account " + KubernetesHelper.getName(serviceAccount) + " labels: " + serviceAccount.getMetadata().getLabels());
}
System.out.println();
}
Aggregations