Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
241b89b7
Commit
241b89b7
authored
Jan 08, 2020
by
Peter Leitzen
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'update-jupyterhub-chart' into 'master'
Update jupyterhub chart See merge request gitlab-org/gitlab!22127
parents
dade60a8
87233f32
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
app/models/clusters/applications/jupyter.rb
app/models/clusters/applications/jupyter.rb
+1
-1
changelogs/unreleased/update-jupyterhub-chart.yml
changelogs/unreleased/update-jupyterhub-chart.yml
+5
-0
spec/models/clusters/applications/jupyter_spec.rb
spec/models/clusters/applications/jupyter_spec.rb
+3
-2
No files found.
app/models/clusters/applications/jupyter.rb
View file @
241b89b7
...
...
@@ -5,7 +5,7 @@ require 'securerandom'
module
Clusters
module
Applications
class
Jupyter
<
ApplicationRecord
VERSION
=
'0.9
-174bbd5
'
VERSION
=
'0.9
.0-beta.2
'
self
.
table_name
=
'clusters_applications_jupyter'
...
...
changelogs/unreleased/update-jupyterhub-chart.yml
0 → 100644
View file @
241b89b7
---
title
:
Update jupyterhub chart
merge_request
:
22127
author
:
type
:
changed
spec/models/clusters/applications/jupyter_spec.rb
View file @
241b89b7
...
...
@@ -57,7 +57,8 @@ describe Clusters::Applications::Jupyter do
it
'is initialized with 4 arguments'
do
expect
(
subject
.
name
).
to
eq
(
'jupyter'
)
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
.
repository
).
to
eq
(
'https://jupyterhub.github.io/helm-chart/'
)
expect
(
subject
.
files
).
to
eq
(
jupyter
.
files
)
...
...
@@ -75,7 +76,7 @@ describe Clusters::Applications::Jupyter do
let
(
:jupyter
)
{
create
(
:clusters_applications_jupyter
,
:errored
,
version:
'0.0.1'
)
}
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment