b621c711e8
Preparing this role for the ansible-lint version bump Change-Id: I5d38c3eb0f7fdf98d9114e692cad9ad36127ac44
41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
YAML
---
|
|
# Copyright 2016, Walmart Stores, Inc.
|
|
#
|
|
# 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: Add in cinder qos types
|
|
shell: |
|
|
. {{ ansible_env.HOME }}/openrc
|
|
{{ cinder_bin }}/cinder qos-list | grep {{ item.name }} || \
|
|
{{ cinder_bin }}/cinder qos-create {{ item.name }}\
|
|
{% for k,v in item.options.iteritems() %} {{ k }}={{ v }}{% endfor %}
|
|
with_items: "{{ cinder_qos_specs }}"
|
|
changed_when: false
|
|
tags:
|
|
- cinder-qos
|
|
|
|
- name: Associate qos types to volume types
|
|
shell: |
|
|
. {{ ansible_env.HOME }}/openrc
|
|
{% for vtype in item.cinder_volume_types %}
|
|
{{ cinder_bin }}/cinder qos-associate \
|
|
$({{ cinder_bin }}/cinder qos-list | grep {{ item.name }} | grep -oE "{{ _UUID_regex }}") \
|
|
$({{ cinder_bin }}/cinder type-list | grep {{ vtype }} | grep -oE "{{ _UUID_regex }}")
|
|
{% endfor %}
|
|
with_items: "{{ cinder_qos_specs }}"
|
|
when:
|
|
- item.cinder_volume_types is defined
|
|
tags:
|
|
- cinder-qos
|
|
- cinder-qos-associate
|