Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions config_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,14 @@ set -x
#export WORKER_DISK=60
#export WORKER_VCPU=4

# WORKER_POOL_OS_IMAGE_STREAM -
# Set osImageStream on the worker compute pool in install-config.yaml.
# For example, set to "rhel-10" to deploy workers with a different OS
# stream than the control plane.
# Default: unset (omitted from install-config).
#
#export WORKER_POOL_OS_IMAGE_STREAM=rhel-10

# NUM_EXTRA_WORKERS - Indicate number of extra VMs to create but not deploy.
# Default: 0
#
Expand Down
1 change: 1 addition & 0 deletions ocp_install_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,7 @@ compute:
- name: worker
replicas: $NUM_WORKERS
architecture: $(get_arch install_config)
$([ -n "${WORKER_POOL_OS_IMAGE_STREAM:-}" ] && echo " osImageStream: $WORKER_POOL_OS_IMAGE_STREAM")
controlPlane:
name: master
replicas: ${NUM_MASTERS}
Expand Down