Is it possible to use Kubespray with Bastion but on custom port and with agent forwarding? If it is not supported, what changes does one need to do?
Kubespray with bastion and custom SSH port + agent forwarding
1.5k Views Asked by kboom At
2
There are 2 best solutions below
0

In my case where I needed to access the hosts on particular ports, I just had to modify the host's ~/.ssh/config
to be:
Host 10.40.45.102
ForwardAgent yes
User root
ProxyCommand ssh -W %h:%p -p 44057 [email protected]
Host 10.40.45.104
ForwardAgent yes
User root
ProxyCommand ssh -W %h:%p -p 44058 [email protected]
Where 10.40.*
was the internal IPs.
Always, since you can configure that at three separate levels: via the host user's
~/.ssh/config
, via the entire playbook withgroup_vars
, or as inline config (that is, on the command line or in the inventory file).The ssh config is hopefully straightforward:
I'll speak to the inline config next, since it's a little simpler:
or via the inventory in the same way:
or via
group_vars
, which you can either add to an existinggroup_vars/all.yml
, or if it doesn't exist then create thatgroup_vars
directory containing theall.yml
file as a child of the directory containing your inventory fileIf you have more complex ssh config than you wish to encode in the inventory/command-line/group_vars, you can also instruct the ansible-invoked ssh to use a dedicated config file via the
ansible_ssh_extra_args
variable: