Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/squat/jupyter-operator

A Kubernetes operator for Jupyter Notebooks
https://github.com/squat/jupyter-operator

jupyter jupyter-notebook kubernetes operator

Last synced: 18 days ago
JSON representation

A Kubernetes operator for Jupyter Notebooks

Awesome Lists containing this project

README

        

# Jupyter-Operator

This is a Kubernetes operator for [Jupyter Notebooks](https://jupyter.org/).

[![Build Status](https://travis-ci.org/squat/jupyter-operator.svg?branch=master)](https://travis-ci.org/squat/jupyter-operator)
[![Go Report Card](https://goreportcard.com/badge/github.com/squat/jupyter-operator)](https://goreportcard.com/report/github.com/squat/jupyter-operator)

## Overview

The Jupyter Operator automates the deployment of Jupyter Notebooks to a Kubernetes Cluster.
It configures TLS certificates for the Notebook server and exposes the application via ingress and service resources.

## Requirements

* Kubernetes v1.7+

## Usage

### Create the RBAC resources for the operator

```sh
kubectl create -f example/rbac
```

### Deploy the Jupyter Operator

```sh
kubectl create -f examples/deployment.yaml
```

### Create a notebook

```sh
kubectl create -f examples/notebook.yaml
```

### Access the notebook

Resolve DNS for `example-notebook.example.com` as the Kubernetes cluster, e.g. edit `/etc/hosts`:
```sh
example-notebook.example.com
```

Navigate a browser to `example-notebook.example.com` and login with the password `mypassword`.