-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Traefik v2 #133
Closed
Closed
Traefik v2 #133
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
077a625
Updated installer with latest versions.
devnull-mr e7e52c9
Merge 'upstream/master' into Traefik_v2
alexleach 41a5ef3
Upgrade the jupyterhub_traefik_proxy to work with the Traefik v2 API.
alexleach faa2832
Major overhaul of the codebase to support the Traefik v2 API, followi…
alexleach 8459b13
Remove any refererence to `traefik_toml` or `TraefikTomlProxy` from the
alexleach c90686b
Further work to upgrade the proxy to support the Traefik v2 API, in r…
alexleach 9685be6
Reverted some breaking changes made in commit
alexleach 508987c
Fix minor typo in jupyterhub_traefik_proxy/etcd.py, which put the
alexleach 3501d08
Enable TLS termination and use of specific entrypoints on the traefik…
alexleach 50e59d6
Fix the TLS implementation and consolidate the jupyterhub public_url …
alexleach bad3601
Update jupyterhub_traefik_proxy/consul.py
alexleach File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
@@ -0,0 +1,194 @@ | ||
# Using TraefikFileProviderProxy | ||
|
||
**jupyterhub-traefik-proxy** can be used with simple toml or yaml configuration files, for smaller, single-node deployments such as | ||
[The Littlest JupyterHub](https://tljh.jupyter.org). | ||
|
||
## How-To install TraefikFileProviderProxy | ||
|
||
1. Install **jupyterhub** | ||
2. Install **jupyterhub-traefik-proxy** | ||
3. Install **traefik** | ||
|
||
* You can find the full installation guide and examples in the [Introduction section](install.html#traefik-proxy-installation) | ||
|
||
## How-To enable TraefikFileProviderProxy | ||
|
||
You can enable JupyterHub to work with `TraefikFileProviderProxy` in jupyterhub_config.py, using the `proxy_class` configuration option. | ||
|
||
You can choose to: | ||
|
||
* use the `traefik_file` entrypoint, new in JupyterHub 1.0, e.g.: | ||
|
||
```python | ||
c.JupyterHub.proxy_class = "traefik_file" | ||
``` | ||
|
||
* use the TraefikFileProviderProxy object, in which case, you have to import the module, e.g.: | ||
|
||
```python | ||
from jupyterhub_traefik_proxy import TraefikFileProviderProxy | ||
c.JupyterHub.proxy_class = TraefikFileProviderProxy | ||
``` | ||
|
||
|
||
## Traefik configuration | ||
|
||
Traefik's configuration is divided into two parts: | ||
|
||
* The **static** configuration (loaded only at the beginning) | ||
* The **dynamic** configuration (can be hot-reloaded, without restarting the proxy), | ||
where the routing table will be updated continuously. | ||
|
||
Traefik allows us to have one file for the static configuration file (`traefik.toml` or `traefik.yaml`) and one or several files for the routes, that traefik would watch. | ||
|
||
```{note} | ||
**TraefikFileProviderProxy**, uses two configuration files: one file for the routes (**rules.toml** or **rules.yaml**), and one for the static configuration (**traefik.toml** or **traefik.yaml**). | ||
``` | ||
|
||
|
||
By **default**, Traefik will search for `traefik.toml` and `rules.toml` in the following places: | ||
|
||
* /etc/traefik/ | ||
* $HOME/.traefik/ | ||
* . the working directory | ||
|
||
You can override this in TraefikFileProviderProxy, by modifying the **static_config_file** argument: | ||
|
||
```python | ||
c.TraefikFileProviderProxy.static_config_file="/path/to/static_config_filename.toml" | ||
``` | ||
|
||
Similarly, you can override the dynamic configuration file by modifying the **dynamic_config_file** argument: | ||
|
||
```python | ||
c.TraefikFileProviderProxy.dynamic_config_file="/path/to/dynamic_config_filename.toml" | ||
``` | ||
|
||
```{note} | ||
|
||
* **When JupyterHub starts the proxy**, it writes the static config once, then only edits the dynamic config file. | ||
|
||
* **When JupyterHub does not start the proxy**, the user is totally responsible for the static config and | ||
JupyterHub is responsible exclusively for the routes. | ||
|
||
* **When JupyterHub does not start the proxy**, the user should tell `traefik` to get its dynamic configuration | ||
from a directory. Then, one (or more) dynamic configuration file(s) can be managed externally, and `dynamic_config_file` | ||
will be managed by JupyterHub. This allows e.g., the administrator to configure traefik's API outside of JupyterHub. | ||
|
||
``` | ||
|
||
## Externally managed TraefikFileProviderProxy | ||
|
||
When TraefikFileProviderProxy is externally managed, service managers like [systemd](https://www.freedesktop.org/wiki/Software/systemd/) | ||
or [docker](https://www.docker.com/) will be responsible for starting and stopping the proxy. | ||
|
||
If TraefikFileProviderProxy is used as an externally managed service, then make sure you follow the steps enumerated below: | ||
|
||
1. Let JupyterHub know that the proxy being used is TraefikFileProviderProxy, using the *proxy_class* configuration option: | ||
```python | ||
from jupyterhub_traefik_proxy import TraefikFileProviderProxy | ||
c.JupyterHub.proxy_class = TraefikFileProviderProxy | ||
``` | ||
|
||
2. Configure `TraefikFileProviderProxy` in **jupyterhub_config.py** | ||
|
||
JupyterHub configuration file, *jupyterhub_config.py* must specify at least: | ||
* That the proxy is externally managed | ||
* The traefik api credentials | ||
* The dynamic configuration file, | ||
if different from *rules.toml* or if this file is located | ||
in another place than traefik's default search directories (etc/traefik/, $HOME/.traefik/, the working directory) | ||
|
||
Example configuration: | ||
```python | ||
# JupyterHub shouldn't start the proxy, it's already running | ||
c.TraefikFileProviderProxy.should_start = False | ||
|
||
# if not the default: | ||
c.TraefikFileProviderProxy.dynamic_config_file = "/path/to/somefile.toml" | ||
|
||
# traefik api credentials | ||
c.TraefikFileProviderProxy.traefik_api_username = "abc" | ||
c.TraefikFileProviderProxy.traefik_api_password = "xxx" | ||
``` | ||
|
||
3. Ensure **traefik.toml** / **traefik.yaml** | ||
|
||
The static configuration file, *traefik.toml* (or **traefik.yaml**) must configure at least: | ||
* The default entrypoint | ||
* The api entrypoint (*and authenticate it in a user-managed dynamic configuration file*) | ||
* The websockets protocol | ||
* The dynamic configuration directory to watch | ||
(*make sure this configuration directory exists, even if empty before the proxy is launched*) | ||
* Check `tests/config_files/traefik.toml` for an example. | ||
|
||
## Example setup | ||
|
||
This is an example setup for using JupyterHub and TraefikFileProviderProxy managed by another service than JupyterHub. | ||
|
||
1. Configure the proxy through the JupyterHub configuration file, *jupyterhub_config.py*, e.g.: | ||
|
||
```python | ||
from jupyterhub_traefik_proxy import TraefikFileProviderProxy | ||
|
||
# mark the proxy as externally managed | ||
c.TraefikFileProviderProxy.should_start = False | ||
|
||
# traefik api endpoint login password | ||
c.TraefikFileProviderProxy.traefik_api_password = "admin" | ||
|
||
# traefik api endpoint login username | ||
c.TraefikFileProviderProxy.traefik_api_username = "api_admin" | ||
|
||
# traefik's dynamic configuration file, which will be managed by JupyterHub | ||
c.TraefikFileProviderProxy.dynamic_config_file = "/var/run/traefik/rules.toml" | ||
|
||
# configure JupyterHub to use TraefikFileProviderProxy | ||
c.JupyterHub.proxy_class = TraefikFileProviderProxy | ||
``` | ||
|
||
2. Create a traefik static configuration file, *traefik.toml*, e.g.: | ||
|
||
``` | ||
# the api entrypoint | ||
[api] | ||
dashboard = true | ||
|
||
# websockets protocol | ||
[wss] | ||
protocol = "http" | ||
|
||
# the port on localhost where traefik accepts http requests | ||
[entryPoints.web] | ||
address = ":8000" | ||
|
||
# the port on localhost where the traefik api and dashboard can be found | ||
[entryPoints.enter_api] | ||
address = ":8099" | ||
|
||
# the dynamic configuration directory | ||
# This must match the directory provided in Step 1. above. | ||
[providers.file] | ||
directory = "/var/run/traefik" | ||
watch = true | ||
``` | ||
|
||
3. Create a traefik dynamic configuration file in the directory provided in the dynamic configuration above, to provide the api authentication parameters, e.g. | ||
|
||
``` | ||
# Router configuration for the api service | ||
[http.routers.router-api] | ||
rule = "Host(`localhost`) && PathPrefix(`/api`)" | ||
entryPoints = ["enter_api"] | ||
service = "api@internal" | ||
middlewares = ["auth_api"] | ||
|
||
# authenticate the traefik api entrypoint | ||
[http.middlewares.auth_api.basicAuth] | ||
users = [ "api_admin:$apr1$eS/j3kum$q/X2khsIEG/bBGsteP.x./",] | ||
``` | ||
|
||
4. Start traefik with the configuration specified above, e.g.: | ||
```bash | ||
$ traefik --configfile traefik.toml | ||
``` |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as resolved.
Sorry, something went wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, TraefikFileProviderProxy now supports both yaml and toml configuration files. It seemed inappropriate to leave it as TraefikTomlProxy, when yaml files can also easily be supported.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I see, thank you.