From 6043696e24556d02a01b53d00c06bb8bdf85af1f Mon Sep 17 00:00:00 2001 From: Hendrik Leidinger Date: Wed, 12 Jan 2022 20:58:04 +0100 Subject: [PATCH] questions.yaml update --- charts/vp-web/0.1.0/questions.yaml | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/charts/vp-web/0.1.0/questions.yaml b/charts/vp-web/0.1.0/questions.yaml index 64023c8..561b057 100644 --- a/charts/vp-web/0.1.0/questions.yaml +++ b/charts/vp-web/0.1.0/questions.yaml @@ -2,10 +2,26 @@ groups: - name: "Network" description: "Specify Network settings" questions: - - variable: service.port - label: "External Port" - description: "Port for exposing the service" + - variable: service + label: "Service" + description: "Service configuration" group: "Network" schema: - type: int - required: true + 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"