Skip to content

Releases: jupyterhub/helm-chart

v0.4: "Akram"

27 Jun 22:23
Compare
Choose a tag to compare
v0.4: "Akram" Pre-release
Pre-release

Stability, HTTPS & breaking changes.

Installation and upgrades

We recommend that you delete prior versions of the package and install the
latest version. If you are very familiar with Kubernetes, you can upgrade from
an older version, but we still suggest deleting and recreating your
installation.

Breaking changes

  • The name of a user pod and a dynamically created home directory PVC (PersistentVolumeClaim) no longer include
    the userid in them by default. If you are using dynamic PVCs for home
    directories (which is the default), you will need to manually rename these
    directories before upgrading.
    Otherwise, new PVCs will be created, and users might freak out when viewing the newly created directory and think that their home directory appears empty.

    See PR #56 on
    what needs to change.

  • A StorageClass
    is no longer created by default. This shouldn't affect most new installs,
    since most cloud provider installations have a default (as of Kubernetes 1.6).
    If you are using an older version of Kubernetes, the easiest thing to do is to
    upgrade to a newer version. If not, you can create a StorageClass manually
    and everything should continue to work.

  • token.proxy is removed. Use proxy.secretToken instead.
    If your config.yaml contains something that looks like the following:

    token:
        proxy: <some-secret>

    you should change that to:

    proxy:
        secretToken: <some-secret>

Added

  • Added GitHub Authentication support, thanks to Jason Kuruzovich.
  • Added Ingress support!
    If your cluster already has Ingress support (with automatic Let's Encrypt support, perhaps),
    you can easily use that now.
  • We now add a label to user pods / PVCs with their usernames.
  • Support using a static PVC for user home directories or for the hub database. This makes this release usable
    with clusters where you only have one NFS share that must be used for the whole hub.
  • PostgreSQL is now a supported hub database backend provider.
  • You can set annotations & labels on the proxy-public service now.

Changed

  • We now use the official configurable http proxy
    (CHP) as the proxy, rather than the unofficial
    nchp. This should be a
    no-op (or require no changes) for the most part. JupyterHub errors might
    display a nicer error page.
  • The version of KubeSpawner uses the official Kubernetes
    python client rather
    than pycurl. This helps with scalability a little.

Removed

  • The deprecated createNamespace parameter no longer works, alongside the
    deprecated name parameter. You probably weren't using these anyway - they
    were kept only for backwards compatibility with very early versions.

Contributors

This release made possible by the awesome work of the following contributors
(in alphabetical order):

<3

Akram

Wasim Akram (وسیم اکرم) is considered by many to be
the greatest pace bowler of all time and a founder of the fine art of
reverse swing bowling.

v0.3.1: KubeSpawner updates!

19 May 23:56
Compare
Choose a tag to compare
Pre-release
  • KubeSpawner has gained several new features, thanks
    to the work of Daniel Rodriguez and ktongsc! Specifically,
    we have support for init containers, node selectors,
    pod lifecycle hooks, etc. These can be used with the
    extraConfig override for now
  • Add easy ability to specify pod lifecycle hooks via the
    helm chart!

v0.3: Deployer UX fixes!

15 May 20:58
Compare
Choose a tag to compare
Pre-release
  • No need to restart hub manually after some changes - it is
    automatically restarted now. You can disable an automatic
    restart of hub after an upgrade with the following:

    1. Finding out the current helm release's revision
    2. Adding '--set revisionOverride=' to your
      upgrade command.

    Only do this if you know exactly what you are doing :)

  • Base images for everything upgraded to ubuntu 17.04. We can
    define the support lifecycle for the helm chart in the future,
    and decide on the base images at that point.

  • Add a timestamp to the job name for the pre-puller job. This
    prevents having to manually delete it when an install fails and
    has to be tried again. Because the Release Revision hadn't changed
    when the upgrade fails, trying again will cause it to fail with a
    'job already exists' error. Adding the Timestamp to job name should
    hopefully fix that

v0.2: Minor cleanups + features

02 May 02:09
Compare
Choose a tag to compare
Pre-release
  • Get rid of cull pod, move it inside the hub pod as a
    managed service
  • Set a default 1G memory guarantee for user pods
  • Allow setting a static global password for Dummy Authenticator
  • Allow setting extra static environment variables for user pods
    from the helm config
  • Upgrade kubespawner version (no major functional changes)

v0.1: Initial public release!

11 Apr 05:18
Compare
Choose a tag to compare
Pre-release

Initial public release!

This has been successfully used for the data8.org course at Berkeley, with over a 1000 users.

https://github.com/jupyterhub/zero-to-jupyterhub-k8s has info on how to actually use this.