diff --git a/contrib/ansible/group_vars/all.yml b/contrib/ansible/group_vars/all.yml index 19047befdd6..ae9d7dc2fb0 100644 --- a/contrib/ansible/group_vars/all.yml +++ b/contrib/ansible/group_vars/all.yml @@ -9,3 +9,9 @@ ansible_ssh_user: root # If a password is needed to sudo to root that password must be set here #ansible_sudo_pass: password + +# Kubernetes internal network for services. +# Kubernetes services will get fake IP addresses from this range. +# This range must not conflict with anything in your infrastructure. These +# addresses do not need to be routable and must just be an unused block of space. +kube_service_addresses: 10.254.0.0/16 diff --git a/contrib/ansible/group_vars/masters.yml b/contrib/ansible/group_vars/masters.yml deleted file mode 100644 index afc9ff04b42..00000000000 --- a/contrib/ansible/group_vars/masters.yml +++ /dev/null @@ -1,5 +0,0 @@ -# Kubernetes internal network for services. -# Kubernetes services will get fake IP addresses from this range. -# This range must not conflict with anything in your infrastructure. These -# addresses do not need to be routable and must just be an unused block of space. -kube_service_addresses: 10.254.0.0/16