Giter Club home page Giter Club logo

jenkins's Introduction

Jenkins

Build status

PowerShell module for interacting with a CloudBees Jenkins server using the Jenkins Rest API. Created by IAG NZ Ltd.

Installation

If Windows Management Framework 5.0 or above is installed or the PowerShell Package management module is available:

The easiest way to download and install the Jenkins module is using PowerShell Get to download it from the PowerShell Gallery:

Install-Module -Name Jenkins

If Windows Management Framework 5.0 or above is not available and and the PowerShell Package management module is not available:

Unzip the file containing this Module to your c:\Program Files\WindowsPowerShell\Modules folder.

Cmdlets

  • Get-JenkinsCrumb: Gets a Jenkins Crumb.
  • Invoke-JenkinsCommand: Execute a Jenkins command or request via the Jenkins Rest API.
  • Get-JenkinsObject: Get a list of objects in a Jenkins master server.
  • Get-JenkinsJobList: Get a list of jobs in a Jenkins master server.
  • Get-JenkinsJob: Get a Jenkins Job Definition.
  • Set-JenkinsJob: Set a Jenkins Job definition.
  • Test-JenkinsJob: Determines if a Jenkins Job exists.
  • New-JenkinsJob: Create a new Jenkins Job.
  • Rename-JenkinsJob: Rename an existing Jenkins Job.
  • Remove-JenkinsJob: Remove an existing Jenkins Job.
  • Invoke-JenkinsJob: Run a parameterized or non-parameterized Jenkins Job.
  • Get-JenkinsViewList: Get a list of views in a Jenkins master server.
  • Test-JenkinsView: Determines if a Jenkins View exists.
  • Get-JenkinsFolderList: Get a list of folders in a Jenkins master server.
  • Test-JenkinsFolder: Determines if a Jenkins Folder exists.
  • Initialize-JenkinsUpdateCache: Creates or updates a local Jenkins Update cache.
  • Get-JenkinsPluginsList: Retreives a list of installed plugins.
  • Invoke-JenkinsJobReload: Reloads a job config on a given URL.

Cross Site Request Forgery (CSRF) Support

If a Jenkins Server has the CSRF setting enabled, then a "Crumb" will first need to be obtained and passed to each subsequent call to Jenkins in the Crumb parameter. If you receive errors regarding crumbs then your Jenkins Server has CSRF enabled and you will to ensure you are passing a valid "Crumb" obtained by calling the Get-JenkinsCrumb cmdlet.

To work with a Jenkins Master that has CSRF enabled:

$Crumb = Get-JenkinsCrumb `
    -Uri 'https://jenkins.contoso.com' `
    -Credential $Credential

New-JenkinsFolder `
    -Uri 'https://jenkins.contoso.com' `
    -Credential $Credential `
    -Crumb $Crumb `
    -Name 'Management' `
    -Verbose

Known Issues

  • Initialize-JenkinsUpdateCache: Does not correctly set the signature information in the update-center.json file that is created.

Recommendations

  • If your Jenkins Server has security enabled then you should ensure that you are only connecting to it via HTTPS.
  • If your Jenkins Server has security enabled, the Credentials parameter that can accept either the password for the Jenkins account or the API Token. It is strongly recommended that you use the API Token for the account as the password rather than the Jenkins account, even if you have implemented HTTPS.

Examples

Get a Crumb from a CSRF enabled Jenkins Server

Import-Module -Name Jenkins
$Crumb = Get-JenkinsCrumb `
    -Uri 'https://jenkins.contoso.com' `
    -Credential $Credential

Get a list of jobs from a Jenkins Server

Import-Module -Name Jenkins
$Jobs = Get-JenkinsJobList `
    -Uri 'https://jenkins.contoso.com' `
    -Credential (Get-Credential)

Get a list of jobs from the 'Misc' folder a Jenkins Server

Import-Module -Name Jenkins
$Jobs = Get-JenkinsJobList `
    -Uri 'https://jenkins.contoso.com' `
    -Credential (Get-Credential) `
    -Folder 'Misc'

Get a list of 'Freestyle' jobs from a Jenkins Server

Import-Module -Name Jenkins
$Jobs = Get-JenkinsJobList `
    -Uri 'https://jenkins.contoso.com' `
    -Credential (Get-Credential) `
    -IncludeClass 'hudson.model.FreeStyleProject'

Get a list of job folders from a Jenkins Server

Import-Module -Name Jenkins
$Folders = Get-JenkinsFolderList `
    -Uri 'https://jenkins.contoso.com' `
    -Credential (Get-Credential)

Get the job definition for 'My App Build' from a Jenkins Server

Import-Module -Name Jenkins
$MyAppBuildConfig = Get-JenkinsJob `
    -Uri 'https://jenkins.contoso.com' `
    -Credential (Get-Credential) `
    -Name 'My App Build'

