Class KubernetesResource
- java.lang.Object
-
- org.apache.camel.quarkus.component.kubernetes.it.KubernetesResource
-
@Path("/kubernetes") @ApplicationScoped public class KubernetesResource extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) org.apache.camel.ProducerTemplateproducerTemplate
-
Constructor Summary
Constructors Constructor Description KubernetesResource()
-
-
-
Method Detail
-
readPod
@Path("/pod/{namespace}/{podName}") @GET @Produces("text/plain") public String readPod(@PathParam("namespace") String namespace, @PathParam("podName") String podName)
-
createPod
@Path("/pod/{namespace}/{podName}") @POST @Produces("text/plain") public javax.ws.rs.core.Response createPod(@PathParam("namespace") String namespace, @PathParam("podName") String podName) throws Exception- Throws:
Exception
-
-