Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remote debug container in kubernetes using intellij

I try to remote debug the application in attached mode with host: 192.168.99.100 and port 5005, but it tells me that it is unable to open the debugger port. The IP is 192.268.99.100 (the cluster is hosted locally via minikube).

Output of kubectl describe service catalogservice

Name:                     catalogservice
Namespace:                default
Labels:                   <none>
Annotations:              <none>
Selector:                 app=catalogservice
Type:                     NodePort
IP:                       10.98.238.198
Port:                     web  31003/TCP
TargetPort:               8080/TCP
NodePort:                 web  31003/TCP
Endpoints:                172.17.0.6:8080
Port:                     debug  5005/TCP
TargetPort:               5005/TCP
NodePort:                 debug  32003/TCP
Endpoints:                172.17.0.6:5005
Session Affinity:         None
External Traffic Policy:  Cluster
Events:                   <none>

This is the pods service.yml:

apiVersion: v1
kind: Service
metadata:
  name: catalogservice
spec:
  type: NodePort
  selector:
    app: catalogservice
  ports:
  - name: web
    protocol: TCP
    port: 31003
    nodePort: 31003
    targetPort: 8080
  - name: debug
    protocol: TCP 
    port: 5005
    nodePort: 32003
    targetPort: 5005

And in here I expose the containers port

spec:
  containers:
  - name: catalogservice
    image: elps/myimage
    ports:
    - containerPort: 8080
      name: app
    - containerPort: 5005
      name: debug

The way I build the image:

FROM openjdk:11
VOLUME /tmp
EXPOSE 8082
ADD /target/catalogservice-0.0.1-SNAPSHOT.jar catalogservice-0.0.1-SNAPSHOT.jar
ENTRYPOINT ["java", "-agentlib:jdwp=transport=dt_socket,address=5005,server=y,suspend=n", "-jar", "catalogservice-0.0.1-SNAPSHOT.jar"]

When I execute nmap -p 5005 192.168.99.100 I receive

PORT     STATE  SERVICE
5005/tcp closed avt-profile-2

When I execute nmap -p 32003 192.168.99.100 I receive

PORT     STATE  SERVICE
32003/tcp closed unknown

When I execute nmap -p 31003 192.168.99.100 I receive

PORT     STATE  SERVICE
31003/tcp open unknown

When I execute kubectl get services I receive

NAME              TYPE        CLUSTER-IP       EXTERNAL-IP   PORT(S)                          AGE
catalogservice    NodePort    10.108.195.102   <none>        31003:31003/TCP,5005:32003/TCP   14m

minikube service customerservice --url returns

http://192.168.99.100:32004
like image 625
elp Avatar asked Dec 18 '18 15:12

elp


People also ask

How do I debug a docker container in IntelliJ?

From the main menu, select Run | Edit Configurations. and select Remote JVM Debug. and select Launch Docker Before Debug. Make sure that the ports in the Configure Docker dialog and in the remote debug configuration match.

How do you debug Kubernetes deployments?

To debug a Kubernetes deployment, IT teams must start by following the basic rules of troubleshooting and then move to the smaller details to find the root cause of the problem. Kubernetes is complicated, with many components and variables that make it difficult to understand how, why and when something goes wrong.


2 Answers

As an alternative to using a NodePort in a Service you could also use kubectl port-forward to access the debug port in your Pod.

kubectl port-forward allows using resource name, such as a pod name, to select a matching pod to port forward to since Kubernetes v1.10.

You need to expose the debug port in the Deployment yaml for the Pod

spec:
  containers:
    ...
    ports:
      ...
      - containerPort: 5005

Then get the name of your Pod via

kubectl get pods

and then add a port-forwarding to that Pod

kubectl port-forward podname 5005:5005

In IntelliJ you will be able to connect to

Host: localhost

Port: 5005

like image 70
brass monkey Avatar answered Sep 18 '22 08:09

brass monkey


Alternatively, you can use the Cloud Code Intellij plugin. Also, if you use Fabric8, it provides the fabric8:debug goal.

like image 30
OlgaMaciaszek Avatar answered Sep 19 '22 08:09

OlgaMaciaszek