You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,21 @@
2
2
3
3
All notable changes to the "kubectl-plugin-ssh-jump" extension will be documented in this file.
4
4
5
+
## 0.3.2
6
+
7
+
- Changed a validation for destination name to support valid characters of hostname for SSH destination node that can start from ASCII letters 'a' through 'z' (in a case-insensitive manner), the digits '0' through '9', or the hyphen ('-'). Ref [RFC952](https://tools.ietf.org/html/rfc952) for valid characters of hostname.
8
+
- Add Internal-IP info, not only hostname for node info in running get-node-list
Copy file name to clipboardExpand all lines: README.md
+15-7Lines changed: 15 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ This plugin needs the following programs:
24
24
## Installation
25
25
26
26
### Install through krew
27
-
This is a way to install kubectl-ssh-jump through [krew](https://github.com/GoogleContainerTools/krew). After installing krew by following [this](https://github.com/GoogleContainerTools/krew#installation), you can install kubectl-ssh-jump like this:
27
+
This is a way to install kubectl-ssh-jump through [krew](https://krew.sigs.k8s.io/). After installing krew by following [this](https://krew.sigs.k8s.io/docs/user-guide/setup/install/), you can install kubectl-ssh-jump like this:
28
28
29
29
```sh
30
30
$ kubectl krew install ssh-jump
@@ -89,7 +89,10 @@ Usage:
89
89
kubectl ssh-jump <dest_node> [options]
90
90
91
91
Options:
92
-
<dest_node> Destination node IP
92
+
<dest_node> Destination node name or IP address
93
+
dest_node must start from the following letters:
94
+
ASCII letters 'a' through 'z' or 'A' through 'Z',
95
+
the digits '0' through '9', or hyphen ('-'
93
96
-u, --user <sshuser> SSH User name
94
97
-i, --identity <identity_file> Identity key file
95
98
-p, --pubkey <pub_key_file> Public key file
@@ -134,7 +137,10 @@ Usage:
134
137
kubectl ssh-jump <dest_node> [options]
135
138
136
139
Options:
137
-
<dest_node> Destination node IP
140
+
<dest_node> Destination node name or IP address
141
+
dest_node must start from the following letters:
142
+
ASCII letters 'a' through 'z' or 'A' through 'Z',
143
+
the digits '0' through '9', or hyphen ('-')
138
144
-u, --user <sshuser> SSH User name
139
145
-i, --identity <identity_file> Identity key file
140
146
-p, --pubkey <pub_key_file> Public key file
@@ -154,10 +160,11 @@ Example:
154
160
....
155
161
156
162
List of destination node...
157
-
Hostname
158
-
aks-nodepool1-18558189-0
159
-
aks-nodepool1-18558189-1
160
-
aks-nodepool1-18558189-2
163
+
Hostname Internal-IP
164
+
aks-nodepool1-18558189-0 10.240.0.4
165
+
aks-nodepool1-18558189-1 10.240.0.5
166
+
aks-nodepool1-18558189-2 10.240.0.6
167
+
161
168
```
162
169
163
170
Then, SSH into a node `aks-nodepool1-18558189-0` with options like:
@@ -168,6 +175,7 @@ Then, SSH into a node `aks-nodepool1-18558189-0` with options like:
0 commit comments