1

I am trying to implement CI/CD pipeline for my microservice oriented project by using Kubernetes and Jenkins. I am using my code repository on my on-premise server. I created one SVN repository on my server.

I am interested to know, can I use my private SVN code repository with Jenkins?

The reason for my doubt is because every example is showing the creation of pipeline with Jenkins and GitHub project.

halfer
  • 19,824
  • 17
  • 99
  • 186
Mr.DevEng
  • 2,651
  • 14
  • 57
  • 115

1 Answers1

1

You can use the shell command in your pipeline. So you are free to use SVN with Jenkins: https://tortoisesvn.net/docs/nightly/TortoiseSVN_en/tsvn-cli-main.html

Some info there: Run bash command on jenkins pipeline

Luc
  • 1,393
  • 1
  • 6
  • 14