BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
fcf3b9d8
Unverified
Commit
fcf3b9d8
authored
Jun 16, 2016
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move admin->runners tab as subnav of overview tab
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
e11aae1a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
70 additions
and
64 deletions
+70
-64
_head.html.haml
app/views/admin/dashboard/_head.html.haml
+4
-0
index.html.haml
app/views/admin/runners/index.html.haml
+65
-59
_admin.html.haml
app/views/layouts/nav/_admin.html.haml
+1
-5
No files found.
app/views/admin/dashboard/_head.html.haml
View file @
fcf3b9d8
...
...
@@ -20,3 +20,7 @@
=
link_to
admin_builds_path
,
title:
'Builds'
do
%span
Builds
=
nav_link
path:
[
'runners#index'
,
'runners#show'
]
do
=
link_to
admin_runners_path
,
title:
'Runners'
do
%span
Runners
app/views/admin/runners/index.html.haml
View file @
fcf3b9d8
%p
.lead.prepend-top-default
%span
To register a new runner you should enter the following registration token.
With this token the runner will request a unique runner token and use that for future communication.
Registration token is
%code
{
id:
'runners-token'
}
#{
current_application_settings
.
runners_registration_token
}
-
@no_container
=
true
=
render
"admin/dashboard/head"
.bs-callout.clearfix
.pull-left
%p
You can reset runners registration token by pressing a button below.
%p
=
button_to
reset_runners_token_admin_application_settings_path
,
method: :put
,
class:
'btn btn-default'
,
data:
{
confirm:
'Are you sure you want to reset registration token?'
}
do
=
icon
(
'refresh'
)
Reset runners registration token
%div
{
class:
(
container_class
)
}
%p
.prepend-top-default
%span
To register a new runner you should enter the following registration token.
With this token the runner will request a unique runner token and use that for future communication.
%br
Registration token is
%code
{
id:
'runners-token'
}
#{
current_application_settings
.
runners_registration_token
}
.bs-callout
%p
A 'runner' is a process which runs a build.
You can setup as many runners as you need.
%br
Runners can be placed on separate users, servers, and even on your local machine.
%br
.bs-callout.clearfix
.pull-left
%p
You can reset runners registration token by pressing a button below.
%p
=
button_to
reset_runners_token_admin_application_settings_path
,
method: :put
,
class:
'btn btn-default'
,
data:
{
confirm:
'Are you sure you want to reset registration token?'
}
do
=
icon
(
'refresh'
)
Reset runners registration token
.bs-callout
%p
A 'runner' is a process which runs a build.
You can setup as many runners as you need.
%br
Runners can be placed on separate users, servers, and even on your local machine.
%br
%div
%span
Each runner can be in one of the following states:
%ul
%li
%span
.label.label-success
shared
\- run builds from all unassigned projects
%li
%span
.label.label-info
specific
\- run builds from assigned projects
%li
%span
.label.label-danger
paused
\- runner will not receive any new builds
%div
%span
Each runner can be in one of the following states:
%ul
%li
%span
.label.label-success
shared
\- run builds from all unassigned projects
%li
%span
.label.label-info
specific
\- run builds from assigned projects
%li
%span
.label.label-danger
paused
\- runner will not receive any new builds
.append-bottom-20.clearfix
.pull-left
=
form_tag
admin_runners_path
,
id:
'runners-search'
,
class:
'form-inline'
,
method: :get
do
.form-group
=
search_field_tag
:search
,
params
[
:search
],
class:
'form-control'
,
placeholder:
'Runner description or token'
,
spellcheck:
false
=
submit_tag
'Search'
,
class:
'btn'
.append-bottom-20.clearfix
.pull-left
=
form_tag
admin_runners_path
,
id:
'runners-search'
,
class:
'form-inline'
,
method: :get
do
.form-group
=
search_field_tag
:search
,
params
[
:search
],
class:
'form-control'
,
placeholder:
'Runner description or token'
,
spellcheck:
false
=
submit_tag
'Search'
,
class:
'btn'
.pull-right.light
Runners with last contact less than a minute ago:
#{
@active_runners_cnt
}
.pull-right.light
Runners with last contact less than a minute ago:
#{
@active_runners_cnt
}
%br
%br
.table-holder
%table
.table
%thead
%tr
%th
Type
%th
Runner token
%th
Description
%th
Projects
%th
Builds
%th
Tags
%th
Last contact
%th
.table-holder
%table
.table
%thead
%tr
%th
Type
%th
Runner token
%th
Description
%th
Projects
%th
Builds
%th
Tags
%th
Last contact
%th
-
@runners
.
each
do
|
runner
|
=
render
"admin/runners/runner"
,
runner:
runner
=
paginate
@runners
-
@runners
.
each
do
|
runner
|
=
render
"admin/runners/runner"
,
runner:
runner
=
paginate
@runners
app/views/layouts/nav/_admin.html.haml
View file @
fcf3b9d8
%ul
.nav-links.scrolling-tabs
.fade-left
=
nav_link
(
controller:
%w(dashboard admin projects users groups builds)
,
html_options:
{
class:
'home'
})
do
=
nav_link
(
controller:
%w(dashboard admin projects users groups builds
runners
)
,
html_options:
{
class:
'home'
})
do
=
link_to
admin_root_path
,
title:
'Overview'
,
class:
'shortcuts-tree'
do
%span
Overview
...
...
@@ -12,10 +12,6 @@
=
link_to
admin_deploy_keys_path
,
title:
'Deploy Keys'
do
%span
Deploy Keys
=
nav_link
path:
[
'runners#index'
,
'runners#show'
]
do
=
link_to
admin_runners_path
,
title:
'Runners'
do
%span
Runners
=
nav_link
(
controller: :broadcast_messages
)
do
=
link_to
admin_broadcast_messages_path
,
title:
'Messages'
do
%span
...
...
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