Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update code to disable worload mcp #51384

Merged
merged 3 commits into from May 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -708,8 +708,10 @@ esac

#Create infra and workload machineconfigpool
create_machineconfigpool infra
create_machineconfigpool workload

if [[ $IF_CREATE_WORKLOAD_NODE == "true" ]];then
create_machineconfigpool workload
liqcui marked this conversation as resolved.
Show resolved Hide resolved
fi
#Set default value to none if no specified value, using cpu and ram of worker nodes to create machineset
#This also used for some property don't exist in a certain cloud provider, but need to pass correct parameter for create_machineset
OPENSHIFT_INFRA_NODE_INSTANCE_TYPE=${OPENSHIFT_INFRA_NODE_INSTANCE_TYPE:-none}
Expand Down
Expand Up @@ -45,7 +45,7 @@ ref:
- name: IF_CREATE_WORKLOAD_NODE
default: "false"
documentation: |-
Default is true, which means openshift-qe-workers-infra-workload-commands.sh will create workload node. You can set it to false to disable creating workload node
Default is false, set it to true which means openshift-qe-workers-infra-workload-commands.sh will create workload node. set it to false to disable creating workload node
liqcui marked this conversation as resolved.
Show resolved Hide resolved
- name: OPENSHIFT_INFRA_NODE_CPU_COUNT
default: ""
documentation: |-
Expand Down