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
c46417c5
Commit
c46417c5
authored
Nov 02, 2017
by
Alessio Caiazza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename App to Applications
parent
880cf60b
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
82 additions
and
78 deletions
+82
-78
concerns.rb
app/models/clusters/concerns.rb
+0
-4
base_helm_service.rb
app/services/clusters/applications/base_helm_service.rb
+16
-14
check_installation_progress_service.rb
...sters/applications/check_installation_progress_service.rb
+21
-19
fetch_installation_status_service.rb
...lusters/applications/fetch_installation_status_service.rb
+10
-8
finalize_installation_service.rb
...es/clusters/applications/finalize_installation_service.rb
+10
-8
install_service.rb
app/services/clusters/applications/install_service.rb
+16
-14
cluster_install_app_worker.rb
app/workers/cluster_install_app_worker.rb
+3
-3
cluster_wait_for_app_installation_worker.rb
app/workers/cluster_wait_for_app_installation_worker.rb
+3
-3
cluster_applications.rb
app/workers/concerns/cluster_applications.rb
+3
-5
No files found.
app/models/clusters/concerns.rb
deleted
100644 → 0
View file @
880cf60b
module
Clusters
module
Concerns
end
end
app/services/clusters/base_helm_service.rb
→
app/services/clusters/
applications/
base_helm_service.rb
View file @
c46417c5
module
Clusters
class
BaseHelmService
attr_accessor
:app
module
Applications
class
BaseHelmService
attr_accessor
:app
def
initialize
(
app
)
@app
=
app
end
def
initialize
(
app
)
@app
=
app
end
protected
protected
def
cluster
app
.
cluster
end
def
cluster
app
.
cluster
end
def
kubeclient
cluster
.
kubeclient
end
def
kubeclient
cluster
.
kubeclient
end
def
helm_api
@helm_api
||=
Gitlab
::
Kubernetes
::
Helm
.
new
(
kubeclient
)
def
helm_api
@helm_api
||=
Gitlab
::
Kubernetes
::
Helm
.
new
(
kubeclient
)
end
end
end
end
app/services/clusters/
check_app
_installation_progress_service.rb
→
app/services/clusters/
applications/check
_installation_progress_service.rb
View file @
c46417c5
module
Clusters
class
CheckAppInstallationProgressService
<
BaseHelmService
def
execute
return
unless
app
.
installing?
module
Applications
class
CheckInstallationProgressService
<
BaseHelmService
def
execute
return
unless
app
.
installing?
FetchAppInstallationStatusService
.
new
(
app
).
execute
do
|
phase
,
log
|
case
phase
when
'Succeeded'
if
app
.
make_installed
FinalizeAppInstallationService
.
new
(
app
).
execute
FetchInstallationStatusService
.
new
(
app
).
execute
do
|
phase
,
log
|
case
phase
when
'Succeeded'
if
app
.
make_installed
FinalizeInstallationService
.
new
(
app
).
execute
else
app
.
make_errored!
(
"Failed to update app record;
#{
app
.
errors
}
"
)
end
when
'Failed'
app
.
make_errored!
(
log
||
'Installation silently failed'
)
FinalizeInstallationService
.
new
(
app
).
execute
else
app
.
make_errored!
(
"Failed to update app record;
#{
app
.
errors
}
"
)
end
when
'Failed'
app
.
make_errored!
(
log
||
'Installation silently failed'
)
FinalizeAppInstallationService
.
new
(
app
).
execute
else
if
Time
.
now
.
utc
-
app
.
updated_at
.
to_time
.
utc
>
ClusterWaitForAppInstallationWorker
::
TIMEOUT
app
.
make_errored!
(
'App installation timeouted'
)
else
ClusterWaitForAppInstallationWorker
.
perform_in
(
ClusterWaitForAppInstallationWorker
::
EAGER_INTERVAL
,
app
.
name
,
app
.
id
)
if
Time
.
now
.
utc
-
app
.
updated_at
.
to_time
.
utc
>
ClusterWaitForAppInstallationWorker
::
TIMEOUT
app
.
make_errored!
(
'App installation timeouted'
)
else
ClusterWaitForAppInstallationWorker
.
perform_in
(
ClusterWaitForAppInstallationWorker
::
EAGER_INTERVAL
,
app
.
name
,
app
.
id
)
end
end
end
end
...
...
app/services/clusters/
fetch_app
_installation_status_service.rb
→
app/services/clusters/
applications/fetch
_installation_status_service.rb
View file @
c46417c5
module
Clusters
class
FetchAppInstallationStatusService
<
BaseHelmService
def
execute
return
unless
app
.
installing?
module
Applications
class
FetchInstallationStatusService
<
BaseHelmService
def
execute
return
unless
app
.
installing?
phase
=
helm_api
.
installation_status
(
app
)
log
=
helm_api
.
installation_log
(
app
)
if
phase
==
'Failed'
yield
(
phase
,
log
)
if
block_given?
rescue
KubeException
=>
ke
app
.
make_errored!
(
"Kubernetes error:
#{
ke
.
message
}
"
)
unless
app
.
errored?
phase
=
helm_api
.
installation_status
(
app
)
log
=
helm_api
.
installation_log
(
app
)
if
phase
==
'Failed'
yield
(
phase
,
log
)
if
block_given?
rescue
KubeException
=>
ke
app
.
make_errored!
(
"Kubernetes error:
#{
ke
.
message
}
"
)
unless
app
.
errored?
end
end
end
end
app/services/clusters/
finalize_app
_installation_service.rb
→
app/services/clusters/
applications/finalize
_installation_service.rb
View file @
c46417c5
module
Clusters
class
FinalizeAppInstallationService
<
BaseHelmService
def
execute
helm_api
.
delete_installation_pod!
(
app
)
module
Applications
class
FinalizeInstallationService
<
BaseHelmService
def
execute
helm_api
.
delete_installation_pod!
(
app
)
app
.
make_errored!
(
'Installation aborted'
)
if
aborted?
end
app
.
make_errored!
(
'Installation aborted'
)
if
aborted?
end
private
private
def
aborted?
app
.
installing?
||
app
.
scheduled?
def
aborted?
app
.
installing?
||
app
.
scheduled?
end
end
end
end
app/services/clusters/
install_app
_service.rb
→
app/services/clusters/
applications/install
_service.rb
View file @
c46417c5
module
Clusters
class
InstallAppService
<
BaseHelmService
def
execute
return
unless
app
.
scheduled?
module
Applications
class
InstallService
<
BaseHelmService
def
execute
return
unless
app
.
scheduled?
begin
helm_api
.
install
(
app
)
begin
helm_api
.
install
(
app
)
if
app
.
make_installing
ClusterWaitForAppInstallationWorker
.
perform_in
(
ClusterWaitForAppInstallationWorker
::
INITIAL_INTERVAL
,
app
.
name
,
app
.
id
)
else
app
.
make_errored!
(
"Failed to update app record;
#{
app
.
errors
}
"
)
if
app
.
make_installing
ClusterWaitForAppInstallationWorker
.
perform_in
(
ClusterWaitForAppInstallationWorker
::
INITIAL_INTERVAL
,
app
.
name
,
app
.
id
)
else
app
.
make_errored!
(
"Failed to update app record;
#{
app
.
errors
}
"
)
end
rescue
KubeException
=>
ke
app
.
make_errored!
(
"Kubernetes error:
#{
ke
.
message
}
"
)
rescue
StandardError
app
.
make_errored!
(
"Can't start installation process"
)
end
rescue
KubeException
=>
ke
app
.
make_errored!
(
"Kubernetes error:
#{
ke
.
message
}
"
)
rescue
StandardError
app
.
make_errored!
(
"Can't start installation process"
)
end
end
end
...
...
app/workers/cluster_install_app_worker.rb
View file @
c46417c5
class
ClusterInstallAppWorker
include
Sidekiq
::
Worker
include
ClusterQueue
include
ClusterApp
include
ClusterApp
lications
def
perform
(
app_name
,
app_id
)
find_app
(
app_name
,
app_id
)
do
|
app
|
Clusters
::
InstallApp
Service
.
new
(
app
).
execute
find_app
lication
(
app_name
,
app_id
)
do
|
app
|
Clusters
::
Applications
::
Install
Service
.
new
(
app
).
execute
end
end
end
app/workers/cluster_wait_for_app_installation_worker.rb
View file @
c46417c5
class
ClusterWaitForAppInstallationWorker
include
Sidekiq
::
Worker
include
ClusterQueue
include
ClusterApp
include
ClusterApp
lications
INITIAL_INTERVAL
=
30
.
seconds
EAGER_INTERVAL
=
10
.
seconds
TIMEOUT
=
20
.
minutes
def
perform
(
app_name
,
app_id
)
find_app
(
app_name
,
app_id
)
do
|
app
|
Clusters
::
CheckApp
InstallationProgressService
.
new
(
app
).
execute
find_app
lication
(
app_name
,
app_id
)
do
|
app
|
Clusters
::
Applications
::
Check
InstallationProgressService
.
new
(
app
).
execute
end
end
end
app/workers/concerns/cluster_app.rb
→
app/workers/concerns/cluster_app
lications
.rb
View file @
c46417c5
module
ClusterApp
module
ClusterApp
lications
extend
ActiveSupport
::
Concern
included
do
def
find_app
(
app_name
,
id
)
Clusters
::
Cluster
::
APPLICATIONS
[
app_name
].
find
(
id
).
try
do
|
app
|
yield
(
app
)
if
block_given?
end
def
find_application
(
app_name
,
id
,
&
blk
)
Clusters
::
Cluster
::
APPLICATIONS
[
app_name
].
find
(
id
).
try
(
&
blk
)
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