|
| 1 | +--- |
| 2 | +cifmw_architecture_scenario: "ovs-dpdk-sriov-networker" |
| 3 | + |
| 4 | +# Automation section. Most of those parameters will be passed to the |
| 5 | +# controller-0 as-is and be consumed by the `deploy-va.sh` script. |
| 6 | +# Please note, all paths are on the controller-0, meaning managed by the |
| 7 | +# Framework. Please do not edit them! |
| 8 | +_arch_repo: "{{ cifmw_architecture_repo | default('/home/zuul/src/github.com/openstack-k8s-operators/architecture') }}" |
| 9 | + |
| 10 | +# HERE if you want to override kustomization, you can uncomment this parameter |
| 11 | +# and push the data structure you want to apply. |
| 12 | +# cifmw_architecture_user_kustomize: |
| 13 | +# stage_0: |
| 14 | +# 'network-values': |
| 15 | +# data: |
| 16 | +# starwars: Obiwan |
| 17 | + |
| 18 | +# HERE, if you want to stop the deployment loop at any stage, you can uncomment |
| 19 | +# the following parameter and update the value to match the stage you want to |
| 20 | +# reach. Known stages are: |
| 21 | +# pre_kustomize_stage_INDEX |
| 22 | +# pre_apply_stage_INDEX |
| 23 | +# post_apply_stage_INDEX |
| 24 | +# |
| 25 | +# cifmw_deploy_architecture_stopper: |
| 26 | + |
| 27 | +cifmw_libvirt_manager_net_prefix_add: false |
| 28 | +cifmw_libvirt_manager_fixed_networks: |
| 29 | + - ocpbm |
| 30 | + - ocppr |
| 31 | + - osp_external |
| 32 | + - osp_trunk |
| 33 | + |
| 34 | +cifmw_libvirt_manager_configuration: |
| 35 | + networks: |
| 36 | + ocpbm: | |
| 37 | + <network> |
| 38 | + <name>ocpbm</name> |
| 39 | + <forward mode='bridge' /> |
| 40 | + <bridge name='ocpbm' /> |
| 41 | + </network> |
| 42 | + ocppr: | |
| 43 | + <network> |
| 44 | + <name>ocppr</name> |
| 45 | + <forward mode='bridge' /> |
| 46 | + <bridge name='ocppr' /> |
| 47 | + </network> |
| 48 | + osp_external: | |
| 49 | + <network> |
| 50 | + <name>osp_external</name> |
| 51 | + <forward mode='bridge' /> |
| 52 | + <bridge name='osp_external' /> |
| 53 | + </network> |
| 54 | + osp_trunk: | |
| 55 | + <network> |
| 56 | + <name>osp_trunk</name> |
| 57 | + <forward mode='bridge' /> |
| 58 | + <bridge name='osp_trunk' /> |
| 59 | + </network> |
| 60 | + vms: |
| 61 | + controller: |
| 62 | + uefi: "{{ cifmw_use_uefi }}" |
| 63 | + root_part_id: "{{ cifmw_root_partition_id }}" |
| 64 | + image_url: "{{ cifmw_discovered_image_url }}" |
| 65 | + sha256_image_name: "{{ cifmw_discovered_hash }}" |
| 66 | + image_local_dir: "{{ cifmw_basedir }}/images/" |
| 67 | + disk_file_name: "base-os.qcow2" |
| 68 | + disksize: 50 |
| 69 | + memory: 8 |
| 70 | + cpus: 4 |
| 71 | + nets: |
| 72 | + - ocpbm |
| 73 | + - osp_trunk |
| 74 | + ocp: |
| 75 | + amount: 3 |
| 76 | + uefi: true |
| 77 | + root_part_id: 4 |
| 78 | + admin_user: core |
| 79 | + image_local_dir: "{{ cifmw_basedir }}/images/" |
| 80 | + disk_file_name: "ocp_master" |
| 81 | + disksize: "100" |
| 82 | + extra_disks_num: 3 |
| 83 | + extra_disks_size: "50G" |
| 84 | + cpus: 10 |
| 85 | + memory: 32 |
| 86 | + nets: |
| 87 | + - ocppr |
| 88 | + - ocpbm |
| 89 | + - osp_trunk |
| 90 | + - osp_external |
| 91 | + |
| 92 | +# Note: with that extra_network_names "osp_trunk", we instruct |
| 93 | +# devscripts role to create a new network, and associate it to |
| 94 | +# the OCP nodes. This one is a "private network", and will hold |
| 95 | +# the VLANs used for network isolation. |
| 96 | + |
| 97 | +# Please create a custom env file to provide: |
| 98 | +# cifmw_devscripts_ci_token: |
| 99 | +# cifmw_devscripts_pull_secret: |
| 100 | + |
| 101 | +# Baremetal host configuration |
| 102 | +cifmw_config_bmh: true |
| 103 | + |
| 104 | +# BMH are deployed in a differnt NS than the secret OSP BMO |
| 105 | +# references in each BMH. Metal3 requires the referenced |
| 106 | +# secrets to be in the same NS or be allowed to access them |
| 107 | +cifmw_openshift_setup_metal3_watch_all_ns: true |
| 108 | + |
| 109 | +# Use EDPM image for computes |
| 110 | +cifmw_update_containers_edpm_image_url: "{{ cifmw_update_containers_registry }}/{{ cifmw_update_containers_org }}/edpm-hardened-uefi:{{ cifmw_update_containers_tag }}" |
| 111 | + |
| 112 | +# Set Logical Volume Manager Storage by default for local storage |
| 113 | +cifmw_use_lvms: true |
| 114 | +cifmw_lvms_disk_list: |
| 115 | + - /dev/vda |
| 116 | + - /dev/vdb |
| 117 | + - /dev/vdc |
0 commit comments