Jenkins SSH Pipeline 步骤 - 需要终端来读取密码

Ham*_*thy 2 deployment jar jenkins docker jenkins-pipeline

最近我一直在摆弄 Docker/Jenkins,以了解有关 CI/CD 工作流程的更多信息。我的目标是建立一个从 github 获取推送、构建代码并将 JAR 文件发布到远程服务器以进行进一步部署的流程。

我一直在使用Jenkins SSH Pipeline Steps 插件,它允许我通过 SSH 连接到远程服务器来执行命令。

这是部署阶段,其中涉及我要执行的命令:

stage("Deploying") {
            steps {
                script {
                    withCredentials([sshUserPrivateKey(credentialsId: 'e48b15ad-0f5e-4f07-8706-635c5250fa29', keyFileVariable: 'identity', passphraseVariable: '', usernameVariable: 'jenkins')]) {
                      remote.user = jenkins
                      remote.identityFile = identity

                      sshCommand remote: remote, command: 'cd Winston-Bot/; sudo ./kill_winston.sh'
                      sshCommand remote: remote, command: 'rm Winston-Bot/*.jar', failOnError:'false'
                      sshCommand remote: remote, command: 'rm -rf Winston-Bot/src', failOnError:'false'
                      sshPut remote: remote, from: "target/Winston-Bot-${VERSION}-jar-with-dependencies.jar", into: 'Winston-Bot/'
                      sshPut remote: remote, from: "src", into: 'Winston-Bot/'
                      sshCommand remote: remote, command: "echo ${VERSION} > Winston-Bot/version.txt"
                    }
                }
            }
        }
Run Code Online (Sandbox Code Playgroud)

执行时cd Winston-Bot/; sudo ./kill_winston.sh我收到以下错误:

Executing command on ****[51.159.152.230]: cd Winston-Bot/; sudo ./kill_winston.sh sudo: false

sudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper
Failed command ****#15 with status 1: cd Winston-Bot/; sudo ./kill_winston.sh
Run Code Online (Sandbox Code Playgroud)

我已经etc/sudoers使用以下代码将 jenkins 用户组添加到了:

jenkins ALL=(ALL) NOPASSWD: /var/lib/jenkins/Winston-Bot/.kill_winston.sh
Run Code Online (Sandbox Code Playgroud)

jenkins当通过终端以用户身份登录到我的远程服务器并且不需要密码时,该脚本执行得非常好。谁能帮我解决这个问题吗?

far*_*seb 6

我不确定它是否与您相关,但我在macOS Big Sur上遇到了完全相同的问题。无论我如何编辑 sudoers 文件,sudo visudo它都不起作用。

当我创建并编辑正确的文件时,它立即开始工作:sudo visudo -f /etc/sudoers.d/jenkins

jenkins ALL=(ALL) NOPASSWD: ALL
Run Code Online (Sandbox Code Playgroud)

我从这个评论这个答案中得到了这个想法。