mag_daskhub
mag_daskhub module
cli(ctx, verbose)
magasin client is the glue between magasin components, it makes easier common tasks
Source code in mag/mag.py
39 40 41 42 43 44 45 46 |
|
daskhub(realm)
Daskhub/Jupyterhub commands
Source code in mag_daskhub/daskhub.py
8 9 10 11 12 13 |
|
get_namespace(component_name, realm='magasin')
Generate a namespace based on the component name and realm.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
component_name |
str
|
The magasin component name (superset, daskhub, drill, ...) |
required |
realm |
str
|
The realm. Defaults to 'magasin'. |
'magasin'
|
Example
get_namespace("superset", "magasin")
-> "magasin-superset"get_namespace("superset", "magasin-postfix")
-> "magasin-superset-postfix"
Reference
For more information about magasin realms, please see the magasin realms documentation.
Source code in mag/mag_core/realm.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
|
launch_ui(realm, component, service_name, ports, protocol='http', verbose=False)
Launches the user interface for a given realm, component, and service.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
realm |
str
|
The realm of the magasin instance. |
required |
component |
str
|
The magasin component (f.i superset, daskhub, drill, ...) |
required |
service_name |
str
|
The name of the kubernetes service to forward. |
required |
ports |
str
|
The ports to forward, using the format "local_port:remote_port". |
required |
protocol |
str
|
The protocol to use (default is "http"). |
'http'
|
verbose |
bool
|
Whether to display verbose output (default is False). |
False
|
Returns:
Name | Type | Description |
---|---|---|
None |
None
|
Nothing |
Source code in mag/mag_core/launch.py
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
|
ui(realm, ports)
Launch jupyterhub user interface
Source code in mag_daskhub/daskhub.py
15 16 17 18 19 20 |
|