kubeasz/roles/prepare/tasks/debian.yml

31 lines
882 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 删除默认安装
- name: 删除ubuntu默认安装
apt:
name:
- ufw
- lxd
- lxd-client
- lxcfs
- lxc-common
state: absent
# 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
state: latest
- name: 设置 ulimits
lineinfile:
dest: /etc/profile
regexp: "ulimit -SHn"
line: "ulimit -SHn 65535"