32 lines
786 B
Plaintext
32 lines
786 B
Plaintext
|
|
export-env {
|
||
|
|
$env.tags_url = "https://github.com/kubernetes/kubernetes/tags"
|
||
|
|
$env.use_dev_release = false
|
||
|
|
$env.defs_values = [
|
||
|
|
{
|
||
|
|
input_type: "list",
|
||
|
|
msg: "OCI Reg Storage",
|
||
|
|
var: "OCIRegStorage",
|
||
|
|
default_value: "Local",
|
||
|
|
options_list: [
|
||
|
|
"S3",
|
||
|
|
"Local",
|
||
|
|
],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
input_type: "text",
|
||
|
|
numchar: 0,
|
||
|
|
msg: "Text",
|
||
|
|
var: "text",
|
||
|
|
default_value: "value",
|
||
|
|
not_empty: true,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
input_type: "text",
|
||
|
|
numchar: 3,
|
||
|
|
msg: "Confirmar",
|
||
|
|
var: "confirm",
|
||
|
|
default_value: "yes",
|
||
|
|
not_empty: true,
|
||
|
|
},
|
||
|
|
]
|
||
|
|
}
|