Wednesday, November 29, 2023
Home CI-CD Jenkins. Invalid agent type “docker” specified. Must be one of

Jenkins. Invalid agent type “docker” specified. Must be one of [any, label, none]

Jenkins is working with plugins, if you didn’t install Docker and Docker Pipeline plugins you can get this error. “Jenkins. Invalid agent type “docker” specified. Must be one of [any, label, none]”. You can fix this error with following steps;

Go to the

  • Dashboard -> Manage Jenkins -> Manage Plugins -> Available tab
  • Select Docker and Docker Pipeline from the list

docker and docker pipeline plugin
docker and docker pipeline plugin
  • Then click Install, after restart, plugins should be available.

It is better to have docker installed also on your worker nodes.

Here you can find a sample declarative style pipeline to test your Jenkins.

pipeline {
    agent { docker { image 'maven:3.3.3' } }
    stages {
        stage('build') {
            steps {
                sh 'mvn --version'
            }
        }
    }
}

Burak Cansizogluhttp://devopsmania.com/
Burak is working as a freelance Cloud/DevOps consultant. He performed different roles during his professional career track. He has more than 12 years of experience in the finance, telecommunication and government sectors. He likes to learn new technologies and wants to share his knowledge, experiences with the community. He likes all lean, agile initiatives. And he believes that the DevOps mindset and DevOps transformation will bring more agility to the Enterprises as well as employees.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Most Popular

How to query EC2 tags from within the instance?

Intro To help you manage your instances, images, and other Amazon EC2 resources, you can assign your own...

How to install Python3 on Amazon Linux 2?

Intro Python is an object-oriented programming language that is widely used. In addition to that, it's free and...

How to connect an AWS EC2 instance with FileZilla and do SFTP?

Intro EC2 is one of the essential services of Amazon Web Services (AWS), providing highly available and scalable...

How to install AWS CLI v2 on Linux?

Intro Whether you’ve been using AWS for some time or you are a novice, you may have noticed...

Recent Comments