kubeasz/roles/prepare/tasks/ubuntu.yml

43 lines
1.3 KiB
YAML
Raw Normal View History

2018-09-02 14:08:51 +08:00
# 删除默认安装
- name: 删除ubuntu默认安装
2019-06-29 18:10:51 +08:00
shell: "apt remove -y {{ item }}"
with_items:
- ufw
- lxd
- lxd-client
- lxcfs
- lxc-common
ignore_errors: true
2018-09-02 14:08:51 +08:00
# Ubuntu 安装基础软件包
- name: 安装 ubuntu基础软件
apt:
name:
- nfs-common # 挂载nfs 共享文件需要 (创建基于 nfs的PV 需要)
- conntrack # network connection cleanup 用到
- jq # 轻量JSON处理程序安装docker查询镜像需要
- socat # 用于port forwarding
- bash-completion # bash命令补全工具需要重新登录服务器生效
- rsync # 文件同步工具,分发证书等配置文件需要
- ipset
- ipvsadm
2019-04-03 15:02:05 +08:00
state: present
2019-06-28 12:53:04 +08:00
when: 'INSTALL_SOURCE != "offline"'
# 离线安装基础软件包
- import_tasks: offline.yml
when: 'INSTALL_SOURCE == "offline"'
2018-09-02 14:08:51 +08:00
2019-03-28 18:44:10 +08:00
# 优化设置 journal 日志相关,避免日志重复搜集,浪费系统资源
- name: 准备 journal 日志相关目录
file: name={{ item }} state=directory
with_items:
- "/etc/systemd/journald.conf.d"
- "/var/log/journal"
- name: 优化设置 journal 日志
template: src=95-k8s-journald.conf.j2 dest=/etc/systemd/journald.conf.d/95-k8s-journald.conf
- name: 重启 journald 服务
service: name=systemd-journald state=restarted