Merge pull request #854 from GNS3/fix/849

Update console_type in appliance schemas v7 and v8
This commit is contained in:
Jeremy Grossmann 2024-01-12 16:39:39 +11:00 committed by GitHub
commit d19ba304ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -133,7 +133,7 @@
"title": "One KEY=VAR environment by line"
},
"console_type": {
"enum": ["telnet", "vnc", "http", "https"],
"enum": ["telnet", "vnc", "http", "https", "none"],
"title": "Type of console connection for the administration of the appliance"
},
"console_http_port": {
@ -344,7 +344,7 @@
"title": "Architecture emulated"
},
"console_type": {
"enum": ["telnet", "vnc", "spice"],
"enum": ["telnet", "vnc", "spice", "spice+agent", "none"],
"title": "Type of console connection for the administration of the appliance"
},
"boot_priority": {

View File

@ -57,7 +57,8 @@
"telnet",
"vnc",
"http",
"https"
"https",
"none"
],
"title": "Type of console"
},
@ -502,7 +503,8 @@
"telnet",
"vnc",
"spice",
"spice+agent"
"spice+agent",
"none"
],
"title": "Type of console connection for the administration of the appliance"
},