-
Notifications
You must be signed in to change notification settings - Fork 123
NFV OVS DPDK and SRIOV workload changes #2606
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
NFV OVS DPDK and SRIOV workload changes #2606
Conversation
Thanks for the PR! ❤️ |
5400111
to
79e2a0a
Compare
This PR is stale because it has been for over 15 days with no activity. |
79e2a0a
to
4b9addb
Compare
This PR is stale because it has been for over 15 days with no activity. |
This PR is stale because it has been for over 15 days with no activity. |
planning to update this Pr. |
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/4bcf143c69bf47a8b1278a106ce677ac ✔️ openstack-k8s-operators-content-provider SUCCESS in 1h 34m 11s |
4b9addb
to
32cba42
Compare
dfaaca7
to
6d70e36
Compare
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
This PR is stale because it has been for over 15 days with no activity. |
This change is to add workload with both ovs dpdk and sriov ports and ping testing for both ports during update.
6d70e36
to
23d159f
Compare
recheck |
@@ -510,7 +542,16 @@ if [[ "${MODE}" == "workload_traffic" ]]; then | |||
echo "export CINDER_VOL_ID=${CINDER_VOL_ID}" >> ~/workload_suffix | |||
echo "export INSTANCE_FIP=${INSTANCE_FIP}" >> ~/workload_suffix | |||
echo "export VM_IP=${VM_IP}" > ~/vm_ip.sh | |||
generate_traffic | |||
local workload_sriov={{workload_sriov|default(false) | bool | ternary("True", "")}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not just:
local workload_sriov={{workload_sriov|default(false) | bool }}
local workload_dpdk={{workload_dpdk|default(false) | bool }}
@@ -42,8 +42,8 @@ function os_cmd { | |||
|
|||
function set_vm_ip { | |||
## assign floating ip or external ip | |||
local workload_sriov={{workload_sriov|default(false) | bool | ternary("True", "")}} | |||
if [ -n "${workload_sriov}" ]; then | |||
local fixed_ip={{ $1|default(false) | bool }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how it should work? Here I see bash + ansible in jinja2 template.
This change is to add workload with both ovs dpdk
and sriov ports and ping testing for both ports
during update.