From db31aed8bb3d5aaf9065733cc39b8a0d2884c233 Mon Sep 17 00:00:00 2001 From: Felix Breuer Date: Thu, 28 Jan 2021 19:07:37 +0100 Subject: [PATCH] FIX: Bastion undefined variable (#7227) Fixes the following error when using Bastion Node with the sample config. ``` fatal: [bastion]: FAILED! => {"msg": "The task includes an option with an undefined variable. The error was: 'dict object' has no attribute 'bastion'\n\nThe error appears to be in '/home/felix/inovex/kubespray/roles/bastion-ssh-config/tasks/main.yml': line 2, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n---\n- name: set bastion host IP\n ^ here\n"} ``` --- inventory/sample/inventory.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/inventory/sample/inventory.ini b/inventory/sample/inventory.ini index 325a66a04d3..6babb4e9eed 100644 --- a/inventory/sample/inventory.ini +++ b/inventory/sample/inventory.ini @@ -10,6 +10,7 @@ # node6 ansible_host=95.54.0.17 # ip=10.3.0.6 etcd_member_name=etcd6 # ## configure a bastion host if your nodes are not directly reachable +# [bastion] # bastion ansible_host=x.x.x.x ansible_user=some_user [kube-master]