Add support for bastion hosts
This commit is contained in:
parent
33585fa673
commit
06584ee3aa
6 changed files with 51 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,3 +5,4 @@ temp
|
||||||
.idea
|
.idea
|
||||||
*.tfstate
|
*.tfstate
|
||||||
*.tfstate.backup
|
*.tfstate.backup
|
||||||
|
/ssh-bastion.conf
|
|
@ -1,5 +1,7 @@
|
||||||
[ssh_connection]
|
[ssh_connection]
|
||||||
pipelining=True
|
pipelining=True
|
||||||
|
ssh_args = -F ./ssh-bastion.conf -o ControlMaster=auto -o ControlPersist=30m
|
||||||
|
control_path = ~/.ssh/ansible-%%r@%%h:%%p
|
||||||
[defaults]
|
[defaults]
|
||||||
host_key_checking=False
|
host_key_checking=False
|
||||||
gathering = smart
|
gathering = smart
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
---
|
---
|
||||||
|
- hosts: localhost
|
||||||
|
gather_facts: False
|
||||||
|
roles:
|
||||||
|
- bastion-ssh-config
|
||||||
|
|
||||||
- hosts: all
|
- hosts: all
|
||||||
any_errors_fatal: true
|
any_errors_fatal: true
|
||||||
gather_facts: false
|
gather_facts: false
|
||||||
|
@ -16,7 +21,7 @@
|
||||||
any_errors_fatal: true
|
any_errors_fatal: true
|
||||||
gather_facts: true
|
gather_facts: true
|
||||||
|
|
||||||
- hosts: all:!network-storage
|
- hosts: all:!network-storage:!bastion
|
||||||
any_errors_fatal: true
|
any_errors_fatal: true
|
||||||
roles:
|
roles:
|
||||||
- { role: kubernetes/preinstall, tags: preinstall }
|
- { role: kubernetes/preinstall, tags: preinstall }
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
# node5 ansible_ssh_host=95.54.0.16 # ip=10.3.0.5
|
# node5 ansible_ssh_host=95.54.0.16 # ip=10.3.0.5
|
||||||
# node6 ansible_ssh_host=95.54.0.17 # ip=10.3.0.6
|
# node6 ansible_ssh_host=95.54.0.17 # ip=10.3.0.6
|
||||||
|
|
||||||
|
# ## configure a bastion host if your nodes are not publicly reachable
|
||||||
|
# bastion ansible_ssh_host=xxx.xxx.xxx.xxx
|
||||||
|
|
||||||
# [kube-master]
|
# [kube-master]
|
||||||
# node1
|
# node1
|
||||||
# node2
|
# node2
|
||||||
|
|
18
roles/bastion-ssh-config/tasks/main.yml
Normal file
18
roles/bastion-ssh-config/tasks/main.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
- set_fact:
|
||||||
|
has_bastion: "{{ 'bastion' in groups['all'] }}"
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
bastion_ip: "{{ hostvars['bastion']['ansible_ssh_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_ssh_user in real_user
|
||||||
|
- set_fact:
|
||||||
|
real_user: "{{ ansible_ssh_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"
|
21
roles/bastion-ssh-config/templates/ssh-bastion.conf
Normal file
21
roles/bastion-ssh-config/templates/ssh-bastion.conf
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{% if has_bastion %}
|
||||||
|
{% set vars={'hosts': ''} %}
|
||||||
|
{% set user='' %}
|
||||||
|
|
||||||
|
{% for h in groups['all'] %}
|
||||||
|
{% if h != 'bastion' %}
|
||||||
|
{% if vars.update({'hosts': vars['hosts'] + ' ' + hostvars[h]['ansible_ssh_host']}) %}{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
Host {{ bastion_ip }}
|
||||||
|
Hostname {{ bastion_ip }}
|
||||||
|
StrictHostKeyChecking no
|
||||||
|
ControlMaster auto
|
||||||
|
ControlPath ~/.ssh/ansible-%r@%h:%p
|
||||||
|
ControlPersist 5m
|
||||||
|
|
||||||
|
Host {{ vars['hosts'] }}
|
||||||
|
ProxyCommand ssh -W %h:%p {{ real_user }}@{{ bastion_ip }}
|
||||||
|
StrictHostKeyChecking no
|
||||||
|
{% endif %}
|
Loading…
Reference in a new issue