Сталася потреба відновити данні, які зберікаютсья у дженкісі, се можна зробити простим скриптом:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import jenkins.* import jenkins.model.* import hudson.* import hudson.model.* def jenkinsCredentials = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials( com.cloudbees.plugins.credentials.Credentials.class, Jenkins.instance, null, null ); for (creds in jenkinsCredentials) { if(creds.id == "credentialsName"){ println(creds.accessKey) println(creds.secretKey) } } |
Його потрібно виконати у консолі Jenkins -> https://domain.com/jenkins/script