Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
jijisa
/
porch
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
29e81f0e
authored
Mar 24, 2017
by
Heechul Kim
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
clean up temp svc iface file
parent
1c769cee
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
98 additions
and
6 deletions
porch/api/machine/bizlogic.py
quasar/src/components/machine/Create.vue
quasar/src/components/machine/List.vue
porch/api/machine/bizlogic.py
View file @
29e81f0e
...
...
@@ -211,6 +211,13 @@ def provision_machine(name):
if
svc_iface_file
:
o_tar
.
add
(
svc_iface_file
,
arcname
=
'svc-interface'
)
# clean up svc_iface_file if exists.
if
svc_iface_file
:
try
:
os
.
unlink
(
svc_iface_file
)
except
Exception
as
e
:
log
.
error
(
e
)
# finally update machine state = provisioned
update_machine
(
name
,
{
'state'
:
'Provisioned'
})
...
...
quasar/src/components/machine/Create.vue
View file @
29e81f0e
...
...
@@ -59,40 +59,84 @@
</div>
<br><br>
<div
class=
"stacked-label"
>
<label>
MAC주소
</label><p></p>
<label>
배포망
MAC주소
</label><p></p>
<input
type=
"text"
v-model=
"form.mac"
ref=
"mac"
class=
"full-width"
:class=
"
{'has-error': $v.form.mac.$error}"
placeholder="
서버
MAC 주소를 입력하세요."
placeholder="
배포망
MAC 주소를 입력하세요."
>
<span
class=
"text-negative"
v-if=
"!$v.form.mac.required"
>
MAC 주소는 필수 입력 항목입니다.
배포망
MAC 주소는 필수 입력 항목입니다.
</span>
</div>
<br><br>
<div
class=
"stacked-label"
>
<label>
IP주소
</label><p></p>
<label>
배포망
IP주소
</label><p></p>
<input
type=
"text"
v-model=
"form.ip"
ref=
"ip"
class=
"full-width"
:class=
"
{'has-error': $v.form.ip.$error}"
placeholder="
서버
IP주소를 입력하세요."
placeholder="
배포망
IP주소를 입력하세요."
>
<span
class=
"text-negative"
v-if=
"!$v.form.ip.required"
>
IP 주소는 필수 입력 항목입니다.
배포망
IP 주소는 필수 입력 항목입니다.
</span>
</div>
<br><br>
<div
class=
"stacked-label"
>
<label>
서비스망 NIC
</label>
<input
type=
"text"
v-model=
"form.svc_nic"
ref=
"svc_nic"
class=
"full-width"
placeholder=
"서비스망 NIC 장치명을 입력하세요."
>
</div>
<br><br>
<div
class=
"stacked-label"
>
<label>
서비스망 IP주소
</label>
<input
type=
"text"
v-model=
"form.svc_ip"
ref=
"svc_ip"
class=
"full-width"
placeholder=
"서비스망 IP 주소를 입력하세요."
>
</div>
<br><br>
<div
class=
"stacked-label"
>
<label>
서비스망 Netmask
</label>
<input
type=
"text"
v-model=
"form.svc_netmask"
ref=
"svc_netmask"
class=
"full-width"
placeholder=
"서비스망 Netmask를 입력하세요."
>
</div>
<br><br>
<div
class=
"stacked-label"
>
<label>
서비스망 Gateway
</label>
<input
type=
"text"
v-model=
"form.svc_gateway"
ref=
"svc_gateway"
class=
"full-width"
placeholder=
"서비스망 Gateway를 입력하세요."
>
</div>
<br><br>
<div
class=
"stacked-label"
>
<label>
설명
</label><p></p>
<input
type=
"text"
...
...
@@ -128,6 +172,10 @@ export default {
ipmi_ip
:
''
,
mac
:
''
,
ip
:
''
,
svc_nic
:
''
,
svc_ip
:
''
,
svc_netmask
:
''
,
svc_gateway
:
''
,
desc
:
''
},
machineType
:
[
...
...
@@ -160,6 +208,10 @@ export default {
ipmi_ip
:
this
.
form
.
ipmi_ip
,
mac
:
this
.
form
.
mac
,
ip
:
this
.
form
.
ip
,
svc_nic
:
this
.
form
.
svc_nic
,
svc_ip
:
this
.
form
.
svc_ip
,
svc_netmask
:
this
.
form
.
svc_netmask
,
svc_gateway
:
this
.
form
.
svc_gateway
,
desc
:
this
.
form
.
desc
,
preseed
:
''
}
...
...
quasar/src/components/machine/List.vue
View file @
29e81f0e
...
...
@@ -108,6 +108,10 @@ export default {
machine
:
''
,
consoleUrl
:
''
,
machines
:
[],
machineType
:
[
{
'label'
:
'PM'
,
value
:
'PM'
},
{
'label'
:
'VM'
,
value
:
'VM'
}
],
config
:
{
rowHeight
:
'10px'
,
title
:
'서버 목록'
,
...
...
@@ -250,6 +254,15 @@ export default {
title
:
`서버:
${
row
.
name
}
`
,
message
:
'수정'
,
form
:
{
header0
:
{
type
:
'heading'
,
label
:
'종류'
},
type
:
{
type
:
'radio'
,
model
:
row
.
type
,
items
:
self
.
machineType
},
header1
:
{
type
:
'heading'
,
label
:
'운영체제'
...
...
@@ -299,6 +312,26 @@ export default {
label
:
'IP 주소'
,
model
:
row
.
ip
},
svc_nic
:
{
type
:
'textbox'
,
label
:
'서비스망 NIC'
,
model
:
row
.
svc_nic
?
row
.
svc_nic
:
''
},
svc_ip
:
{
type
:
'textbox'
,
label
:
'서비스망 IP'
,
model
:
row
.
svc_ip
?
row
.
svc_ip
:
''
},
svc_netmask
:
{
type
:
'textbox'
,
label
:
'서비스망 Netmask'
,
model
:
row
.
svc_netmask
?
row
.
svc_netmask
:
''
},
svc_gateway
:
{
type
:
'textbox'
,
label
:
'서비스망 Gateway'
,
model
:
row
.
svc_gateway
?
row
.
svc_gateway
:
''
},
desc
:
{
type
:
'textbox'
,
label
:
'설명'
,
...
...
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