forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add comments to configuration variables
- Loading branch information
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
# Account name of remote user. Ansible will use this user account to ssh into | ||
# the managed machines. The user must be able to use sudo without asking | ||
# for password unless ansible_sudo_pass is set | ||
ansible_ssh_user: root | ||
|
||
# password for the ansible_ssh_user. If this is unset you will need to set up | ||
# ssh keys so a password is not needed. | ||
#ansible_ssh_pass: password | ||
|
||
# If a password is needed to sudo to root that password must be set here | ||
#ansible_sudo_pass: password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
kube_service_addresses: 10.254.0.0/16 # MUST be defined as a range not used in your infrastructure | ||
# 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 |