diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-12-22 10:52:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-12-22 10:52:13 +0000 |
commit | 9bef739e89f3b230c9e0a53c2286a440017ec948 (patch) | |
tree | 35cf9d6b35cb53fa006c047ec52e5d1270adbdc8 /ansible/roles/create_samplevnfs_image/tasks | |
parent | 6459403fbd505549f13190a28eeeb15289945850 (diff) | |
parent | 057b1a79717c12eb283baeed94963cda2ff26df8 (diff) |
Merge "Bugfix:proxy env, ansible multinode support"
Diffstat (limited to 'ansible/roles/create_samplevnfs_image/tasks')
-rw-r--r-- | ansible/roles/create_samplevnfs_image/tasks/main.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ansible/roles/create_samplevnfs_image/tasks/main.yml b/ansible/roles/create_samplevnfs_image/tasks/main.yml new file mode 100644 index 000000000..c83cccab5 --- /dev/null +++ b/ansible/roles/create_samplevnfs_image/tasks/main.yml @@ -0,0 +1,24 @@ +# Copyright (c) 2017 Intel Corporation. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +--- +- name: create yardstick-samplevnfs image + when: openrc_file is defined + os_image: + name: yardstick-samplevnfs + is_public: yes + disk_format: qcow2 + container_format: bare + filename: "{{ raw_imgfile }}" + properties: + hw_vif_multiqueue_enabled: true |