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.
21 lines
635 B
21 lines
635 B
---
|
|
- set_fact:
|
|
has_bastion: "{{ 'bastion' in groups['all'] }}"
|
|
|
|
- set_fact:
|
|
bastion_ip: "{{ hostvars['bastion']['ansible_host'] }}"
|
|
when: has_bastion
|
|
|
|
# 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
|
|
- set_fact:
|
|
real_user: "{{ ansible_user }}"
|
|
delegate_to: bastion
|
|
when: has_bastion
|
|
|
|
- name: create ssh bastion conf
|
|
become: false
|
|
template:
|
|
src: ssh-bastion.conf
|
|
dest: "{{ playbook_dir }}/ssh-bastion.conf"
|
|
when: has_bastion
|