gpt4 book ai didi

jenkins - 如何在从站上执行的管道阶段中获取 Jenkins 主 IP/主机名?

转载 作者:行者123 更新时间:2023-12-03 21:40:53 24 4
gpt4 key购买 nike

我有一个 Jenkins 声明式管道,我在一个阶段构建并在另一个阶段在不同的机器上进行测试。我还有一个 Selenium 集线器,它与 Jenkins 主机在同一台机器上运行。

pipeline {
agent none
stages {
stage('Build') {
agent { node { label 'builder' } }
steps {
sh 'build-the-app'
stash(name: 'app', includes: 'outputs')
}
}
stage('Test’) {
agent { node { label 'tester' } }
steps {
unstash 'app'
sh 'test-the-app'
}
}
}
}

我希望在测试阶段运行的 Selenium 测试连接回 Jenkins 主机上的 Selenium 集线器,这意味着我需要从从机获取 Jenkins 主机的 IP 地址或主机名。

有没有办法做到这一点? Jenkins 主 URL/主机名不在环境变量中,我不确定如何获取 Jenkins 主的 IP 地址。

最佳答案

不确定是否有更好的方法来做到这一点,我可以运行

def masterIP = InetAddress.localHost.hostAddress
println "Master located at ${masterIP}"

在我的 Jenkinsfile 中。我第一次在我的 Jenkinsfile 中运行这段代码时,构建失败了
org.jenkinsci.plugins.scriptsecurity.sandbox.RejectedAccessException: 
Scripts not permitted to use method java.net.InetAddress getHostAddress
at org.jenkinsci.plugins.scriptsecurity.sandbox.whitelists.StaticWhitelist.rejectMethod(StaticWhitelist.java:178)
at org.jenkinsci.plugins.scriptsecurity.sandbox.groovy.SandboxInterceptor$6.reject(SandboxInterceptor.java:243)
at org.jenkinsci.plugins.scriptsecurity.sandbox.groovy.SandboxInterceptor.onGetProperty(SandboxInterceptor.java:363)
at org.kohsuke.groovy.sandbox.impl.Checker$4.call(Checker.java:241)
at org.kohsuke.groovy.sandbox.impl.Checker.checkedGetProperty(Checker.java:238)
at com.cloudbees.groovy.cps.sandbox.SandboxInvoker.getProperty(SandboxInvoker.java:28)

我必须通过导航到 Manage Jenkins 来批准 Jenkins 中的方法签名。 > In-process Script Approval .

关于jenkins - 如何在从站上执行的管道阶段中获取 Jenkins 主 IP/主机名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45578971/

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