Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
9bd69e0a
authored
Jun 05, 2014
by
Bach Dániel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature-improve-agent' into 'master'
Feature Improve Agent
parents
8e898f22
492a0407
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
23 deletions
+38
-23
circle/vm/tasks/agent_tasks.py
+10
-0
circle/vm/tasks/local_agent_tasks.py
+28
-23
No files found.
circle/vm/tasks/agent_tasks.py
View file @
9bd69e0a
...
...
@@ -41,3 +41,13 @@ def set_hostname(vm, time):
@celery.task
(
name
=
'agent.mount_store'
)
def
mount_store
(
vm
,
host
,
username
,
password
):
pass
@celery.task
(
name
=
'agent.cleanup'
)
def
cleanup
(
vm
):
pass
@celery.task
(
name
=
'agent.start_access_server'
)
def
start_access_server
(
vm
):
pass
circle/vm/tasks/local_agent_tasks.py
View file @
9bd69e0a
...
...
@@ -17,27 +17,43 @@
from
manager.mancelery
import
celery
from
vm.tasks.agent_tasks
import
(
restart_networking
,
change_password
,
set_time
,
set_hostname
)
set_time
,
set_hostname
,
start_access_server
,
cleanup
)
import
time
def
send_init_commands
(
instance
,
act
,
vm
):
queue
=
instance
.
get_remote_queue_name
(
"agent"
)
with
act
.
sub_activity
(
'cleanup'
):
cleanup
.
apply_async
(
queue
=
queue
,
args
=
(
vm
,
))
with
act
.
sub_activity
(
'restart_networking'
):
restart_networking
.
apply_async
(
queue
=
queue
,
args
=
(
vm
,
))
with
act
.
sub_activity
(
'change_password'
):
change_password
.
apply_async
(
queue
=
queue
,
args
=
(
vm
,
instance
.
pw
))
with
act
.
sub_activity
(
'set_time'
):
set_time
.
apply_async
(
queue
=
queue
,
args
=
(
vm
,
time
.
time
()))
with
act
.
sub_activity
(
'set_hostname'
):
set_hostname
.
apply_async
(
queue
=
queue
,
args
=
(
vm
,
instance
.
primary_host
.
hostname
))
@celery.task
def
agent_started
(
vm
):
from
vm.models
import
Instance
,
instance_activity
from
vm.models
import
Instance
,
instance_activity
,
InstanceActivity
instance
=
Instance
.
objects
.
get
(
id
=
int
(
vm
.
split
(
'-'
)[
-
1
]))
initialized
=
InstanceActivity
.
objects
.
filter
(
instance
=
instance
,
activity_code
=
'vm.Instance.agent'
)
.
exists
()
with
instance_activity
(
code_suffix
=
'agent'
,
instance
=
instance
)
as
act
:
with
act
.
sub_activity
(
'starting'
):
queue
=
"
%
s.agent"
%
instance
.
node
.
host
.
hostname
print
queue
restart_networking
.
apply_async
(
queue
=
queue
,
args
=
(
vm
,
))
change_password
.
apply_async
(
queue
=
queue
,
args
=
(
vm
,
instance
.
pw
))
set_time
.
apply_async
(
queue
=
queue
,
args
=
(
vm
,
time
.
time
()))
set_hostname
.
apply_async
(
queue
=
queue
,
args
=
(
vm
,
instance
.
primary_host
.
hostname
))
pass
if
not
initialized
:
send_init_commands
(
instance
,
act
,
vm
)
with
act
.
sub_activity
(
'start_access_server'
):
queue
=
instance
.
get_remote_queue_name
(
"agent"
)
start_access_server
.
apply_async
(
queue
=
queue
,
args
=
(
vm
,
))
@celery.task
...
...
@@ -49,14 +65,3 @@ def agent_stopped(vm):
act
=
qs
.
latest
(
'id'
)
with
act
.
sub_activity
(
'stopping'
):
pass
@celery.task
def
agent_ok
(
vm
):
from
vm.models
import
Instance
,
InstanceActivity
instance
=
Instance
.
objects
.
get
(
id
=
int
(
vm
.
split
(
'-'
)[
-
1
]))
qs
=
InstanceActivity
.
objects
.
filter
(
instance
=
instance
,
activity_code
=
'vm.Instance.agent'
)
act
=
qs
.
latest
(
'id'
)
with
act
.
sub_activity
(
'ok'
):
pass
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