gpt4 book ai didi

jenkins - 如何创建公共(public) Jenkins 更新站点的本地镜像?

转载 作者:行者123 更新时间:2023-12-04 01:10:31 24 4
gpt4 key购买 nike

我们在无法访问 Internet(即使通过代理)的服务器上运行 Jenkins。
安装并保持 Jenkins 安装是最新的是一件痛苦的事!

我的想法是通过具有 Internet 访问权限的 Windows 工作站制作完整 Jenkins 公共(public)更新站点的本地镜像。然后通过 NFS 共享将此本地镜像提供给 Jenkins。

所以我的问题是:如何制作本地镜像?
你有更好/更简单的想法来保持 Jenkins 安装是最新的吗?

最佳答案

要生成更新站点 (update-center.json),您可以使用 https://github.com/jenkins-infra/backend-update-center2项目

我的步骤:

  • 生成自签名证书

  • openssl genrsa -out your-update-center.key 1024
    openssl req -new -x509 -days 1095 -key your-update-center.key -out your-update-center.crt
  • 将所有插件放入您的 Nexus 2 maven 存储库
  • 克隆并构建 backend-update-center2 项目
  • 生成更新中心.json

  • mvn exec:java -Dexec.args="-id default -h/dev/null
    -o update-center.json -repository ULR_TO_NEXUS_REPO
    -remoteIndex .index/nexus-maven-repository-index.gz -repositoryName YOUR_REPO_NAME
    -directLink -pretty -nowiki -key your-update-center.key
    -certificate your-update-center.crt
    -root-certificate your-update-center.crt"
  • 发布您的 update-center.json。必须可以通过 http/https
  • 访问
  • 将生成的 your-update-center.crt 复制到 JENKINS_HOME/update-center-rootCAs 文件夹
  • “Jenkins → 插件管理 → 高级 → 更新站点”定义指向已发布 update-center.json
  • 的链接

    PS。不要忘记生成和发布 Nexus 2 nexus-maven-repository-index.gz 索引文件。为此,请使用“发布索引”任务。

    您可以在 https://github.com/ikedam/backend-update-center2/wiki/How-to-create-your-own-Jenkins-Update-Center 找到有关更新程序中心的一些附加信息

    关于jenkins - 如何创建公共(public) Jenkins 更新站点的本地镜像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20128118/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com