From bc20b318dd63c52dc0eb3837ee411c3b970689d5 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Sat, 30 Jan 2021 13:11:56 +0100 Subject: [PATCH] Fix wrong enum example in readme --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 644f6dadae..03acf5bec7 100644 --- a/README.md +++ b/README.md @@ -76,9 +76,12 @@ questions: type: string default: "IfNotPresent" enum: - - "IfNotPresent" - - "Always" - - "Never" + - value: "IfNotPresent" + description: "Only pull image if not present on host" + - value: "Always" + description: "Always pull image even if present on host" + - value: "Never" + description: "Never pull image even if it's not present on host" ``` The above will prompt the user with 2 text fields and a dropdown in the UI getting details for image configuration in a helm chart.