How to design a Deployment Pipeline (GitOps)

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ต.ค. 2023
  • Learn how I design Continuous Deployment Pipelines. In this video I diagram out the major components and considerations taken when creating deployment pipelines for modern software companies that implement GitOps principles.
    DevOps Whiteboarding Playlist: • DevOps - Whiteboarding...
    Diagram created using www.eraser.io/
    View my diagram: app.eraser.io/workspace/d0mh9...
    Design a CI/CD Pipeline: • How to design a modern...
    ArgoCD Tutorial: • ArgoCD Starter Guide: ...
    GitOps Explained: • Explaining GitOps: How...
    ☕ Buy me a coffee: www.buymeacoffee.com/bradmorg
    🛍️ Amazon Store (Homelab/TH-cam Setup): www.amazon.com/shop/devopsjou...
    ☁️ $200 Digital Ocean Cloud Credits: m.do.co/c/adc24155a741
    Sponsorship note: I am a sponsored collaborator for the eraser product.
  • วิทยาศาสตร์และเทคโนโลยี

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

  • @DevOpsJourney
    @DevOpsJourney  7 หลายเดือนก่อน +1

    Playlist: th-cam.com/play/PLnFWJCugpwfwQgjlSg_-csiJbpBIze2qa.html
    View my diagram: app.eraser.io/workspace/d0mh9JjnYl2TWetXPsXV

    • @ajaygimit
      @ajaygimit 6 หลายเดือนก่อน

      It would be good if you can provide a complete yaml script as per your diagram

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

    I took a DevOps course and your videos helping very much to understand the subject.

  • @lostxmas9469
    @lostxmas9469 7 หลายเดือนก่อน +1

    I love your videos man, very interesting. Thank you for sharing your knowledge with us.

  • @vokeakpos5357
    @vokeakpos5357 6 หลายเดือนก่อน

    I enjoy the simplicity of your explanation of CICD pipeline projects.

  • @PrudhviParuchuri
    @PrudhviParuchuri 6 หลายเดือนก่อน

    amazing explanation, looking forward for more related content!

  • @greob
    @greob 6 หลายเดือนก่อน

    Thanks for this presentation!

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

    Great tutorial as always

  • @ajaygimit
    @ajaygimit 6 หลายเดือนก่อน +4

    It would be good if you can provide a complete yaml script as per your diagram

  • @godwineffiong5164
    @godwineffiong5164 5 หลายเดือนก่อน

    Simple, yet detailed. i wish i can like this video more than once. you've definitely earn a sub

  • @TannerBarcelos
    @TannerBarcelos 7 หลายเดือนก่อน +5

    Is it possible you create a video putting this theory and architecture into practice using Jenkins or another automation tool?

    • @Lord-V15
      @Lord-V15 2 หลายเดือนก่อน

      Did you find any answers ?

  • @withtresor
    @withtresor 5 หลายเดือนก่อน

    best video and thank you for that

  • @cantdo
    @cantdo 3 หลายเดือนก่อน +1

    Why do you recommend to have a dedicated repo for your configuration? What about having a /kubernetes folder in your application repository instead?

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

    Great!

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

    Great job and the diagram really helps.CI refers to Continuous integration and CD refers to Continuous deployment/delivery, I guess you mistakenly used the "CICD" term as Continuous integration and the Deployment pipeline as CD.

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

    How do you handle multiple deployments being integrated and deployed at very short intervals? 😅

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

      I use a combination of ArgoCD + ArgoRollouts for that. I have videos on both if you are interested

  • @SimonBalfe-uw5gd
    @SimonBalfe-uw5gd 19 วันที่ผ่านมา

    Hi, I am confused why is the "Deployment Pipeline" not part of the "CD" in "CI/CD" pipeline?

    • @DevOpsJourney
      @DevOpsJourney  19 วันที่ผ่านมา

      It's actually CI/CD&CD. Continuous Delivery & continuous deployment. Delivery just means making the artifacts available, deployment means actually deploying to those environments

    • @SimonBalfe-uw5gd
      @SimonBalfe-uw5gd 19 วันที่ผ่านมา

      @@DevOpsJourney Sure that makes sense. Thanks for the excellent videos.

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

    What if you have two app repos one for frontend and one for backend and you’re trying to accomplish this, how would you deploy both at the same time? Ensuring the new frontend can hit the new backend.

    • @DevOpsJourney
      @DevOpsJourney  2 หลายเดือนก่อน +1

      You would deploy your new backend first, then you would deploy the front-end. New backend should be compatible with the old front-end, or you would have to just run two versions of it during the transition

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

    Why have a separate repo when you could have it all in the same repo and have the workflows separate?

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

    best

  • @gautamsnegi27
    @gautamsnegi27 4 หลายเดือนก่อน

    my doubts for canary deployment
    - what would happen if there are different apps across multiple node?
    - in case of any issues are we going to rollback the whole deployment?
    - what if multiple teams have their changes in the same deployment? we can't rollback others changes for our failure.

    • @user-dq7vo6dy7g
      @user-dq7vo6dy7g 4 หลายเดือนก่อน

      He didn't go a lot into detail there.
      I think you would roll back the whole deployment and "all" the changes. However, this would normally be done in a microservice environment where you don't have combined changes of multiple teams and only very small incremental changes instead of huge release packages.

    • @gautamsnegi27
      @gautamsnegi27 4 หลายเดือนก่อน

      @@user-dq7vo6dy7g deployments generally are multi app dependent. like at least UI changes also with backend changes. if we follow canary deployment, we will have to rollback those as well. great video though. I might be missing few things. need to read more on this.

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

      Also consider you could use something like launchdarkly to feature flag changes and turn them on gradually after the release is completed and roll back the feature if something breaks

  • @jirirohlicek9191
    @jirirohlicek9191 7 หลายเดือนก่อน +1

    First of all, LOVE the content your are providing. I have already learned so much.
    I have a question regarding your setup though. I have implemented your Windows setup from this video th-cam.com/video/XBU_6OSlgyI/w-d-xo.html
    Now I have a bit of a challenge when accessing resources behind VPN. My Corp. is using Split tun. OVPN. I am using windows client and everything, WSL included, works great.
    We also work with a client that forces us to use their Fortinet full tunnel VPN. When I install the client on the Windows layer, my WSL is unable to connect to the internet.
    I am thinking about spinning up a docker and install the VPN client inside. Not sure if I should install my tools there too, or "somehow" use it as a proxy for the WSL.
    Any ideas, what would be the best approach to solve this issue?

    • @DevOpsJourney
      @DevOpsJourney  6 หลายเดือนก่อน

      Hmm I'm actually not sure what the best solution for you would be. I found this, there seems to be issues with WSL2 when using Full tunnel VPNs so you are not alone.. github.com/microsoft/WSL/issues/4277

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

    Put some effort into making playlists.
    I have not found one and no, I will not be scrolling to your previous video. Bye

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

      You are completely right. I feel like an idiot for not doing this. Here's a link to a playlist I just created th-cam.com/play/PLnFWJCugpwfwQgjlSg_-csiJbpBIze2qa.html
      Will add it to the video description and create/maintain more playlists in the future. Thanks again for the suggestion!