Skip to content
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ examples/dt/uni*/control-plane/nncp/nncp.yaml
examples/dt/uni*/data-plane.yaml
examples/dt/uni*/networker/edpm-networker.yaml
.idea/
.aider*
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,10 @@ The following VAs are available.
- [Network Functions Virtualization with SRIOV](examples/va/nfv/sriov/)
- [Network Functions Virtualization with OvS DPDK](examples/va/nfv/ovs-dpdk/)
- [Network Functions Virtualization with OvS DPDK & SRIOV](examples/va/nfv/ovs-dpdk-sriov/) [untested]
- [Nvidia GPU Passthrough (VFIO)](examples/va/nvidia-vfio-passthrough/) [untested]

## Deployment Topologies

The following DTs are available.

- [Nova with GPU Passthrough (VFIO)](examples/dt/nova/nova04delta/) [untested]
42 changes: 42 additions & 0 deletions automation/mocks/nova04delta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
cifmw_install_ca_url: http://example.com/example.pem
cifmw_repo_setup_rhos_release_rpm: http://example.com/rhos-release.rpm
cifmw_repo_setup_rhos_release_args: example-args
cifmw_ci_gen_kustomize_values_remove_keys_expressions:
- ^node(_[0-9]+)?$
cifmw_baremetal_hosts:
edpm-compute-0:
connection: idrac-virtualmedia://foo.example.com/redfish/v1/Systems/System.Embedded.1
boot_mode: UEFI
status: running
nics:
- mac: "aa:bb:cc:dd:ee:ff"
network: provision
root_device_hint: /dev/disk/by-path/pci-0000:65:00.0-scsi-0:1:234:5
root_device_hint_field: deviceName
credentials_file: "/home/zuul/idrac_access.yaml"
nmstate:
interfaces:
- name: nic1
type: ethernet
state: up
ipv4:
enabled: true
dhcp: true
- name: nic2
type: ethernet
state: up
ipv4:
enabled: true
address:
- ip: 10.0.0.10
prefix-length: 24
dns-resolver:
config:
server:
- 10.0.0.1
routes:
config:
- destination: 0.0.0.0/0
next-hop-address: 10.0.0.1
next-hop-interface: nic1
Loading