Unverified Commit 37b17f15 authored by Waqar Ahmed's avatar Waqar Ahmed Committed by GitHub

Merge pull request #31 from Ornias1993/patch-3

Fix wrong enum example in readme
parents 912ec110 bc20b318
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment