questions.yaml update
This commit is contained in:
parent
d4ba123a8f
commit
6043696e24
1 changed files with 21 additions and 5 deletions
|
|
@ -2,10 +2,26 @@ groups:
|
||||||
- name: "Network"
|
- name: "Network"
|
||||||
description: "Specify Network settings"
|
description: "Specify Network settings"
|
||||||
questions:
|
questions:
|
||||||
- variable: service.port
|
- variable: service
|
||||||
label: "External Port"
|
label: "Service"
|
||||||
description: "Port for exposing the service"
|
description: "Service configuration"
|
||||||
group: "Network"
|
group: "Network"
|
||||||
|
schema:
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
|
- variable: port
|
||||||
|
label: "Port"
|
||||||
|
description: "This port exposes the container port on the service"
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
|
default: 10037
|
||||||
required: true
|
required: true
|
||||||
|
- variable: type
|
||||||
|
label: "Type"
|
||||||
|
description: "Network Type"
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: "ClusterIP"
|
||||||
|
enum:
|
||||||
|
- value: "ClusterIP"
|
||||||
|
description: "NodePort Mode"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue