94a58e398b
With update of ansible-lint to version >=6.0.0 a lot of new linters were added, that enabled by default. In order to comply with linter rules we're applying changes to the role. With that we also update metdata to reflect current state. Change-Id: Idb2dd6cd4bbf815e4b32c9bfbe9a66f33e1c4b97
73 lines
2.3 KiB
YAML
73 lines
2.3 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: Create keyring files for openstack clients from extra cluster(s)
|
|
shell: >-
|
|
ceph auth get client.{{ item.client_name }} --cluster {{ ceph_cluster_name }} >/dev/null &&
|
|
ceph auth get-or-create client.{{ item.client_name }} --cluster {{ ceph_cluster_name }}
|
|
> /etc/ceph/{{ ceph_cluster_name }}.client.{{ item.client_name }}.keyring.tmp
|
|
with_items: "{{ ceph_extra_confs }}"
|
|
changed_when: false
|
|
delegate_to: "{{ item.mon_host }}"
|
|
when:
|
|
- item.client_name is defined
|
|
- item.mon_host is defined
|
|
|
|
- name: Get extra keyring files
|
|
command: "scp {{ item.mon_host }}:/etc/ceph/{{ ceph_cluster_name }}.client.{{ item.client_name }}.keyring.tmp {{ item.keyring_src }}"
|
|
changed_when: false
|
|
delegate_to: localhost
|
|
with_items: "{{ ceph_extra_confs }}"
|
|
when:
|
|
- item.mon_host is defined
|
|
- item.keyring_src is defined
|
|
- item.client_name is defined
|
|
|
|
- name: Secure extra keyring file permissions
|
|
file:
|
|
path: "{{ item.keyring_src }}"
|
|
state: file
|
|
mode: "0600"
|
|
delegate_to: localhost
|
|
with_items: "{{ ceph_extra_confs }}"
|
|
when:
|
|
- item.keyring_src is defined
|
|
|
|
- name: Remove temp extra keyring files
|
|
file:
|
|
path: "/etc/ceph/{{ ceph_cluster_name }}.client.{{ item.client_name }}.keyring.tmp"
|
|
state: absent
|
|
delegate_to: "{{ item.mon_host }}"
|
|
with_items: "{{ ceph_extra_confs }}"
|
|
when:
|
|
- item.mon_host is defined
|
|
- item.keyring_src is defined
|
|
- item.client_name is defined
|
|
|
|
- name: Create extra keyring files
|
|
copy:
|
|
src: "{{ item.keyring_src }}"
|
|
dest: "{{ item.keyring_dest }}"
|
|
owner: root
|
|
group: "{{ cephkeys_access_group }}"
|
|
mode: "0640"
|
|
notify:
|
|
- Restart os services
|
|
with_items: "{{ ceph_extra_confs }}"
|
|
when:
|
|
- item.keyring_src is defined
|
|
- item.keyring_dest is defined
|