Sagar
connect ssh vscode to runpod gpu server
following the blog - https://blog.runpod.io/how-to-connect-vscode-to-runpod/
1. I have created ssh key, and added public key to account
2. I have created pod with TCL port 22
3. accessing the pod via terminal, using and running following command to turn on the ssh connection
bash -c "apt update;apt install -y wget;DEBIAN_FRONTEND=noninteractive apt-get install openssh-server -y;mkdir -p ~/.ssh;cd $_;chmod 700 ~/.ssh;echo YOUR_PUBLIC_KEY > authorized_keys;chmod 700 authorized_keys;service ssh start;sleep infinity"
4. then I am using vs code remote desktop extension to connect to server
problem is it is asking for password42 replies