Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,12 @@ objects:
if has_variant "compact" || has_variant "multisocket"; then
workers=0
fi

masters=3
if has_variant "sno"; then
masters=1
fi

if [[ "${CLUSTER_TYPE}" == "aws" ]]; then
master_type=null
if has_variant "multisocket"; then
Expand Down Expand Up @@ -508,7 +514,7 @@ objects:
name: ${CLUSTER_NAME}
controlPlane:
name: master
replicas: 3
replicas: ${masters}
platform:
aws:
type: ${master_type}
Expand Down Expand Up @@ -567,7 +573,7 @@ objects:
name: ${CLUSTER_NAME}
controlPlane:
name: master
replicas: 3
replicas: ${masters}
compute:
- name: worker
replicas: ${workers}
Expand Down Expand Up @@ -624,7 +630,7 @@ objects:
name: ${CLUSTER_NAME}
controlPlane:
name: master
replicas: 3
replicas: ${masters}
platform:
gcp:
type: ${master_type}
Expand Down Expand Up @@ -794,6 +800,10 @@ objects:
export OPENSHIFT_INSTALL_PRESERVE_BOOTSTRAP=true
fi

if has_variant "sno"; then
export OPENSHIFT_INSTALL_EXPERIMENTAL_CLUSTER_PROFILE="single-node-production-edge"
fi

openshift-install --dir=${ARTIFACT_DIR}/installer/ create manifests &
wait "$!"

Expand Down