前提:

已配置jenkins秘钥凭证

 

一、配置流程

1.1 片段生成

1、按如下图选择

image-20220719122921121

2、新增密钥信息

 

 

 

image-20220719133057946

 

 

1.2 脚本配置

以上配置完成后,接下来就可以在 Jenkinsfile 中配置了,:

 stages {
    stage('xx远程创建目录') {

       steps {
            echo "xx远程创建目录"
            dir("${SRC_PATH}") {
            withCredentials([sshUserPrivateKey(credentialsId: 'IDC-xx-xx', keyFileVariable: 'identity', usernameVariable: 'USERNAME')]) {
                    sh 'ssh -o StrictHostKeyChecking=no -p 10022 -i ${identity} ${USERNAME}@122.xx.xx.xx "cd /home/; mkdir -p hello"'
                }        
        }
        }
    }
  } 

 

参考:

https://blog.csdn.net/IT_ZRS/article/details/125870679

 

 
posted on 2023-06-12 17:21  小油2018  阅读(162)  评论(0编辑  收藏  举报