Skip to content
Advertisement

Tag: kubernetes

Can’t connect to kubernetes API from inside the cluster

I’m trying to use the fabric8io/kubernetes-client in a simple example on my local minikube cluster where I get an IP of a pod some-pod-name-jnfen3 is a name of a pod which finished execution and visible if I execute kubectl get pods. https://localhost:32780/ is a kubernetes API host which I get from kubectl config view -o jsonpath=”{.clusters[?(@.name==”minikube”)].cluster.server}”. minikube has only 1

Docker and Java – FontConfiguration issue

We’ve got a Java application that generates word documents using a 3rd party (Asposee but I don’t think it matters here). The app is built from a simple Docker file: When we build the application locally (mvn package then docker build) and run the application inside k8s it works well. However, when we build the image in our CI/CD pipeline

Full example of container deployment with fabric8 api

I am looking for a complete example that explains the deployment of application container using the fabric8 java API. What should be the execution order of the following concepts? Service Replication Controller Pod Docker container And how to configure them together? Answer Please read the kubernetes user-guide for the basic concepts in kubernetes, and tutorials for examples and common usage

Advertisement