27 lines
738 B
YAML
27 lines
738 B
YAML
groups:
|
|
- name: "Network"
|
|
description: "Specify Network settings"
|
|
questions:
|
|
- variable: service
|
|
label: "Service"
|
|
description: "Service configuration"
|
|
group: "Network"
|
|
schema:
|
|
type: dict
|
|
attrs:
|
|
- variable: port
|
|
label: "Port"
|
|
description: "This port exposes the container port on the service"
|
|
schema:
|
|
type: int
|
|
default: 10037
|
|
required: true
|
|
- variable: type
|
|
label: "Type"
|
|
description: "Network Type"
|
|
schema:
|
|
type: string
|
|
default: "ClusterIP"
|
|
enum:
|
|
- value: "ClusterIP"
|
|
description: "NodePort Mode"
|