Files
openstack-ansible/tests/test-vars-overrides.yml
Dmitriy Rabotyagov 96b0b4a7b6 Use FQCN for modules and fix YAML issues
With migration to FQCN in roles it's time to adjust our integrated
repo content to match the same pattern and pass modern ansible-lint
checks.

Change-Id: Ieb58c77a8b36b9a508f9b726b688898d83092031
2025-04-13 17:17:44 +00:00

49 lines
1.5 KiB
YAML

---
# Copyright 2017, Rackspace US, 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: Ensuring group vars
hosts: "hosts"
gather_facts: false
connection: local
user: root
tasks:
- name: Ensuring existing group vars are well applied
ansible.builtin.assert:
that:
- "openstack_release is defined"
- name: Ensuring babar is well defined
ansible.builtin.assert:
that:
- "babar == 'elephant'"
- name: Ensuring lxc_hosts_package_state is well overridden
ansible.builtin.assert:
that:
- "lxc_hosts_package_state == 'present'"
- name: Ensuring host vars
hosts: localhost
gather_facts: false
connection: local
user: root
tasks:
- name: Ensuring tintin has milou
ansible.builtin.assert:
that:
- "tintin == 'milou'"
- name: Ensuring security_package_state is overridden
ansible.builtin.assert:
that:
- "security_package_state == 'present'"