jx project is a plugin to allow quickstarts to be created and repositories to be imported into either Jenkins servers or Jenkins X.
The idea is to provide a single developer UX around creating quickstarts and importing repositories whether you use just Jenkins or just Jenkins X or a combination of both.
Download the jx-project binary for your operating system and add it to your $PATH.
Just run the jx project command line and follow the instructions.
If you have ever seen Jenkins X or have used jx import or jx create quickstart you can try run those directly via:
jx project quickstartjx project mlquickstartjx project import
When importing a project jx project looks for a Jenkinfile in the source code.
If there is no Jenkinsfile then the wizard assumes you wish to proceed with a Jenkins X Pipeline based on Tekton and imports it in the usual Jenkins X way. You also get to confirm the kind of build pack and language you wish to use for the automated CI/CD - so its easy to import any workload whether its a library, a binary, a container image, a helm chart or a fully blown microservice for automated kubernetes based CI/CD.
If a Jenkinsfile is present then the wizard assumes you may wish to use a Jenkins server or Jenkinsfile Runner to run the pipelines, so it presents you with a list of the available Jenkins options to choose from.
When using a Jenkins Server you get two options:
- use vanilla Jenkins pipelines via
Multi Branch Projectto perform the webhook handling and run the pipelines - use lighthouse for webhook handling and ChatOps on Pull Requests. Then when a pipeline is triggered we use the trigger-pipeline as a step to run the pipeline remotely inside a specific Jenkins server (without using the
Multi Branch Project).
When importing a project these approaches are supported:
- Jenkins X Pipeline using Tekton
- Jenkins pipelines via
Multi Branch Project - lighthouse for ChatOps triggering a remote Jenkins pipeline via trigger-pipeline (without using
Multi Branch Project) - Jenkinsfile Runner based pipelines in Tekton. You can override the container image used for the pipeline on import via the
--jenkinsfilerunner myimage:1.2.3command line argument
For those of you who know Jenkins X and have used jx import before this wizard is a little different:
- the commands are a little different:
jx create importis nowjx project importjx create quickstartis nowjx project quickstartjx create mlquickstartis nowjx project mlquickstartjx create projectis nowjx projectjx create springis nowjx project spring
- when importing to Jenkins X we ask which build pack you wish to use (e.g. classic or kubernetes) so that you can import java libraries or node modules easily in addition to kubernetes native applications
- the wizard will prompt you for the pack name (language) once the detection has occurred. Usually the pack name detection is good enough. e.g. detecting
mavenbut you may wish to change the version of the pack (e.g.maven-java11) - when importing a project and you are using Jenkins X and Jenkins in the same cluster you get asked whether you want to import the project into Jenkins X or to pick which Jenkins server to use
- we support 2 modes of importing projects to Jenkins
- regular Jenkins import where a Multi Branch Project is used and Jenkins processes the webhooks
- ChatOps mode: we use lighthouse to handle the webhooks and ChatOps and then when triggered we trigger regular pipelines inside the Jenkins server
- if your repository contains a
Jenkinsfileand you choose to import into a Jenkins server we don't run the build packs and generate aDockerfile, helm chart orjenkins-x.yml