Commit 241b89b7 authored by Peter Leitzen's avatar Peter Leitzen

Merge branch 'update-jupyterhub-chart' into 'master'

Update jupyterhub chart

See merge request gitlab-org/gitlab!22127
parents dade60a8 87233f32
...@@ -5,7 +5,7 @@ require 'securerandom' ...@@ -5,7 +5,7 @@ require 'securerandom'
module Clusters module Clusters
module Applications module Applications
class Jupyter < ApplicationRecord class Jupyter < ApplicationRecord
VERSION = '0.9-174bbd5' VERSION = '0.9.0-beta.2'
self.table_name = 'clusters_applications_jupyter' self.table_name = 'clusters_applications_jupyter'
......
---
title: Update jupyterhub chart
merge_request: 22127
author:
type: changed
...@@ -57,7 +57,8 @@ describe Clusters::Applications::Jupyter do ...@@ -57,7 +57,8 @@ describe Clusters::Applications::Jupyter do
it 'is initialized with 4 arguments' do it 'is initialized with 4 arguments' do
expect(subject.name).to eq('jupyter') expect(subject.name).to eq('jupyter')
expect(subject.chart).to eq('jupyter/jupyterhub') expect(subject.chart).to eq('jupyter/jupyterhub')
expect(subject.version).to eq('0.9-174bbd5') expect(subject.version).to eq('0.9.0-beta.2')
expect(subject).to be_rbac expect(subject).to be_rbac
expect(subject.repository).to eq('https://jupyterhub.github.io/helm-chart/') expect(subject.repository).to eq('https://jupyterhub.github.io/helm-chart/')
expect(subject.files).to eq(jupyter.files) expect(subject.files).to eq(jupyter.files)
...@@ -75,7 +76,7 @@ describe Clusters::Applications::Jupyter do ...@@ -75,7 +76,7 @@ describe Clusters::Applications::Jupyter do
let(:jupyter) { create(:clusters_applications_jupyter, :errored, version: '0.0.1') } let(:jupyter) { create(:clusters_applications_jupyter, :errored, version: '0.0.1') }
it 'is initialized with the locked version' do it 'is initialized with the locked version' do
expect(subject.version).to eq('0.9-174bbd5') expect(subject.version).to eq('0.9.0-beta.2')
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment