jupyter
combinator-ml/jupyter/k8s
Combinator component to provide a simple Jupyter instance
terraform-k8s-jupyter tl; dr; A combinator data component that provides a single Jupyter instance, a notebook provider. - Introduction - Test Drive - Usage Introduction Jupyter is an open-source notebook host. Data scientists use notebooks to research, develop, and document their solutions. However, it is also very useful to use when demonstrating other products where the user persona is an engineer or scientist. Hence, this component is generally used within other stacks to enable demos. The functionality of this component is inteded to help provide those demos. If you are more interested in a notebook platform, then check out Jupyter Hub, or any cloud vendor notebook hosting solution. Test Drive The fastest way to get started is to use the test drive functionality provided by TestFaster.
| Name | Type | Description | Default |
|---|---|---|---|
| namespace | string | The namespace to install into. | "jupyter" |
| name_prefix | string | Prefix to be used when naming the different components. | "combinator" |
| image | string | Docker image to use | "jupyter/scipy-notebook:python-3.9.2" |
| command | list(string) | Container command | [
"start-notebook.sh",
"--NotebookAp |