Jenkins Python Pipeline Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ม.ค. 2025

ความคิดเห็น • 45

  • @enigmaclothing5379
    @enigmaclothing5379 9 หลายเดือนก่อน +3

    You saved my ass at university - thank you. Just to mention for other people - I have been looking for a normal tutorial with explanation regarding jenkins and python installation in it over 3 days. This man saved my ass. Once again - thank's a lot!

  • @CAlexDev-gy2es
    @CAlexDev-gy2es 11 หลายเดือนก่อน

    Great tutorial! Looked everywhere for a quick straightforward video on this

  • @Hossein118
    @Hossein118 2 ปีที่แล้ว

    Such a great video. I love the way you walked us through the actual process.

  • @krappr
    @krappr ปีที่แล้ว +6

    Explanation of the docker run command used on the start of the video:
    docker run: This command is used to run a Docker container.
    -p 8080:8080 -p 50000:50000: These options define port mappings between the host machine and the container. In this case, it maps port 8080 of the host to port 8080 of the container, and port 50000 of the host to port 50000 of the container. This allows you to access the services exposed on these ports from your host machine.
    -v jenkins_home:/var/jenkins_home: This option specifies a volume mapping between the host machine and the container. It creates a named volume called "jenkins_home" and maps it to the "/var/jenkins_home" directory inside the container. This volume is used to persist Jenkins data, such as job configurations, plugins, and other data that needs to be preserved even if the container is restarted or removed.
    jenkins/jenkins:lts-jdk11: This specifies the Docker image to run. It pulls the "jenkins" image from the Docker Hub repository, with the "lts-jdk11" tag. This image contains the Jenkins CI/CD platform with JDK 11.
    So, when you execute the command, Docker will run a container based on the "jenkins/jenkins:lts-jdk11" image. The container will have its ports 8080 and 50000 mapped to the corresponding ports on the host machine, allowing you to access the Jenkins web interface and Jenkins agent communication on those ports. Additionally, the "jenkins_home" volume is created to store persistent Jenkins data.

  • @dance3991
    @dance3991 9 หลายเดือนก่อน

    It helps me solve python not found issue. Great video and much thanks! :)

  • @jensenlangford5383
    @jensenlangford5383 7 หลายเดือนก่อน

    Brilliant simple video - really appreciate your effort!!

  • @somirajput684
    @somirajput684 10 หลายเดือนก่อน

    thanks for making this video, really needed it.

  • @jacobolson1331
    @jacobolson1331 2 ปีที่แล้ว

    That was a really well thought out tutorial with great commentary!

  • @renunegi3519
    @renunegi3519 ปีที่แล้ว

    such a nice detailed video, i am able to run my git file using Jenkins. Thanks!!

  • @suryayehezki
    @suryayehezki ปีที่แล้ว

    Thank you for sharing, Vincent! really helpful!

  • @ukratitelkisok9726
    @ukratitelkisok9726 2 ปีที่แล้ว +2

    thank you very much in great detail. This is the only video that helped me very good. Thank you author

  • @maliksvisuals285
    @maliksvisuals285 10 หลายเดือนก่อน

    awesome tutorial Vincent!!

  • @Confusedcapybara8772
    @Confusedcapybara8772 3 หลายเดือนก่อน

    Thanks for the walk through! This helps a lot. Any suggestions for failing or warning when pytest test fails?

  • @geryon5997
    @geryon5997 10 หลายเดือนก่อน

    Great tutorial mate! Thanks a lot!

  • @RahulPandey-wl2kw
    @RahulPandey-wl2kw 8 หลายเดือนก่อน

    Awesome Video Sir. 👏👏

  • @MaYa-mu8lz
    @MaYa-mu8lz ปีที่แล้ว

    Спасибо, мужик. Очень толково

  • @paupolin1
    @paupolin1 2 ปีที่แล้ว +2

    You save my day :)

  • @RJ-zd5ep
    @RJ-zd5ep 8 หลายเดือนก่อน

    Hi Vincent , please tell me ,if threre are sub directory in git repo then how to traverse through that dirctory while running it through pipeline

  • @swaroop_kakarla
    @swaroop_kakarla 2 ปีที่แล้ว

    Its really helpful ♥️, keep more doing on automation testing with python pytest.

  • @aaaaaacvbbcfcjhgjgchgdk.9794
    @aaaaaacvbbcfcjhgjgchgdk.9794 2 ปีที่แล้ว

    Thank you for its enjoyeble to learn from you.

  • @girishraghunathan2946
    @girishraghunathan2946 2 ปีที่แล้ว +1

    We already checked out the git repository in first stage, so why we have to specify git branch command in the second stage again? What is its purpose please?

    • @KrishnaPrasad8357
      @KrishnaPrasad8357 9 หลายเดือนก่อน

      I have the same question. Did you figure it out?

  • @amarnatha1614
    @amarnatha1614 8 หลายเดือนก่อน

    Thank you sir

  • @commonman5768
    @commonman5768 ปีที่แล้ว

    Great vedio Vincent

  • @lilbean_eth
    @lilbean_eth 10 หลายเดือนก่อน

    Appreciate this :)

  • @kingleo188
    @kingleo188 ปีที่แล้ว

    Very well explained bud.

  • @mpower3435
    @mpower3435 ปีที่แล้ว

    Thanks for the effort 👍🏻

  • @Skaxarrat
    @Skaxarrat ปีที่แล้ว

    You saved me, thanks

  • @melvinkimathi8924
    @melvinkimathi8924 ปีที่แล้ว

    Thank you for this.

  • @BugMonsters
    @BugMonsters 2 ปีที่แล้ว +1

    Great Tutorial. Could please also explain how to set up this pipeline without the need of docker?

    • @stephanieezat-panah7750
      @stephanieezat-panah7750 ปีที่แล้ว

      yes please, and thank you

    • @commonman5768
      @commonman5768 ปีที่แล้ว

      Just use pip package dependency war file which holds all dependency to run python project

    • @commonman5768
      @commonman5768 ปีที่แล้ว

      Just use pip package dependency war file which holds all dependency to run python project

  • @stephanieezat-panah7750
    @stephanieezat-panah7750 ปีที่แล้ว

    I noticed that there is no .git directory in the zip file that I downloaded. I am confused. please explain

    • @brutely9718
      @brutely9718 10 หลายเดือนก่อน

      It's hidden

  • @stephanieezat-panah7750
    @stephanieezat-panah7750 ปีที่แล้ว

    Help! I use port 8080 for Apache Tomcat. what to do??
    An update: I uninstalled Tomcat and reran the command. All was well and I was able to continue. thank you. This has been a fabulous video. You have saved me.

  • @selomie2721
    @selomie2721 ปีที่แล้ว

    Nice one thank you!

  • @thereallyegreg
    @thereallyegreg 2 ปีที่แล้ว

    Cool, thanks a lot!

  • @ShanSiraj
    @ShanSiraj ปีที่แล้ว

    It's great.. Thanks...

  • @jericholiao8134
    @jericholiao8134 ปีที่แล้ว

    GoodJob,Thanks bro

  • @CristianGarcia-ku6qj
    @CristianGarcia-ku6qj 2 ปีที่แล้ว

    Thanks!!

  • @djdc9438
    @djdc9438 ปีที่แล้ว

    Wena choro

  • @sofi6463
    @sofi6463 2 หลายเดือนก่อน

    ther is no ops.py on the github you shared