This commit is contained in:
Michael Quigley 2022-11-15 11:45:31 -05:00
parent a8350c5173
commit d825052a6a
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
3 changed files with 12 additions and 0 deletions

View File

@ -6,6 +6,7 @@ create table frontends (
id serial primary key, id serial primary key,
environment_id integer references environments(id), environment_id integer references environments(id),
z_id varchar(32) not null unique, z_id varchar(32) not null unique,
name varchar(64) unique,
type availability_type not null, type availability_type not null,
created_at timestamptz not null default(current_timestamp), created_at timestamptz not null default(current_timestamp),
updated_at timestamptz not null default(current_timestamp) updated_at timestamptz not null default(current_timestamp)

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,11 @@
# v0.3 Public/Private Sharing
The `v0.3` series includes support for both "public" and "private" reverse proxies.
## Entities (SQL)
`v0.3` introduces a new `frontends` table to allow the `zrok` controller to track the frontend instances that are available to any account or environment.
The following illustration shows the possibilities available.
![v0.3 Frontend Selection](images/zrok_frontends_v0.3.png)