Тёмный

How to design a Deployment Pipeline (GitOps) 

DevOps Journey
Подписаться 64 тыс.
Просмотров 21 тыс.
50% 1

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/RU-vid 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.

Наука

Опубликовано:

 

29 окт 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 35   
@DevOpsJourney
@DevOpsJourney 7 месяцев назад
Playlist: ru-vid.com/group/PLnFWJCugpwfwQgjlSg_-csiJbpBIze2qa View my diagram: app.eraser.io/workspace/d0mh9JjnYl2TWetXPsXV
@ajaygimit
@ajaygimit 7 месяцев назад
It would be good if you can provide a complete yaml script as per your diagram
@stanleychukwu7424
@stanleychukwu7424 12 дней назад
the channel is a DevOps mine, thanks so much for helping those in need.. you'll be rewarded some day, both here on earth and in the after life
@MagDag_
@MagDag_ 3 месяца назад
I took a DevOps course and your videos helping very much to understand the subject.
@vokeakpos5357
@vokeakpos5357 6 месяцев назад
I enjoy the simplicity of your explanation of CICD pipeline projects.
@lostxmas9469
@lostxmas9469 7 месяцев назад
I love your videos man, very interesting. Thank you for sharing your knowledge with us.
@godwineffiong5164
@godwineffiong5164 5 месяцев назад
Simple, yet detailed. i wish i can like this video more than once. you've definitely earn a sub
@PrudhviParuchuri
@PrudhviParuchuri 7 месяцев назад
amazing explanation, looking forward for more related content!
@Labandusette
@Labandusette 7 месяцев назад
Great tutorial as always
@greob
@greob 7 месяцев назад
Thanks for this presentation!
@withtresor
@withtresor 6 месяцев назад
best video and thank you for that
@ajaygimit
@ajaygimit 7 месяцев назад
It would be good if you can provide a complete yaml script as per your diagram
@TannerBarcelos
@TannerBarcelos 7 месяцев назад
Is it possible you create a video putting this theory and architecture into practice using Jenkins or another automation tool?
@Lord-V15
@Lord-V15 3 месяца назад
Did you find any answers ?
@MagDag_
@MagDag_ 3 месяца назад
Great!
@cantdo
@cantdo 3 месяца назад
Why do you recommend to have a dedicated repo for your configuration? What about having a /kubernetes folder in your application repository instead?
@AshranBaig
@AshranBaig 2 месяца назад
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 3 месяца назад
best
@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 месяца назад
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 2 месяца назад
How do you handle multiple deployments being integrated and deployed at very short intervals? 😅
@DevOpsJourney
@DevOpsJourney 2 месяца назад
I use a combination of ArgoCD + ArgoRollouts for that. I have videos on both if you are interested
@gautamsnegi27
@gautamsnegi27 5 месяцев назад
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 5 месяцев назад
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 5 месяцев назад
@@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
@SimonBalfe-uw5gd
@SimonBalfe-uw5gd Месяц назад
Hi, I am confused why is the "Deployment Pipeline" not part of the "CD" in "CI/CD" pipeline?
@DevOpsJourney
@DevOpsJourney Месяц назад
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 Месяц назад
@@DevOpsJourney Sure that makes sense. Thanks for the excellent videos.
@kronostitan11
@kronostitan11 2 месяца назад
Why have a separate repo when you could have it all in the same repo and have the workflows separate?
@jirirohlicek9191
@jirirohlicek9191 7 месяцев назад
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 ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-XBU_6OSlgyI.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 7 месяцев назад
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 ru-vid.com/group/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
Просмотров 66 тыс.
What is GitOps | GitOps explained with ArgoCD project
15:51
Regular Season vs. PLAYOFFS part 2 #pavelbarber
00:14
FUN&SUN | Update 0.29.0 Trailer | Standoff 2
02:32
Просмотров 979 тыс.
What do DevOps/SRE Engineers actually do?
21:39
Просмотров 5 тыс.
How to Create Helm Charts - The Ultimate Guide
22:26
Просмотров 86 тыс.
What is GitOps, How GitOps works and Why it's so useful
11:33
So You Think You Know Git - FOSDEM 2024
47:00
Просмотров 986 тыс.
Ноутбук без экрана
0:22
Просмотров 16 тыс.
iOS 18 превратилась в Android
0:49
Просмотров 614 тыс.