openstack-ansible/playbooks/roles/os_nova/tasks/nova_compute_key_create.yml
Matt Thompson a707c6c47f Create /var/lib/nova/.ssh/config
We are currently not dropping the included config file, which is
preventing nova from being able to resize/migrate from one host to
another.  This change simply drops the config file which we already
have under the os_nova role to the correct location.

Change-Id: I2d054f095bc76c821aa7b87f5f2890037260066a
Closes-Bug: #1429188
2015-03-06 16:10:12 +00:00

86 lines
2.4 KiB
YAML

---
# Copyright 2014, 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: Remove old key file(s) if found
file:
path: "{{ item }}"
state: "absent"
with_items:
- "{{ nova_system_home_folder }}/.ssh/authorized_keys"
- "{{ nova_system_home_folder }}/.ssh/id_rsa"
- "{{ nova_system_home_folder }}/.ssh/id_rsa.pub"
tags:
- nova-key
- nova-key-create
- name: Create the nova SSH config file
copy:
src: "ssh_config"
dest: "/var/lib/nova/.ssh/config"
owner: "{{ nova_system_user_name }}"
group: "{{ nova_system_user_name }}"
mode: "0644"
tags:
- nova-key
- nova-key-create
- name: Create the nova SSH key if it doesnt exist
command: |
ssh-keygen -f {{ nova_system_home_folder }}/.ssh/id_rsa -t rsa -q -N ""
sudo: yes
sudo_user: "{{ nova_system_user_name }}"
tags:
- nova-key
- nova-key-create
- name: Create empty 'authorized_keys' file
file:
path: "{{ nova_system_home_folder }}/.ssh/authorized_keys"
state: "touch"
tags:
- nova-key
- nova-key-create
- name: Change permissions on the generated keys
file:
path: "{{ item.path }}"
group: "{{ nova_system_user_name }}"
owner: "{{ nova_system_user_name }}"
mode: "{{ item.mode }}"
with_items:
- { path: "{{ nova_system_home_folder }}/.ssh/authorized_keys", mode: "0700" }
- { path: "{{ nova_system_home_folder }}/.ssh/id_rsa", mode: "0600" }
- { path: "{{ nova_system_home_folder }}/.ssh/id_rsa.pub", mode: "0644" }
tags:
- nova-key
- nova-key-create
- name: Get public key contents
command: |
cat {{ nova_system_home_folder }}/.ssh/id_rsa.pub
register: nova_pub
changed_when: false
tags:
- nova-key
- nova-key-create
- name: Build authorized keys
shell: |
echo "{{ nova_pub.stdout }}" | tee -a {{ nova_system_home_folder }}/.ssh/authorized_keys
delegate_to: "{{ groups['nova_compute'][0] }}"
tags:
- nova-key
- nova-key-create