Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot connect to Azure kubernetes cluster using c# sdk #1480

Open
Ranjit-Kumar-Konjeti opened this issue Dec 12, 2023 · 16 comments
Open

Cannot connect to Azure kubernetes cluster using c# sdk #1480

Ranjit-Kumar-Konjeti opened this issue Dec 12, 2023 · 16 comments
Labels
lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale.

Comments

@Ranjit-Kumar-Konjeti
Copy link

Describe the bug
A clear and concise description of what the bug is.

Kubernetes C# SDK Client Version
e.g. 12.1.1

Server Kubernetes Version
e.g. 1.25.5

Dotnet Runtime Version
e.g. net6

To Reproduce
Following this doc: https://github.com/kubernetes-client/csharp/blob/master/README.md
var namespaces = client.CoreV1.ListNamespace();
foreach (var ns in namespaces.Items) {
Console.WriteLine(ns.Metadata.Name);
var list = client.CoreV1.ListNamespacedPod(ns.Metadata.Name);
foreach (var item in list.Items)
{
Console.WriteLine(item.Metadata.Name);
}
}

The above code does not work on the line : var namespaces = client.CoreV1.ListNamespace();
Code/visual studio 2022 hangs there
I am using this c# kubernetes client library with client.CoreV1.ListNamespace(); I tried setting KUBECTL_PROXY and updating the host to http: //proxyip:8001 and I am not using kube login. code execution stops at the above line and my visual studio 2022 hangs and I see messages thread exited in the output window. I can get all the details by connecting to cluster using kubectl commands in the terminal window. but not through c# libraray.

Expected behavior
expect to list namespaces

KubeConfig
normal AKS kube config file , which I can be able to connect using kubectl

Where do you run your app with Kubernetes SDK (please complete the following information):

  • OS: [Windows]
  • Environment [desktop application]
  • Cloud [Azure]

Additional context
Add any other context about the problem here.

@tg123
Copy link
Member

tg123 commented Dec 12, 2023

could you please paste any error you saw?

@Ranjit-Kumar-Konjeti
Copy link
Author

I do not see any error, the code just hangs and I just see messages with thread exited in output window

@tg123
Copy link
Member

tg123 commented Dec 13, 2023

kubelogin in kubeconfig?

@Ranjit-Kumar-Konjeti
Copy link
Author

kuebconfig

@tg123
Copy link
Member

tg123 commented Dec 13, 2023

i mean are you using kubelogin?
you can check kubeconfig

most likely caused by waiting for stdin

@Ranjit-Kumar-Konjeti
Copy link
Author

I am not using kubelogin. I am just using kubeconfig to connect to cluster and check the namespace

@Ranjit-Kumar-Konjeti
Copy link
Author

Ranjit-Kumar-Konjeti commented Dec 13, 2023

what should i do if the process is waiting for stdin? I verified there is no kubelogin in kubeconfg file

@tg123
Copy link
Member

tg123 commented Dec 14, 2023

could you please share your kubeconfig? remove all sensitive info before paste

@Ranjit-Kumar-Konjeti
Copy link
Author

Ranjit-Kumar-Konjeti commented Dec 14, 2023

apiVersion: v1
clusters:

  • cluster:
    certificate-authority-data:
    xxx
    server: xxxx
    name:
  • cluster:xxx
    certificate-authority-data:
    xxxx
    server: xxxx
    name:
    contexts:
  • context:
    cluster:xxxx
    user: clusterAdmin_XXXXX
    name:
  • context:
    cluster: xxxx
    user: clusterAdmin_XXXXX
    name: XXXX-admin
    current-context: XXXX-admin
    kind: Config
    preferences: {}
    users:
  • name: clusterAdmin_XXXXX
    user:
    client-certificate-data:
    xxxx
    client-key-data:
    xxxxx
    token:xxxx

@Ranjit-Kumar-Konjeti
Copy link
Author

any update here ? @tg123

@tg123
Copy link
Member

tg123 commented Dec 19, 2023

cant repro, could you please do a dump to see what stuck?

@im2geek4you
Copy link

I'm having similar problem . Trying to get a list of namespaces of a microk8s remote server. Using code from example in project page:

var config = KubernetesClientConfiguration.BuildConfigFromConfigFile(@"C:\...\bin\Debug\K8s\config");
var client = new Kubernetes(config);
var namespaces = client.CoreV1.ListNamespace();

It just hangs with no error in that last line of code.

Tried in .net7 and .net framework 4.8 (classic lib) versions. Same thing on both. Also tried with multiple servers running microk8s 1.26, same thing on all of them.
After further analysis using wireshark I can see it connects to remote microk8s server and exchanges about 200KB of data, then client side (c# app) starts to send TCP ZeroWindow messages, indicating it cannot process any more data...

@Ranjit-Kumar-Konjeti
Copy link
Author

exactly same place where my code is stuck too. I am totally blocked by this.

@tg123
Copy link
Member

tg123 commented Feb 16, 2024

please see #1523, i added an example and the code was used for long time in production env

@nithinbandaru1
Copy link

@tg123 The example you provided is using command: {kubelogin}. Here the scenario looks different.

@k8s-triage-robot
Copy link

The Kubernetes project currently lacks enough contributors to adequately respond to all issues.

This bot triages un-triaged issues according to the following rules:

  • After 90d of inactivity, lifecycle/stale is applied
  • After 30d of inactivity since lifecycle/stale was applied, lifecycle/rotten is applied
  • After 30d of inactivity since lifecycle/rotten was applied, the issue is closed

You can:

  • Mark this issue as fresh with /remove-lifecycle stale
  • Close this issue with /close
  • Offer to help out with Issue Triage

Please send feedback to sig-contributor-experience at kubernetes/community.

/lifecycle stale

@k8s-ci-robot k8s-ci-robot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label May 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale.
Projects
None yet
Development

No branches or pull requests

6 participants