Last active
March 17, 2023 11:10
-
-
Save bpradipt/56a74359358e2235737ea19568b833d4 to your computer and use it in GitHub Desktop.
kcli params for deploying OpenShift 4.10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Cluster domain | |
domain: test410.com | |
# Cluster name | |
cluster: test | |
# RHCOS image name in the libvirt storage pool | |
# You can leave it empty for kcli to download and use the release specific image | |
# image: | |
imagecontentsources: [] | |
mdns: True | |
# Uncomment the below line for disconnected installs | |
#disconnected_deploy: True | |
# Libvirt network name eg. 192.168.10.0/24 | |
network: openshift | |
# Libvirt storage pool | |
pool: openshift | |
# If you are creating multiple clusters on the same network, then explicitly | |
# assign api_ip to avoid using the same IP for different clusters | |
api_ip: 192.168.10.199 | |
# Copy the pull secret to a file and specify the filename details | |
pull_secret: openshift_pull.json | |
# Release version number: 4.8/4.9/4.10 | |
tag: 4.10 | |
# Build type: nightly/stable. The latest nightly or stable build will be automatically downloaded | |
# If specific version is required then download openshift-install from | |
# https://mirror.openshift.com/pub/openshift-v4/clients and | |
# place it in /home/kcli/.local/bin:/home/kcli/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/home/kcli/go/bin to use the same for install | |
version: nightly | |
masters: 3 | |
workers: 2 | |
numcpus: 4 | |
disk_size: 60 | |
bootstrap_memory: 16384 | |
master_memory: 16384 | |
worker_memory: 16384 | |
bootstrap_numcpus: 4 | |
master_numcpus: 4 | |
worker_numcpus: 2 | |
master_macs: [] | |
worker_macs: [] | |
network_type: OVNKubernetes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment