2018-09-02 14:08:51 +08:00
|
|
|
# 系统基础软件环境
|
|
|
|
- import_tasks: debian.yml
|
|
|
|
when: ansible_distribution == "Ubuntu" or ansible_distribution == "Debian"
|
|
|
|
|
|
|
|
- import_tasks: centos.yml
|
2019-01-03 20:21:39 +08:00
|
|
|
when: ansible_distribution == "CentOS" or ansible_distribution == "RedHat"
|
2018-09-02 14:08:51 +08:00
|
|
|
|
2019-01-24 11:06:48 +08:00
|
|
|
# 公共系统参数设置
|
|
|
|
- import_tasks: common.yml
|
|
|
|
|
2017-11-11 19:14:21 +08:00
|
|
|
- name: prepare some dirs
|
|
|
|
file: name={{ item }} state=directory
|
|
|
|
with_items:
|
|
|
|
- "{{ bin_dir }}"
|
|
|
|
- "{{ ca_dir }}"
|
|
|
|
|
2018-12-06 10:04:27 +08:00
|
|
|
- name: 分发证书工具 CFSSL
|
2017-11-11 19:14:21 +08:00
|
|
|
copy: src={{ base_dir }}/bin/{{ item }} dest={{ bin_dir }}/{{ item }} mode=0755
|
|
|
|
with_items:
|
|
|
|
- cfssl
|
|
|
|
- cfssl-certinfo
|
|
|
|
- cfssljson
|
2018-12-06 10:04:27 +08:00
|
|
|
|
2018-09-02 14:08:51 +08:00
|
|
|
- name: 写入环境变量$PATH
|
|
|
|
lineinfile:
|
|
|
|
dest: ~/.bashrc
|
|
|
|
state: present
|
|
|
|
regexp: 'kubeasz'
|
|
|
|
line: 'export PATH={{ bin_dir }}:$PATH # generated by kubeasz'
|