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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
be386cb2
Commit
be386cb2
authored
Jan 30, 2019
by
Thong Kuah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Expose app version to frontend
parent
e4dc22e3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
1 deletion
+12
-1
app/serializers/cluster_application_entity.rb
app/serializers/cluster_application_entity.rb
+1
-0
changelogs/unreleased/cluster_status_for_ugprading.yml
changelogs/unreleased/cluster_status_for_ugprading.yml
+5
-0
spec/fixtures/api/schemas/cluster_status.json
spec/fixtures/api/schemas/cluster_status.json
+1
-0
spec/serializers/cluster_application_entity_spec.rb
spec/serializers/cluster_application_entity_spec.rb
+5
-1
No files found.
app/serializers/cluster_application_entity.rb
View file @
be386cb2
...
...
@@ -4,6 +4,7 @@ class ClusterApplicationEntity < Grape::Entity
expose
:name
expose
:status_name
,
as: :status
expose
:status_reason
expose
:version
expose
:external_ip
,
if:
->
(
e
,
_
)
{
e
.
respond_to?
(
:external_ip
)
}
expose
:hostname
,
if:
->
(
e
,
_
)
{
e
.
respond_to?
(
:hostname
)
}
expose
:email
,
if:
->
(
e
,
_
)
{
e
.
respond_to?
(
:email
)
}
...
...
changelogs/unreleased/cluster_status_for_ugprading.yml
0 → 100644
View file @
be386cb2
---
title
:
Expose version for each application in cluster_status JSON endpoint
merge_request
:
24791
author
:
type
:
other
spec/fixtures/api/schemas/cluster_status.json
View file @
be386cb2
...
...
@@ -30,6 +30,7 @@
]
}
},
"version"
:
{
"type"
:
"string"
},
"status_reason"
:
{
"type"
:
[
"string"
,
"null"
]
},
"external_ip"
:
{
"type"
:
[
"string"
,
"null"
]
},
"hostname"
:
{
"type"
:
[
"string"
,
"null"
]
},
...
...
spec/serializers/cluster_application_entity_spec.rb
View file @
be386cb2
...
...
@@ -2,7 +2,7 @@ require 'spec_helper'
describe
ClusterApplicationEntity
do
describe
'#as_json'
do
let
(
:application
)
{
build
(
:clusters_applications_helm
)
}
let
(
:application
)
{
build
(
:clusters_applications_helm
,
version:
'0.1.1'
)
}
subject
{
described_class
.
new
(
application
).
as_json
}
it
'has name'
do
...
...
@@ -13,6 +13,10 @@ describe ClusterApplicationEntity do
expect
(
subject
[
:status
]).
to
eq
(
:not_installable
)
end
it
'has version'
do
expect
(
subject
[
:version
]).
to
eq
(
'0.1.1'
)
end
it
'has no status_reason'
do
expect
(
subject
[
:status_reason
]).
to
be_nil
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