k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
693 B
18 lines
693 B
---
|
|
- name: set bastion host IP
|
|
set_fact:
|
|
bastion_ip: "{{ hostvars[groups['bastion'][0]]['ansible_host'] | d(hostvars[groups['bastion'][0]]['ansible_ssh_host']) }}"
|
|
delegate_to: localhost
|
|
|
|
# As we are actually running on localhost, the ansible_ssh_user is your local user when you try to use it directly
|
|
# To figure out the real ssh user, we delegate this task to the bastion and store the ansible_user in real_user
|
|
- name: Store the current ansible_user in the real_user fact
|
|
set_fact:
|
|
real_user: "{{ ansible_user }}"
|
|
|
|
- name: create ssh bastion conf
|
|
become: false
|
|
delegate_to: localhost
|
|
template:
|
|
src: ssh-bastion.conf
|
|
dest: "{{ playbook_dir }}/ssh-bastion.conf"
|