jenkinsci / azure-vm-agents-plugin

This repo is for azure vm agents plugin for jenkins. Azure devops CICD is the team which owns it for now
https://plugins.jenkins.io/azure-vm-agents/
43 stars 99 forks source link

Could not initialize class com.azure.identity.implementation.IdentityClient #343

Closed mohkhan-BRONGA closed 1 year ago

mohkhan-BRONGA commented 2 years ago

Jenkins and plugins versions report

Environment ```text Paste the output here ```

What Operating System are you using (both controller, and any agents involved in the problem)?

Latest jenkins version which is 2.319.3.

Reproduction steps

  1. Manage Jenkins
  2. Manage clouds and nodes
  3. Configure Clouds
  4. Add new Cloud
  5. Select Azure Cloud
  6. Use existing credentials

Expected Results

Screenshot 2022-03-09 at 5 38 57 PM

Actual Results

image

Anything else?

No response

timja commented 2 years ago

Please provide a full plugins report

Run this in the script console:

println("Jenkins: ${Jenkins.instance.getVersion()}")
println("OS: ${System.getProperty('os.name')} - ${System.getProperty('os.version')}")
println "---"

Jenkins.instance.pluginManager.plugins
  .collect()
  .sort { it.getShortName() }
  .each {
    plugin -> println("${plugin.getShortName()}:${plugin.getVersion()}")
  }
return