Michael Gugino dc055ee999 Implement support for cinder qos specs
Currently, there is no support for creating qos
specs and associations in cinder.

This patch enables deployers to create qos specs
and associate them to any desired cinder volume-types.

Change-Id: I5d493fb3987849f071c6df5241466c993009389b
2016-10-03 18:11:55 +00:00

40 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
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