https://github.com/mesosphere-backup/dcos-tunnel
https://github.com/mesosphere-backup/dcos-tunnel
dcos dcos-ux-guild
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mesosphere-backup/dcos-tunnel
- Owner: mesosphere-backup
- Created: 2016-06-28T00:10:26.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-26T19:47:48.000Z (over 2 years ago)
- Last Synced: 2024-04-16T07:29:01.592Z (about 1 year ago)
- Topics: dcos, dcos-ux-guild
- Language: Python
- Size: 86.9 KB
- Stars: 7
- Watchers: 8
- Forks: 5
- Open Issues: 17
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
# DC/OS CLI Tunnel Subcommand
A DC/OS CLI subcommand that provides SOCKS proxy, HTTP proxy, and VPN access
to your DC/OS cluster.This is **NOT** meant as a standalone but as an _installable subcommand_ through
the _DC/OS Universe_.## Development Setup
Clone the git repo:
```
git clone [email protected]:dcos/dcos-tunnel.git
```Change directory to the repo directory:
```
cd dcos-tunnel
```Make sure that you have python `virtualenv` installed.
Create a virtualenv for the project:
```
make env
```Try it out with:
```
./env/bin/dcos-tunnel
```The VPN container lives at [https://github.com/dcos/dcos-cli-vpn](https://github.com/dcos/dcos-cli-vpn)
### Binary
```
make binary
```Run it with:
```
./dist/dcos-tunnel
```### Running Tests
Syntax check:
```
make test
```Syntax check + Integration test:
```
sudo make test-binary
```Single Integration test:
```
sudo make test-binary-debug test=
```