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

Kubernetes with Remote-SSH #6054

Open
chrmarti opened this issue Dec 14, 2021 · 9 comments
Open

Kubernetes with Remote-SSH #6054

chrmarti opened this issue Dec 14, 2021 · 9 comments
Assignees
Labels
containers Issue in vscode-remote containers feature-request Request for new features or functionality plan-review PM-highlighted item determined to be P1 or P2
Milestone

Comments

@chrmarti
Copy link
Contributor

@chrmarti Haha good point, of course, it is installed. In fact, what you are looking at is not my local vscode at all, it is a remote instance SSH running on a VPS. My local computer is not used for running code or connecting to the cluster at any point.

Originally posted by @markomitranic in #12 (comment)

@chrmarti chrmarti self-assigned this Dec 14, 2021
@chrmarti chrmarti added the feature-request Request for new features or functionality label Dec 14, 2021
@chrmarti chrmarti added this to the Backlog milestone Dec 14, 2021
@chrmarti chrmarti added the containers Issue in vscode-remote containers label Dec 14, 2021
@chrmarti
Copy link
Contributor Author

This needs #4405 for passing the selection from the Kubernetes extension and changes in Remote-Containers to pass the SSH connection string along.

@gaocegege
Copy link

Can you please explain more about the feature?

@markomitranic
Copy link

I can't explain more about the feature, I'm not very proficient in VSCode extension development. However here is a rundown of my setups and the steps I've taken.

Replication steps:

  1. Local runs VSCode
  2. Using Remote-SSH extension I attach to a VPS
  3. The VPS has (or has access to) a k8s cluster
  4. In the Kubernetes Explorer i right click on a running pod
  5. The context menu appears, but there is no Attach Visual Studio Code item.

145788212-f728e101-dbd8-4dfd-86cf-5d14cf8f9f66

Expected behaviour:

As seen in the docs, that show it under Pods: https://code.visualstudio.com/docs/remote/attach-container#_attach-to-a-container-in-a-kubernetes-cluster

@gaocegege
Copy link

Thanks!

@MurzNN
Copy link

MurzNN commented Aug 25, 2022

I have the same issue, my original report is here vscode-kubernetes-tools/vscode-kubernetes-tools#1021 but the author says that the problem seems lay in Remote SSH extension.

@inliquid
Copy link

Same issue.

@thanhtam98
Copy link

same issue.

@iceychris
Copy link

Looks like this is an issue with shelling out to kubectl without passing the correct kubeconfig or cluster to use. The error message I get is:

Error running command remote-containers.attachToK8sContainerFromViewlet:
Command failed: kubectl get pod my-pod-dmxnf -o json --namespace default.
This is likely caused by the extension that contributes remote-containers.attachToK8sContainerFromViewlet.

I was able to solve this by replacing ∼/.kube/config (the default config kubectl uses when not specifying uses I guess) with the kubeconfig of cluster containing the pod I wanted to attach to.

@gitreset-hard
Copy link

@iceychris you are able to solve the problem @MurzNN is having?

On my machine, I have the same issue as both @MurzNN @markomitranic . We can communicate with the cluster (via remote-ssh instance) , this (may) involve setting the config like below, but the option "attach visual studio code" is unavailable.

if I understand, your solution is to add the path of the kubeconfig file (from your remote server) to the settings.json like below. This just allows VSCode to the access the right configs

  "vs-kubernetes.kubeconfig": "/path_to_/.kube/config",
       "vs-kubernetes.knownKubeconfigs": [
           "/path_to_/.kube/config"
       ],

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
containers Issue in vscode-remote containers feature-request Request for new features or functionality plan-review PM-highlighted item determined to be P1 or P2
Projects
None yet
Development

No branches or pull requests

9 participants