1d34fbba2a
At the moment the recommended way of managing Ceph clusters is using Rook-Ceph operator. However some of the users still utilize legacy OSH Ceph* charts. Since Ceph is a critical part of the infrastructure we suggest a migration procedure and this PR is to test it. Change-Id: I837c8707b9fa45ff4350641920649188be1ce8da
12 lines
387 B
YAML
12 lines
387 B
YAML
---
|
|
- hosts: all
|
|
tasks:
|
|
- name: Put keys to .ssh/authorized_keys
|
|
lineinfile:
|
|
path: /home/zuul/.ssh/authorized_keys
|
|
state: present
|
|
line: "{{ item }}"
|
|
loop:
|
|
- "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMyM6sgu/Xgg+VaLJX5c6gy6ynYX7pO7XNobnKotYRulcEkmiLprvLSg+WP25VDAcSoif3rek3qiVnEYh6R2/Go= vlad@russell"
|
|
...
|