Skip to content

Commit 5139fc6

Browse files
authored
Merge pull request #17 from yokawasa/fix-permission-denied-issue
Fix [email protected]: Permission denied issue cased by newer ssh client
2 parents 3606ce3 + 0fa6d68 commit 5139fc6

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

CHANGELOG.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,23 @@
22

33
All notable changes to the "kubectl-plugin-ssh-jump" extension will be documented in this file.
44

5+
## 0.7.1
6+
7+
- Fix `[email protected]: Permission denied (publickey)` issue ([#13](https://github.com/yokawasa/kubectl-plugin-ssh-jump/issues/13)) by adding options like `-o HostkeyAlgorithms=+ssh-rsa -o PubkeyAcceptedAlgorithms=+ssh-rsa` which works for newer ssh client scenario
8+
9+
10+
11+
## 0.7.0
12+
13+
- Support specifying a custom sshjump pod template by @partcyborg ([#14](https://github.com/yokawasa/kubectl-plugin-ssh-jump/pull/14))
14+
515
## 0.6.0
616

717
- Support SSH local port forwarding to access a remote server. This allows to forward the traffic form local machine to SSH jump then SSH jump will forward the traffic to the remote server.
818

919
## 0.5.0
1020

11-
- Fix to address pod sshjump pod scheduling on hybrid clusters ([PR#9](https://github.com/yokawasa/kubectl-plugin-ssh-jump/pull/9), thanks to @swgriffith )
21+
- Fix to address pod sshjump pod scheduling on hybrid clusters ([#9](https://github.com/yokawasa/kubectl-plugin-ssh-jump/pull/9), thanks to @swgriffith )
1222

1323
## 0.4.0
1424

@@ -21,11 +31,11 @@ All notable changes to the "kubectl-plugin-ssh-jump" extension will be documente
2131

2232
## 0.3.1
2333

24-
- fixed typo: missing char ( [PR#3](https://github.com/yokawasa/kubectl-plugin-ssh-jump/pull/3), thanks to @iuryfukuda )
34+
- fixed typo: missing char ( [#3](https://github.com/yokawasa/kubectl-plugin-ssh-jump/pull/3), thanks to @iuryfukuda )
2535

2636
## 0.3.0
2737

28-
- Added Args param to exec in ssh session ( [PR#2](https://github.com/yokawasa/kubectl-plugin-ssh-jump/pull/2), thanks to @iuryfukuda )
38+
- Added Args param to exec in ssh session ( [#2](https://github.com/yokawasa/kubectl-plugin-ssh-jump/pull/2), thanks to @iuryfukuda )
2939
## 0.2.0
3040

3141
- Added -P|--port options for specifing SSH port that target node is listening (default 22)

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.0
1+
0.7.1

kubectl-ssh-jump

+2-2
Original file line numberDiff line numberDiff line change
@@ -199,12 +199,12 @@ run_ssh_node(){
199199

200200
if [ "${destnode}" = "sshjump" ]; then
201201
ssh ${sshuser}@127.0.0.1 -p 2222 -i ${identity_sshjump} \
202-
-o "StrictHostKeyChecking=no" $sshargs
202+
-o StrictHostKeyChecking=no -o HostkeyAlgorithms=+ssh-rsa -o PubkeyAcceptedAlgorithms=+ssh-rsa $sshargs
203203
else
204204
# Using the SSH Server as a jumphost (via port-forward proxy), ssh into the desired Node
205205
ssh -i ${identity} -p ${port} ${sshuser}@${destnode} \
206206
-o "ProxyCommand ssh [email protected] -p 2222 -i ${identity_sshjump} -o \"StrictHostKeyChecking=no\" \"nc %h %p\"" \
207-
-o "StrictHostKeyChecking=no" $sshargs
207+
-o StrictHostKeyChecking=no -o HostkeyAlgorithms=+ssh-rsa -o PubkeyAcceptedAlgorithms=+ssh-rsa $sshargs
208208
fi
209209
# Stop port-forward
210210
kill -3 ${pid_port_forward} 2>/dev/null

0 commit comments

Comments
 (0)