Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update console_type in appliance schemas v7 and v8 #854

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions schemas/appliance_v7.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -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": {
Expand Down
6 changes: 4 additions & 2 deletions schemas/appliance_v8.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"telnet",
"vnc",
"http",
"https"
"https",
"none"
],
"title": "Type of console"
},
Expand Down Expand Up @@ -502,7 +503,8 @@
"telnet",
"vnc",
"spice",
"spice+agent"
"spice+agent",
"none"
],
"title": "Type of console connection for the administration of the appliance"
},
Expand Down
Loading