jenkins+gitlab+ansible-tower实现发布

前提准备:

gitlab中上传相应的jenkinsfile文件和源码。

安装和破解ansible-tower。

安装jenkins。

大致流程:从gitlab中拉取文件,存放到windows机器上,使用nuget等进行打包到windows中,使用sshPublisher语句传输到远程ansible-tower的机器上,打包传输完成后,使用ansible-tower进行发布。

机器分布:

jenkins:192.168.50.155 gitlab:192.168.50.156 ansible-tower:192.168.50.157

后端服务器:192.168.50.154 192.168.50.155

1.jenkins中的配置

第一步:配置gitlab的用户名和密码

第二步:新建项目item



第三步:得到的界面

2.配置Nodes.配置window机器将项目打包

配置好后,还需要在节点windows服务器中执行相关的命令,才能建立连接。参考

https://blog.csdn.net/weixin_41238626/article/details/137828742

3.配置远端ansible-tower服务器相关

参考 https://blog.csdn.net/qq_25646191/article/details/109103252

需要安装Publish over SSH插件。输入密码后可以点击右下角进行测试 test configuration

4 在打包机器上安装dotnet版本

需要安装dotnet环境

https://download.visualstudio.microsoft.com/download/pr 需要配置环境变量

安装 nuget 需要配置环境变量

安装vs https://c2rsetup.officeapps.live.com/ 工作负载选择ASP.NET和Web开发、.NET桌面开发

参考:https://www.cnblogs.com/sgxw/p/15607574.html

proget 8624端口部署--》安装

参考: https://www.cnblogs.com/zerodai/p/10796535.html

5 测试查看是否能够打包已经是否能够传输到ansible-tower中

Jenkinsfile文件内容

bash 复制代码
pipeline{
    parameters {
    string defaultValue: '', description: 'tag', name: 'Tag', trim: false
    choice choices: ['class-assistant-linux-pr', 'class-assistant-linux'], description: '', name: 'TARGET_HOST'
    choice choices: ['Release', 'Publish', 'Alpha', 'Debug'], description: '', name: 'Configuration'
}
    agent none

    stages{
        stage("build"){
        agent {
        label "win-110-88"
        }
            steps("first steps"){
                bat 'nuget.exe restore .\\src\\ClassAssistant.sln -Source http://192.168.60.216:8624/nuget/Proget/'
                bat 'dotnet publish .\\src\\ClassAssistant.Apis\\ClassAssistant.Apis.csproj --force -o ./publish/publish --configuration %Configuration%'
                powershell 'Get-ChildItem -Path $ENV:WORKSPACE/publish/publish/* -Include appsettings.*,log4net.config -Recurse | Remove-Item'
                bat '''cd %WORKSPACE%\\publish\\publish\\
                       "C:\\Program Files\\7-Zip\\7z.exe" a   ..\\latest.zip .'''
                archiveArtifacts '/publish/*.zip'
            }
        }
        stage("sendfile and ansible job"){
        agent {
        label "win-110-88"
        }
            steps("sendfile steps"){
                sshPublisher(publishers: [sshPublisherDesc(configName: 'ansible-50.157', transfers: [sshTransfer(cleanRemote: false, excludes: '', execCommand: '', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaultExcludes: false, patternSeparator: '[, ]+', remoteDirectory: '/${TARGET_HOST}/', remoteDirectorySDF: false, removePrefix: '/publish', sourceFiles: '/publish/*.zip')], usePromotionTimestamp: false, useWorkspaceInPromotion: false, verbose: false)])
            }
        }
    }
}

6 ansible-tower中中进行相关配置配置发布

参考:https://blog.csdn.net/qq_48736646/article/details/137777740

ansible剧本内容

bash 复制代码
class-test.yaml
---
- name: iis pull latest.zip and update
  hosts: class-assistant-linux
  gather_facts: false
  max_fail_percentage: 100
  serial: 2
  vars:
    PATH: class-assistant-linux

#group "group:" 重启group需要加:  program program重启单个项目直接写项目名称
    AppPool: core-class-assistant-linux
  vars_files:
    - ./extend_vars.yaml
  roles:
    - update
extend_vars.yaml
iis_path:
     class-assistant-linux:
        192.168.50.154:
          - "/opt/class-assistant-linux"
        192.168.50.155:
          - "/opt/class-assistant-linux"
hosts:
[class-assistant-linux]
192.168.50.154
192.168.50.155

update/tasks/main.yml
---
- name: url get file
  shell: scp -o StrictHostKeyChecking=no root@192.168.50.157:/data/win_iis/{ PATH }/latest.zip /tmp/{{ PATH }}_latest.zip
  tags: update
- name: unzip file

  shell: sudo unzip  -q -o /tmp/{{ PATH }}_latest.zip -d {{ item }}
  with_items: "{{ iis_path[PATH][inventory_hostname] }}"
  tags: update
- name: restart webapppool
  shell: sudo supervisorctl restart {{AppPool}}

- name: Remove a file, if present
  shell: rm -f /tmp/{{ PATH }}_latest.zip

  tags: update

7 结果

相关推荐
萨格拉斯救世主3 小时前
jenkins使用slave节点进行node打包报错问题处理
运维·jenkins
A ?Charis12 小时前
Gitlab-runner running on Kubernetes - hostAliases
容器·kubernetes·gitlab
秋说19 小时前
开源代码管理平台Gitlab如何本地化部署并实现公网环境远程访问私有仓库
gitlab·源代码管理
极小狐1 天前
驭码上新,AI Code Review、基于代码库的知识问答,让研发起飞
gitlab·devsecops·devops·极狐gitlab·安全合规
Narutolxy1 天前
精准优化Elasticsearch:磁盘空间管理与性能提升技巧20241106
大数据·elasticsearch·jenkins
紫晓宁1 天前
jmeter结合ansible分布式压测--3压测执行
分布式·jmeter·ansible
蚊子不吸吸1 天前
DevOps开发运维简述
linux·运维·ci/cd·oracle·kubernetes·gitlab·devops
晨欣2 天前
Elasticsearch里的索引index是什么概念?(ChatGPT回答)
大数据·elasticsearch·jenkins
紫晓宁2 天前
jmeter结合ansible分布式压测--1数据准备
分布式·jmeter·ansible
紫晓宁3 天前
jmeter结合ansible分布式压测--2jmter环境准备
分布式·jmeter·ansible