-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat - implement InsecureIgnoreHostKey on ssh.
- Loading branch information
1 parent
088dcee
commit f22e9d4
Showing
3 changed files
with
50 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,21 @@ | ||
# DeBeAndo Zenit Port Forward | ||
|
||
Port forward over SSH, to allow connect remote server on local or private kubernetes cluster. | ||
Port forward over SSH, allow connect to remote server over SSH to local or private kubernetes cluster. | ||
|
||
## Image Description | ||
|
||
This image is maintained by DeBeAndo and will be updated regularly on best-effort basis. The image is based on Alpine Linux and only contains the build result of this repository. | ||
|
||
## Run | ||
|
||
To run container: | ||
|
||
```bash | ||
docker run --detach \ | ||
--name zenit-port-forward \ | ||
--publish 3306:3306 \ | ||
--env SSH_HOST="<ssh_host>" \ | ||
--env SSH_KEY="`cat /Users/<username>/.ssh/<private>.pem | base64`" \ | ||
--env REMOTE_HOST="<mysql_host>" \ | ||
debeando/zenit-port-forward | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters