Skip to content

Commit aac82b5

Browse files
committedJan 10, 2025··
Merge branch 'main' of https://github.com/flipt-io/reverst
* 'main' of https://github.com/flipt-io/reverst: fix(config): only call run if informer not already synced (#33) fix(config): correctly set token supplied via explicit token field (#32) feat(config): support watching k8s secrets directly as token sources (#31) fix(server): call WriteHeader in status interceptor (#30) fix: correct typo and add cancel context handling in watchFSNotify function (#29) feat: rename reverst to reverstd and add a new tunnel client CLI in its place (#28) feat(gh): tag images pushed to main with SHA as latest (#27) fix(server/client): fix propagation of client errors from server to client (#26) chore(gh): run publish on merge_group event type chore(mod): upgrade quic-go to v0.44.0 (#25) fix(server): stop accumulating times and calculate correct ellapsed fix(roundrobbin): ensure current cannot be out of bounds fix(roundrobbin): ensure that evict is only called once chore(dagger): run unit tests 5 times repeatedly test(roundrobbin): add failing case ensuring one call to evict per unique eviction chore(server): add debug logging around metrics endpoint
2 parents a77ae79 + 218b51f commit aac82b5

38 files changed

+1760
-683
lines changed
 

‎.github/workflows/publish-latest.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: 'Publish Latest'
2+
3+
on:
4+
push:
5+
branches:
6+
- "main"
7+
8+
# limit concurrency of workflow to one run at a time
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
12+
jobs:
13+
publish-image:
14+
runs-on: ubuntu-latest
15+
permissions:
16+
contents: read
17+
packages: write
18+
steps:
19+
- name: Set up Docker Buildx
20+
uses: docker/setup-buildx-action@v3
21+
22+
- name: Login to GitHub Container Registry
23+
uses: docker/login-action@v3
24+
with:
25+
registry: ghcr.io
26+
username: ${{ github.repository_owner }}
27+
password: ${{ secrets.GITHUB_TOKEN }}
28+
29+
- name: Tag current SHA being pushed to main as latest
30+
run: |
31+
docker buildx imagetools create \
32+
--tag ghcr.io/${{ github.repository }}:latest \
33+
ghcr.io/${{ github.repository }}:${{ github.sha }}

‎.github/workflows/publish.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
name: 'Publish'
22

33
on:
4-
push:
5-
branches:
6-
- main
4+
workflow_dispatch:
5+
merge_group:
76

87
jobs:
9-
dagger:
8+
publish-image:
109
runs-on: ubuntu-latest
1110
permissions:
1211
contents: read
@@ -17,8 +16,8 @@ jobs:
1716
- name: Call Dagger Function
1817
uses: dagger/dagger-for-github@v5
1918
with:
20-
version: "0.10.3"
19+
version: "0.11.6"
2120
verb: call
22-
args: publish --source . --password env:GITHUB_TOKEN
21+
args: publish --source . --password env:GITHUB_TOKEN --tag ${{ github.sha }}
2322
env:
2423
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

‎.github/workflows/test.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: 'Test'
22

33
on:
44
pull_request:
5+
merge_group:
56

67
jobs:
78
unit:
@@ -12,9 +13,9 @@ jobs:
1213
- name: Call Dagger Function
1314
uses: dagger/dagger-for-github@v5
1415
with:
15-
version: "0.10.3"
16+
version: "0.11.6"
1617
verb: call
17-
args: testUnit --source .
18+
args: test-unit --source .
1819

1920
integration:
2021
runs-on: ubuntu-latest
@@ -24,6 +25,6 @@ jobs:
2425
- name: Call Dagger Function
2526
uses: dagger/dagger-for-github@v5
2627
with:
27-
version: "0.10.3"
28+
version: "0.11.6"
2829
verb: call
29-
args: testIntegration --source .
30+
args: test-integration --source .

‎README.md

+27-58
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
reverst: HTTP reverse tunnels over QUIC
22
---------------------------------------
33

4+
<p align="center">
5+
<img width="300" height="300" src="./docs/gopher-glasses.svg" alt="Tunnel Gopher">
6+
</p>
7+
48
> Ti esrever dna ti pilf nwod gnaht ym tup i
59
610
Reverst is a (load-balanced) reverse-tunnel server and Go server-client library built on QUIC and HTTP/3.
@@ -17,12 +21,13 @@ The tunnel binary is intended to be deployed on the public internet.
1721
Client servers then dial out to the tunnels and register themselves on target tunnel groups.
1822
A tunnel group is a load-balanced set of client-servers, which is exposed through the reverst tunnel HTTP interface.
1923

20-
<p align="center">
21-
<img width="800" height="1199" src="./diagram.png" alt="Tunnel Lifecycle">
22-
</p>
23-
2424
## Client
2525

26+
[![Go Reference](https://pkg.go.dev/badge/go.flipt.io/reverst/client.svg)](https://pkg.go.dev/go.flipt.io/reverst/client)
27+
28+
The following section refers to the Go tunnel client code.
29+
This can be added as a dependency to any Go code that requires exposing through a `reverstd` tunnel server.
30+
2631
### Install
2732

2833
```console
@@ -35,10 +40,12 @@ go get go.flipt.io/reverst/client
3540
go install ./client/...
3641
```
3742

38-
## Server
43+
## Server and CLI
3944

4045
### Building
4146

47+
The following builds both `reverstd` (tunnel server) and `reverst` (tunnel cli client).
48+
4249
```console
4350
go install ./cmd/...
4451
```
@@ -47,61 +54,23 @@ go install ./cmd/...
4754

4855
Reverst uses Dagger to setup and run an integration test suite.
4956

50-
```console
51-
dagger call test --source=.
52-
```
53-
54-
The test suite sets up a tunnel, registers a server-client to the tunnel and then requests the service through the tunnels HTTP interface.
55-
56-
### Running
57-
58-
The following walks through experimenting with the [./examples/simple](./examples/simple) server example.
59-
This directory contains a number of things needed to stand up reverst and a registering client server:
60-
61-
- The example service in [./examples/simple/main.go](./examples/simple/main.go).
62-
- Simple self-signed TLS private key and certificate.
63-
- A tunnel-groups file for routing decisions.
64-
65-
#### Running `reverst`
66-
67-
The following runs the tunnel server with:
68-
69-
- The QUIC tunnel listener on `127.0.0.1:7171`
70-
- The HTTP serving listener on `127.0.0.1:8181`
71-
- Logging with `debug` level
72-
- A TLS server-name of `flipt.dev.local`
73-
- Some tunnel group definitions with a single tunnel group
74-
- The group has the name `flipt.dev.local`
75-
- The group is reachable under the same host name
76-
- The group requires basic username and password authentication
77-
- The dummy TLS certificates
57+
#### Unit
7858

7959
```console
80-
go run ./cmd/reverst/... -l debug \
81-
-n flipt.dev.local \
82-
-g examples/simple/group.yml \
83-
-k examples/simple/server.key \
84-
-c examples/simple/server.crt
60+
dagger call testUnit --source=.
8561
```
8662

87-
#### Running example server
88-
89-
Now you can run the example server.
90-
This is a simple HTTP server that responds to all requests with `PONG`.
91-
It is setup to use the server client to register as a listener on the tunnel.
63+
#### Integration
9264

9365
```console
94-
go run ./examples/simple/main.go --username user --password pass
66+
dagger call testIntegration --source=.
9567
```
9668

97-
#### Making requests
69+
The test suite sets up a tunnel, registers a server-client to the tunnel and then requests the service through the tunnels HTTP interface.
9870

99-
You can now curl the tunnel and requests will be forward all the way through to the example server.
100-
Be sure to include the `Host` header, as this is used to route requests to the respective tunnel-group.
71+
### Examples
10172

102-
```curl
103-
curl -H 'Host: flipt.dev.local' 127.0.0.1:8181/fo
104-
```
73+
Head over to the [examples](./examples) directory for some walkthroughs running `reverstd` and `reverst`.
10574

10675
### Usage and Configuration
10776

@@ -110,12 +79,12 @@ curl -H 'Host: flipt.dev.local' 127.0.0.1:8181/fo
11079
The following flags can be used to configure a running instance of the `reverst` server.
11180

11281
```console
113-
reverst -h
82+
reverstd -h
11483
COMMAND
115-
reverst
84+
reverstd
11685

11786
USAGE
118-
reverst [FLAGS]
87+
reverstd [FLAGS]
11988

12089
FLAGS
12190
-l, --log LEVEL debug, info, warn or error (default: INFO)
@@ -145,25 +114,25 @@ Both tunnel group sources support watching sources for changes over time (see `-
145114

146115
- Local filesystem (`file://[path]`)
147116

148-
The standard and simplest method is to point reverst at your configuration YAML file on your machine via its path.
117+
The standard and simplest method is to point `reverstd` at your configuration YAML file on your machine via its path.
149118

150119
```console
151-
reverst -g path/to/configuration.yml
120+
reverstd -g path/to/configuration.yml
152121
// alternatively:
153-
reverst -g file:///path/to/configuration.yml
122+
reverstd -g file:///path/to/configuration.yml
154123
```
155124

156125
- Kubernetes ConfigMap `k8s://configmap/[namespace]/[name]/[key]`
157126

158127
Alternatively, you can configure reverst to connect to a Kubernetes API server and fetch / watch configuration from.
159128

160129
```console
161-
reverst -g k8s://configmap/default/tunnelconfig/groups.yml
130+
reverstd -g k8s://configmap/default/tunnelconfig/groups.yml
162131
```
163132

164133
**defining**
165134

166-
The reverst server take a path to a YAML encoded file, which identifies the tunnel groups to be hosted.
135+
The `reverstd` server take a path to a YAML encoded file, which identifies the tunnel groups to be hosted.
167136
A tunnel group is a load-balancer on which tunneled servers can register themselves.
168137
The file contains a top-level key groups, under which each tunnel group is uniquely named.
169138

0 commit comments

Comments
 (0)
Please sign in to comment.