fabric构建自动部署服务

1. fabric简介

fabric 是python 的一个第三方库,同时它也是一个命令行工具。它提供了丰富的同 SSH 交互的接口,可以用来在本地或远程机器上自动化、流水化地执行 shell 命令。使用 fabric 提供的命令行工具,可以很方便地执行应用部署和系统管理等操作。因此它非常适合用来做应用的远程部署及系统维护。

2. 安装及使用

安装命令:pip install fabric

使用参考官网: fabric英文官网fabric中文官网

3. 构建脚本

python 复制代码
import datetime
from fabric import task

@task
def startBuild(c, env="dev", force="0"):
    """
    构建项目自动部署
    :param c: 上下文content
    :param env: 环境变量,开发环境or生产环境
    :param force: 强制构建,"1" 强制构建
    """
    current_day = datetime.datetime.now().strftime("%Y%m%d")

    if env == "dev":
        code_branch = "develop"
        to_virtual_env_cmd = "workon user_predict"
    else:
        code_branch = "master"
        to_virtual_env_cmd = "source /export/venvs/user_predict/bin/activate"

    logger.info(">>>>>>>>>> 开始备份代码 <<<<<<<<<<")
    with c.cd("/export/services/"):
        c.run(f"zip -q -r /tmp/predict_bak/predict_code/user_predict_{current_day}.zip user_predict")
        c.run(f"cp -ra user_predict user_predict_old_{current_day}")

    logger.info(">>>>>>>>>> 开始准备从远程拉取代码 <<<<<<<<<<")
    with c.cd("/export/services/user_predict/"):
        c.run("git remote -v update")
        c.run(f"git checkout {code_branch}")
        local_commit_id = c.run("git rev-parse @{0}").stdout.strip()
        remote_commit_id = c.run("git rev-parse @{u}").stdout.strip()
        if local_commit_id == remote_commit_id and force == "0":
            logger.warning(f">>>>>>>>>> 远程{code_branch}分支最近未提交代码,本次不用构建 <<<<<<<<<<")
            return
        c.run("git pull")

    with c.prefix("source ~/.bashrc"), c.prefix(to_virtual_env_cmd):
        try:
            logging.info(">>>>>>>>>> 前端开始打包并收集静态文件 <<<<<<<<<<")
            c.run(f"cd /export/service/user_predict/frontend/; npm run build")
            c.run(f"cd /export/service/user_predict/; python manage.py collectstatic --noinput")
        except Exception as e:
            logger.error(f">>>>>>>>>> 收集静态文件失败,详细报错为{e} <<<<<<<<<<")
            return

        try:
            logging.info(">>>>>>>>>> 重启uwsgi拉起的pid进程文件 <<<<<<<<<<")
            c.run("cd /export/services/user_predict/; export DJANGO_SETTINGS_MODULE=predict.settings; uwsgi --reload /export/services/user_predict/predict.pid")
            logging.info(">>>>>>>>>> 重启被supervisor监护的进程 <<<<<<<<<<")
            c.run("supervisorctl status | grep 'user_predict_' | awk '{print $1}' | xargs supervisorctl restart")
        except Exception as e:
            logger.error(f">>>>>>>>>> uwsgi或supervisor重启失败,详细报错为{e} <<<<<<<<<<")
            return

    logger.info(">>>>>>>>>> 项目自动部署成功 <<<<<<<<<<")
相关推荐
2501_9277730710 分钟前
imx6驱动
linux·运维·服务器
hy____12325 分钟前
Linux_进程间通信
linux·运维·服务器
银发控、33 分钟前
nginx静态资源
运维·nginx
老百姓懂点AI1 小时前
[测试工程] 告别“玄学”评测:智能体来了(西南总部)基于AI agent指挥官的自动化Eval框架与AI调度官的回归测试
运维·人工智能·自动化
德育处主任Pro1 小时前
『NAS』用SSH的方式连上NAS
运维·ssh
Meaauf1 小时前
VMware安装中科方德服务器操作系统
运维·服务器·中科方德
南宫码农1 小时前
神马影视8.5版本如意伪静态+视频教程
linux·运维·centos
j_xxx404_2 小时前
Linux:命令行参数与环境变量
linux·运维·服务器
j_xxx404_2 小时前
Linux:进程虚拟地址空间|虚拟内存管理
linux·运维·服务器
江畔何人初2 小时前
pod的定义以及创建过程
linux·运维·云原生