---
# Copyright kubeinit contributors
# 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.
#
# Prepare the hypervisor
#
- name: Delegate to kubeinit_deployment_node_name (inventory_hostname)
block:
- name: Generate an OpenSSH keypair on kubeinit_deployment_node_name
community.crypto.openssh_keypair:
path: "~/.ssh/{{ hostvars['kubeinit-facts'].cluster_name }}_id_{{ hostvars['kubeinit-facts'].ssh_keytype }}"
type: "{{ hostvars['kubeinit-facts'].ssh_keytype }}"
comment: "{{ hostvars['kubeinit-facts'].cluster_name + ' ' + kubeinit_deployment_node_name }}"
regenerate: 'never'
register: _result_keypair
- name: Create authorized_key from keypair
ansible.builtin.set_fact:
authorized_key: "{{ _result_keypair.public_key + ' ' + _result_keypair.comment }}"
delegate_facts: true
- name: Provision the libvirt services on the hypervisor
ansible.builtin.include_role:
name: kubeinit.kubeinit.kubeinit_libvirt
public: true
vars:
kubeinit_deployment_node_name: "{{ inventory_hostname }}"
delegate_to: "{{ kubeinit_deployment_node_name }}"