All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kubernetes.client.examples.ProtoExample Maven / Gradle / Ivy

The newest version!
/*
Copyright 2020 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package io.kubernetes.client.examples;

import io.kubernetes.client.ProtoClient;
import io.kubernetes.client.ProtoClient.ObjectOrStatus;
import io.kubernetes.client.openapi.ApiClient;
import io.kubernetes.client.openapi.ApiException;
import io.kubernetes.client.openapi.Configuration;
import io.kubernetes.client.proto.Meta.ObjectMeta;
import io.kubernetes.client.proto.V1.Namespace;
import io.kubernetes.client.proto.V1.NamespaceSpec;
import io.kubernetes.client.proto.V1.Pod;
import io.kubernetes.client.proto.V1.PodList;
import io.kubernetes.client.util.Config;
import java.io.IOException;

/**
 * A simple example of how to use the Java API
 *
 * 

Easiest way to run this: mvn exec:java * -Dexec.mainClass="io.kubernetes.client.examples.ProtoExample" * *

From inside $REPO_DIR/examples */ public class ProtoExample { public static void main(String[] args) throws IOException, ApiException, InterruptedException { ApiClient client = Config.defaultClient(); Configuration.setDefaultApiClient(client); ProtoClient pc = new ProtoClient(client); ObjectOrStatus list = pc.list(PodList.newBuilder(), "/api/v1/namespaces/default/pods"); if (list.object.getItemsCount() > 0) { Pod p = list.object.getItems(0); System.out.println(p); } Namespace namespace = Namespace.newBuilder().setMetadata(ObjectMeta.newBuilder().setName("test").build()).build(); ObjectOrStatus ns = pc.create(namespace, "/api/v1/namespaces", "v1", "Namespace"); System.out.println(ns); if (ns.object != null) { namespace = ns.object .toBuilder() .setSpec(NamespaceSpec.newBuilder().addFinalizers("test").build()) .build(); // This is how you would update an object, but you can't actually // update namespaces, so this returns a 405 ns = pc.update(namespace, "/api/v1/namespaces/test", "v1", "Namespace"); System.out.println(ns.status); } ns = pc.delete(Namespace.newBuilder(), "/api/v1/namespaces/test"); System.out.println(ns); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy