Closed luca-ma closed 1 month ago
401 indicates that you are not authorized. That's probably not an error in this client, depending on where you are running the code you may need to add permissions for a pod service account or ensure that you have a kubeconfig file in the right location.
Also, client version 0.13.0 isvery old, please update to the latest client.
Hi, I have to access a k8s cluster to perform a simple read from outside the cluster itself (I can't use a kuconfig file). Could it be that the problem is the one listed here https://github.com/kubernetes-client/java/wiki/7.-FAQ ? thanks in advance luca
Il giorno mer 8 mag 2024 alle ore 18:31 Brendan Burns < @.***> ha scritto:
401 indicates that you are not authorized. That's probably not an error in this client, depending on where you are running the code you may need to add permissions for a pod service account or ensure that you have a kubeconfig file in the right location.
— Reply to this email directly, view it on GitHub https://github.com/kubernetes-client/java/issues/3390#issuecomment-2100961973, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABDNO6SPVJZKX7W5EDRL5RLZBJHM3AVCNFSM6AAAAABHM6QUOSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMBQHE3DCOJXGM . You are receiving this because you authored the thread.Message ID: @.***>
OK thank you I'll switch to the latest version (20.0.1) regards luca
Il giorno mer 8 mag 2024 alle ore 18:31 Brendan Burns < @.***> ha scritto:
Also, client version 0.13.0 isvery old, please update to the latest client.
— Reply to this email directly, view it on GitHub https://github.com/kubernetes-client/java/issues/3390#issuecomment-2100962613, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABDNO6WYC5PKNELBUWYI7X3ZBJHOHAVCNFSM6AAAAABHM6QUOSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMBQHE3DENRRGM . You are receiving this because you authored the thread.Message ID: @.***>
That FAQ entry is for Pods running inside the cluster, but it sounds like you are accessing from outside the cluster.
In that case you need some way to authenticate and authorize your client. The easiest way to do that is to supply a Kubeconfig file, alternately you can set up the client programatically with a certificate/token for doing authentication, but that is definitely harder.
The Kubernetes project currently lacks enough contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle stale
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle stale
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle rotten
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle rotten
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs.
This bot triages issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/reopen
/remove-lifecycle rotten
Please send feedback to sig-contributor-experience at kubernetes/community.
/close not-planned
@k8s-triage-robot: Closing this issue, marking it as "Not Planned".
Describe the bug Hi, I'm using your example https://github.com/kubernetes-client/java/blob/master/examples/examples-release-18/src/main/java/io/kubernetes/client/examples/Example.java to get all Pod in a K8s cluster.
CoreV1Api.listPodForAllNamespaces return a 401 response.
Could you suggest how to configure the client to correctly access the cluster? thanks in advance luca
Client Version 13.0.0
Kubernetes Version 1.29
Java Version java 11