I am trying to find an example that helps deploy a docker image on the kubernetes cluster from java. I came across fabric8,(http://fabric8.io/) that does this but could not find a specific example or API reference
相关问题
- Microk8s, MetalLB, ingress-nginx - How to route ex
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- How do I change the storage class of existing pers
There is an example of creating a Replication controller here:
https://github.com/fabric8io/kubernetes-client/blob/master/kubernetes-examples/src/main/java/io/fabric8/kubernetes/examples/FullExample.java#L75
Creating a Replication Controller is an indirect but recommended way to create a pod.
A pod has one or more docker containers in it.