# OKD cluster configuration okd_version: "4.16" base_domain: container-mom.com # Cluster configuration okd_name: "hub" # Name of the cluster okd_base_domain: "{{ base_domain }}" okd_cluster_artifacts: "/opt/okd/{{ okd_name }}" # Network configuration okd_machine_network: "192.168.1.0/24" # Adjust to your network okd_network_type: "OVNKubernetes" okd_api_vip: "192.168.1.5" # Virtual IP for API okd_ingress_vip: "192.168.1.6" # Virtual IP for Ingress # Bootstrap node configuration okd_bootstrap_external_static_ip: "192.168.1.10" okd_bootstrap_external_static_dns: "8.8.8.8" # Adjust to your DNS okd_bootstrap_external_static_gateway: "192.168.1.1" # Adjust to your gateway # Node configuration okd_controller_architecture: "x86_64" okd_worker_architecture: "x86_64" okd_controller_replicas: 3 okd_worker_replicas: 2 # Network bridges okd_external_bridge: "br-ex" okd_provisioning_bridge: "br-prov" okd_provisioning_network: "Disabled" okd_provisioning_network_cidr: "172.22.0.0/24" # Authentication okd_pull_secret: '{"auths":{"fake":{"auth":"aWQ6cGFzcwo="}}}' # Replace with your pull secret okd_ssh_key: "ssh-rsa AAAA..." # Replace with your SSH public key