123456789101112131415161718192021222324252627282930 |
- # Copyright 2020 Dell Inc. or its subsidiaries. All Rights Reserved.
- #
- # 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: Validate skip tags
- fail:
- msg: "{{ skip_tag_fail_msg }}"
- when: "'slurm' in ansible_skip_tags and 'kubernetes' in ansible_skip_tags"
- - name: Manager group to contain exactly 1 node
- assert:
- that: "groups['manager'] | length | int == 1"
- fail_msg: "{{ manager_group_fail_msg }}"
- success_msg: "{{ manager_group_success_msg }}"
- - name: Compute group to contain atleast 1 node
- assert:
- that: "groups['compute'] | length | int >= 1"
- fail_msg: "{{ compute_group_fail_msg }}"
- success_msg: "{{ compute_group_success_msg }}"
|