You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With this patch, manifest-tests parse feature-set and feature-gates
information from the environment variables `FEATURE_SET` and
`FEATURE_GATES`.
This change enables testing the generation of manifests in the CAPI
flow.
Copy file name to clipboardExpand all lines: hack/openstack/test-manifests.sh
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -39,13 +39,29 @@ print_help() {
39
39
echo -e "\\t-t\\t\\tpath to the tests to be run (defaults to '${tests_dir}')"
40
40
echo -e "\\t-p\\t\\tpersist artifacts: do not delete files generated by openshift-install"
41
41
echo -e "\\t-r <regexp>\\trun: only run test cases that match the given regular expression"
42
+
echo
43
+
echo -e 'Parsed environment variables:'
44
+
echo -e "\\tOS_CLOUD\\t\\ttarget OpenStack cloud (must match an entry in cloud.yaml)"
45
+
echo -e "\\tFEATURE_SET\\t\\tsets the cluster feature set. This is used to enable custom features such as tech preview features."
46
+
echo -e "\\tFEATURE_GATES\\t\\tcomma-separated list of cluster feature gates. This is used to enable custom features. Only to be used in conjunction with FEATURE_SET=CustomNoUpgrade."
0 commit comments