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_image/tasks/main.yml | |
parent | 6459403fbd505549f13190a28eeeb15289945850 (diff) | |
parent | 057b1a79717c12eb283baeed94963cda2ff26df8 (diff) |
Merge "Bugfix:proxy env, ansible multinode support"
Diffstat (limited to 'ansible/roles/create_image/tasks/main.yml')
-rw-r--r-- | ansible/roles/create_image/tasks/main.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ansible/roles/create_image/tasks/main.yml b/ansible/roles/create_image/tasks/main.yml new file mode 100644 index 000000000..f63489d2d --- /dev/null +++ b/ansible/roles/create_image/tasks/main.yml @@ -0,0 +1,23 @@ +# 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: pre-clean openstack enviroment + hosts: yardstick + vars_files: + - yardstick_config.yml + + roles: + - convert_openrc + - clean_images + - clean_flavors |