questions.yaml update

This commit is contained in:
Hendrik Leidinger 2022-01-12 20:58:04 +01:00
parent d4ba123a8f
commit 6043696e24

View file

@ -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"