Basic Generic File Cleanups

No major changes, just renaming, whitespace, etc
This commit is contained in:
Jeff Bean 2015-06-17 12:02:39 -04:00 committed by Eric Paris
parent 9816488179
commit f259892cc9
16 changed files with 55 additions and 55 deletions

View File

@ -5,7 +5,7 @@ cluster_name: kube.local
# Account name of remote user. Ansible will use this user account to ssh into # 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 # the managed machines. The user must be able to use sudo without asking
# for password unless ansible_sudo_pass is set # for password unless ansible_sudo_pass is set
ansible_ssh_user: root #ansible_ssh_user: root
# password for the ansible_ssh_user. If this is unset you will need to set up # password for the ansible_ssh_user. If this is unset you will need to set up
# ssh keys so a password is not needed. # ssh keys so a password is not needed.

View File

@ -1,10 +1,10 @@
[etcd]
10.0.0.2
[masters] [masters]
10.0.0.1 kube-master-test-01.example.com
[etcd]
kube-master-test-01.example.com
[nodes] [nodes]
10.0.0.3 kube-minion-test-01.example.com
10.0.0.4 kube-minion-test-02.example.com
10.0.0.5

View File

@ -1,5 +1,5 @@
--- ---
- name: Determine if firewalld installed - name: RPM | Determine if firewalld installed
command: "rpm -q firewalld" command: "rpm -q firewalld"
register: s register: s
changed_when: false changed_when: false

View File

@ -1,4 +1,4 @@
--- ---
- name: Remove docker window manager on F20 - name: Fedora | Remove docker window manager on F20
yum: pkg=docker state=absent yum: pkg=docker state=absent
when: not is_atomic and ansible_distribution_major_version == "20" when: not is_atomic and ansible_distribution_major_version == "20"