Skip to content

Commit cbd264b

Browse files
committed
adding configvalues
1 parent 406afa1 commit cbd264b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# ConfigValues
2+
3+
This topic describes the Replicated KOTS ConfigValues custom resource. ConfigValues is used to provide application-specific configuration values during automated (headless) installations with the CLI.
4+
5+
## Example
6+
7+
```yaml
8+
apiVersion: kots.io/v1beta1
9+
kind: ConfigValues
10+
spec:
11+
values:
12+
text_config_field_name:
13+
default: Example default value
14+
value: Example user-provided value
15+
boolean_config_field_name:
16+
default: "0"
17+
value: "1"
18+
password_config_field_name:
19+
valuePlaintext: examplePassword
20+
```

0 commit comments

Comments
 (0)