Update the job definition for 'My App Build' on a Jenkins Server

Import-Module -Name Jenkins
Set-JenkinsJob `
    -Uri 'https://jenkins.contoso.com' `
    -Credential (Get-Credential) `
    -Name 'My App Build' `
    -XML $MyAppBuildConfig

Test if a job exists on a Jenkins Server

Import-Module -Name Jenkins
if (Test-JenkinsJob `
        -Uri 'https://jenkins.contoso.com' `
        -Credential (Get-Credential) `
        -Name 'My App Build') {
    # ... Jenkins Job was found
}

Create a new job called 'My App Build' on a Jenkins Server

Import-Module -Name Jenkins
New-JenkinsJob `
    -Uri 'https://jenkins.contoso.com' `
    -Credential (Get-Credential) `
    -Name 'My App Build' `
    -XML $MyAppBuildConfig

Rename an existing job called 'My App Build' to 'Other Build' on a Jenkins Server

Import-Module -Name Jenkins
Rename-JenkinsJob `
    -Uri 'https://jenkins.contoso.com' `
    -Credential (Get-Credential) `
    -Name 'My App Build'
    -NewName 'Other Build'

Remove a job called 'My App Build' from a Jenkins Server

Import-Module -Name Jenkins
Remove-JenkinsJob `
    -Uri 'https://jenkins.contoso.com' `
    -Credential (Get-Credential) `
    -Name 'My App Build'

Invoke a job called 'My App Build' on a Jenkins Server

Import-Module -Name Jenkins
Invoke-JenkinsJob `
    -Uri 'https://jenkins.contoso.com' `
    -Credential (Get-Credential) `
    -Name 'My App Build'

Invoke a parameterized job called 'My App Build' on a Jenkins Server

Import-Module -Name Jenkins
Invoke-JenkinsJob `
    -Uri 'https://jenkins.contoso.com' `
    -Credential (Get-Credential) `
    -Name 'My App Build' `
    -Parameters @{ verbosity = 'full'; buildtitle = 'test build' }

Get a list of installed plugins installed on a Jenkins Server

$Plugins = Get-JenkinsPluginsList `
        -Uri 'https://jenkins.contoso.com' `
        -Credential (Get-Credential) `
        -Verbose

Reload a job

Invoke-JenkinsJobReload `
        -Uri 'https://jenkins.contoso.com' `
        -Credential (Get-Credential) `
        -Verbose
    Triggers a reload of the jenkins server 'https://jenkins.contoso.com'

For further examples, please see module help for individual cmdlets.

Versions

1.0.0.148

  • Fixed Invoke-JenkinsJobReload to use invoke-jenkinscommand

1.0.0.140

  • Fix error in New-JenkinsFolder.
  • Added Cross Site Request Forgery Support.

1.0.0.133

  • Updated Invoke-JenkinsJobReload to use the -UseBasicParsing switch

1.0.0.124

  • Fixed readme
  • Added the Invoke-JenkinsJobReload cmdlet

1.0.0.115

  • Added Get-JenkinsPluginsList cmdlet to retreive a list of installed plugins

1.0.0.108

  • Added Initialize-JenkinsUpdateCache cmdlet to create or update a local Jenkins Update Cache

1.0.0.101

  • Fix bug when pulling Jenkins items from more than 1 folder deep
  • Added support for folder to be specified with / or \

1.0.0.94

  • Update AppVeyor deployment process to tag releases

1.0.0.88

  • Added New-JenkinsFolder cmdlet

1.0.0.82

  • Added Invoke-JenkinsJob cmdlet

1.0.0.70

  • Added Examples to Readme.md

1.0.0.46

  • Appveyor build improvements
  • Additional unit tests added

1.0.0.36

  • Initial Release containing:
    • Invoke-JenkinsCommand
    • Get-JenkinsObject
    • Get-JenkinsJobList
    • Get-JenkinsJob
    • Set-JenkinsJob
    • Test-JenkinsJob
    • New-JenkinsJob
    • Remove-JenkinsJob
    • Get-JenkinsViewList
    • Test-JenkinsView
    • Get-JenkinsFolderList
    • Test-JenkinsFolder

Links

jenkins's People

Contributors

plagueho avatar sambernet avatar liambinnsconroy avatar

Watchers

James Cloos avatar Micha Reiser avatar Stefan Heinzer avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.