Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gutyán Gábor
/
circlestack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
02755b55
authored
Oct 28, 2013
by
Dudás Ádám
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vm: make VMs' VNC port globally unique while they're deployed
parent
f9a92907
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
19 deletions
+19
-19
circle/vm/migrations/0007_auto__chg_field_instance_vnc_port__add_unique_instance_vnc_port__del_u.py
+0
-0
circle/vm/models.py
+19
-19
No files found.
circle/vm/migrations/0007_auto__chg_field_instance_vnc_port__add_unique_instance_vnc_port__del_u.py
0 → 100644
View file @
02755b55
This diff is collapsed.
Click to expand it.
circle/vm/models.py
View file @
02755b55
...
...
@@ -317,8 +317,9 @@ class Instance(BaseResourceConfigModel, TimeStampedModel):
access_method
=
CharField
(
max_length
=
10
,
choices
=
ACCESS_METHODS
,
help_text
=
_
(
"Primary remote access method."
),
verbose_name
=
_
(
'access method'
))
vnc_port
=
IntegerField
(
default
=
2000
,
verbose_name
=
_
(
'vnc_port'
),
help_text
=
_
(
"TCP port where VNC console listens."
))
vnc_port
=
IntegerField
(
blank
=
True
,
default
=
None
,
null
=
True
,
help_text
=
_
(
"TCP port where VNC console listens."
),
unique
=
True
,
verbose_name
=
_
(
'vnc_port'
))
owner
=
ForeignKey
(
User
)
destoryed
=
DateTimeField
(
blank
=
True
,
null
=
True
,
help_text
=
_
(
"The virtual machine's time of "
...
...
@@ -327,7 +328,6 @@ class Instance(BaseResourceConfigModel, TimeStampedModel):
class
Meta
:
ordering
=
[
'pk'
,
]
permissions
=
()
unique_together
=
(
'node'
,
'vnc_port'
)
verbose_name
=
_
(
'instance'
)
verbose_name_plural
=
_
(
'instances'
)
...
...
@@ -525,21 +525,6 @@ class Instance(BaseResourceConfigModel, TimeStampedModel):
self
.
time_of_delete
=
timezone
.
now
()
+
self
.
lease
.
delete_interval
self
.
save
()
def
change_node
(
self
,
new_node
):
if
self
.
node
==
new_node
:
return
self
.
node
=
new_node
if
self
.
node
:
used
=
self
.
node
.
instance_set
.
values_list
(
'vnc_port'
,
flat
=
True
)
for
p
in
xrange
(
*
VNC_PORT_RANGE
):
if
p
not
in
used
:
self
.
vnc_port
=
p
break
else
:
raise
Exception
(
"No unused port could be found for VNC."
)
self
.
save
()
def
deploy
(
self
,
user
=
None
,
task_uuid
=
None
):
"""Deploy new virtual machine with network
...
...
@@ -556,8 +541,19 @@ class Instance(BaseResourceConfigModel, TimeStampedModel):
with
instance_activity
(
code_suffix
=
'deploy'
,
instance
=
self
,
task_uuid
=
task_uuid
,
user
=
user
)
as
act
:
# Find unused port for VNC
if
self
.
vnc_port
is
None
:
used
=
Instance
.
objects
.
values_list
(
'vnc_port'
,
flat
=
True
)
for
p
in
xrange
(
*
VNC_PORT_RANGE
):
if
p
not
in
used
:
self
.
vnc_port
=
p
break
else
:
raise
Exception
(
"No unused port could be found for VNC."
)
# Schedule
self
.
change_node
(
scheduler
.
get_node
(
self
,
Node
.
objects
.
all
()))
self
.
node
=
scheduler
.
get_node
(
self
,
Node
.
objects
.
all
())
self
.
save
()
# Deploy virtual images
with
act
.
sub_activity
(
'deploying_disks'
):
...
...
@@ -618,6 +614,10 @@ class Instance(BaseResourceConfigModel, TimeStampedModel):
for
disk
in
self
.
disks
.
all
():
disk
.
destroy
()
# Clear node and VNC port association
self
.
node
=
None
self
.
vnc_port
=
None
self
.
destoryed
=
timezone
.
now
()
self
.
save
()
...
...
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