How to design a Deployment Pipeline (GitOps)

  Рет қаралды 15,683

DevOps Journey

DevOps Journey

6 ай бұрын

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/KZbin 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 6 ай бұрын
Playlist: kzbin.info/aero/PLnFWJCugpwfwQgjlSg_-csiJbpBIze2qa 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 ай бұрын
I took a DevOps course and your videos helping very much to understand the subject.
@vokeakpos5357
@vokeakpos5357 5 ай бұрын
I enjoy the simplicity of your explanation of CICD pipeline projects.
@lostxmas9469
@lostxmas9469 6 ай бұрын
I love your videos man, very interesting. Thank you for sharing your knowledge with us.
@PrudhviParuchuri
@PrudhviParuchuri 6 ай бұрын
amazing explanation, looking forward for more related content!
@godwineffiong5164
@godwineffiong5164 4 ай бұрын
Simple, yet detailed. i wish i can like this video more than once. you've definitely earn a sub
@Labandusette
@Labandusette 6 ай бұрын
Great tutorial as always
@greob
@greob 6 ай бұрын
Thanks for this presentation!
@withtresor
@withtresor 5 ай бұрын
best video and thank you for that
@ajaygimit
@ajaygimit 6 ай бұрын
It would be good if you can provide a complete yaml script as per your diagram
@cantdo
@cantdo 2 ай бұрын
Why do you recommend to have a dedicated repo for your configuration? What about having a /kubernetes folder in your application repository instead?
@TannerBarcelos
@TannerBarcelos 6 ай бұрын
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 ?
@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.
@Torotero
@Torotero 2 ай бұрын
best
@concon2000
@concon2000 Ай бұрын
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 Ай бұрын
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
@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
@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 Ай бұрын
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
@kronostitan11
@kronostitan11 Ай бұрын
Why have a separate repo when you could have it all in the same repo and have the workflows separate?
@SimonBalfe-uw5gd
@SimonBalfe-uw5gd 6 күн бұрын
Hi, I am confused why is the "Deployment Pipeline" not part of the "CD" in "CI/CD" pipeline?
@DevOpsJourney
@DevOpsJourney 6 күн бұрын
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 6 күн бұрын
@@DevOpsJourney Sure that makes sense. Thanks for the excellent videos.
@jirirohlicek9191
@jirirohlicek9191 6 ай бұрын
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 kzbin.info/www/bejne/jnO4kGmFiNGar6s 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 23 күн бұрын
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 23 күн бұрын
You are completely right. I feel like an idiot for not doing this. Here's a link to a playlist I just created kzbin.info/aero/PLnFWJCugpwfwQgjlSg_-csiJbpBIze2qa Will add it to the video description and create/maintain more playlists in the future. Thanks again for the suggestion!
How to design a modern CI/CD Pipeline
9:59
DevOps Journey
Рет қаралды 39 М.
What do DevOps/SRE Engineers actually do?
21:39
DevOps Journey
Рет қаралды 4,2 М.
How to open a can? 🤪 lifehack
00:25
Mr.Clabik - Friends
Рет қаралды 13 МЛН
ОДИН ДОМА #shorts
00:34
Паша Осадчий
Рет қаралды 6 МЛН
Follow @karina-kola please 🙏🥺
00:21
Andrey Grechka
Рет қаралды 13 МЛН
GitLab CI CD Tutorial for Beginners [Crash Course]
1:09:00
TechWorld with Nana
Рет қаралды 1,1 МЛН
ArgoCD Tutorial for Beginners: GitOps CD for Kubernetes #1
38:51
Anton Putra
Рет қаралды 38 М.
Let's do GitOps in Kubernetes! ArgoCD Tutorial
18:01
Christian Lempa
Рет қаралды 60 М.
Learn Jenkins! Complete Jenkins Course - Zero to Hero
1:08:28
DevOps Journey
Рет қаралды 666 М.
Do NOT Learn Kubernetes Without Knowing These Concepts...
13:01
Travis Media
Рет қаралды 204 М.
AWS CodePipeline tutorial | Build a CI/CD Pipeline on AWS
16:35
Block Explorer
Рет қаралды 270 М.
What does larger scale software development look like?
24:15
Web Dev Cody
Рет қаралды 1,2 МЛН
JENKINS END TO END CICD Implementation with Detailed Notes | BEST CICD PROJECT
1:27:11
Я Создал Новый Айфон!
0:59
FLV
Рет қаралды 3 МЛН
Внутренности Rabbit R1 и AI Pin
1:00
Кик Обзор
Рет қаралды 2 МЛН