ArgoCD Image Updater: Decouple CI from CD! #2

Поділитися
Вставка

КОМЕНТАРІ • 95

  • @AntonPutra
    @AntonPutra  Рік тому +6

    🔴 - To support my channel, I’d like to offer Mentorship/On-the-Job Support/Consulting - me@antonputra.com
    👉 How to Set Up ArgoCD for Production?: ua-cam.com/video/_G_RY5trQao/v-deo.html
    👉 [Playlist] Argo CD Tutorials: ua-cam.com/play/PLiMWaCMwGJXkktZoHhmL6sbg7ELNjv9Xw.html

  • @asezen77
    @asezen77 Місяць тому +1

    Most serious DevOps channel on youtube! Everytime i search about DevOps i land here and see that its explained in details with reasoning. Thank you very much!

  • @LifeHappy-
    @LifeHappy- 8 місяців тому +1

    I love this: 08:47, most of the tutorials forget the typical scenarios.

  • @rrckguy
    @rrckguy Рік тому +10

    Much better than paid courses. Thanks for your time.

  • @prashlovessamosa
    @prashlovessamosa Рік тому +2

    Quality of you Videos is super awesome it is very easy to learn.

  • @tuvoxuan1894
    @tuvoxuan1894 Рік тому +1

    thank you bro, you do great for your channel.... it help me alot!!

  • @KA-kp1me
    @KA-kp1me Місяць тому

    With pullSecrets, you can configure it on namespace level by associating it with default (or other) service account.

  • @AminM459
    @AminM459 Рік тому +1

    note, when adding a helm repo, you can update local index for that repo only (faster)
    helm repo add XYZ url
    helm repo update XYZ

  • @mihailyurukov5942
    @mihailyurukov5942 Рік тому +1

    Спасибо! Thanks very much for the in-depth guide!

  • @yassinekhouaja1257
    @yassinekhouaja1257 Рік тому +2

    Hi @AntonPutra , I really enjoy watching your videos.
    I was wondering if it would be possible for you to make a video that delves into the subject of secret management?
    this is an important topic that deals with the safekeeping of sensitive information such as passwords, API keys, and other types of credentials.

    • @AntonPutra
      @AntonPutra  Рік тому +1

      Sure, thanks for the feedback

  • @DuyNguyen-gm2jk
    @DuyNguyen-gm2jk Рік тому +1

    Thank you very much for this content, hope you can make more videos about Argocd, specifically AppProject and Applicationset 😍

    • @AntonPutra
      @AntonPutra  Рік тому +1

      Sure, thanks!

    • @awssoorinje747
      @awssoorinje747 Рік тому

      @@AntonPutra thanks a lot, please upload more videos on argocd.

  • @vinayhegde9888
    @vinayhegde9888 Рік тому +1

    Great content!!!! Thanks for sharing.
    Can you please share terraform code to install Argo Rollout as well if available.

    • @AntonPutra
      @AntonPutra  Рік тому

      Thank you, Vinay. It can be installed using the same helm provider as I did with other components. You can find it with
      - helm repo add argo argoproj.github.io/argo-helm
      - "helm search repo argo-rollouts"

  • @chasim1982
    @chasim1982 Рік тому +2

    Great Video as always, please make a video regarding argocd canary deployment & adding multiple clusters like eks & gke in a single argocd for easier managements, thanks for an amazing high class production grade content 🥰

  • @efaruk
    @efaruk 4 місяці тому +1

    Much appreciated, great job man, thank you behalf of the community....

  • @longtran12345678
    @longtran12345678 Рік тому +1

    interesting and very meaningful video as usual. Before viewing this video, I was thinking about using events to have CD / CI but with ArgoCD Image Updater, it simplies the approach a lot. Many thanks for your video Anton :)

    • @AntonPutra
      @AntonPutra  Рік тому

      Thank you, events?

    • @AntonGorbachevDev
      @AntonGorbachevDev 9 місяців тому

      ​@@AntonPutraYes, they have Argo Events, Workflows and Rollouts. CI part can be implemented with events and workflows

  • @ErKo-l1u
    @ErKo-l1u 3 місяці тому

    Hello, thanks for the work you put to do these videos. What happens if the writeback branch is protected? How safe is to allow image updater service user to write back to the main branch with force-push permissions? We have a setup where we want to use image updater for DEV to enable automatic deployment, with writeback to main, and then QA/Prod would be PR workflow using manual image tag update.

    • @AntonPutra
      @AntonPutra  3 місяці тому

      i think i answered your question under another video. yes image updater won't work with protected branches and app of apps, try flux v2

  • @alidadgar445
    @alidadgar445 Рік тому +1

    hi,thanks for videos, pls make video for secret management.

  • @havefun599
    @havefun599 8 місяців тому

    Best Teacher Ever

  • @kasvith
    @kasvith Рік тому

    Hi Anton, what do you think of following strategy
    1. CI pipeline builds new docker image in the app repo and push it to CR
    2. CI(we are still in App build CI pipeline) knows image tag, it pull deployment repo, use kustomize to update image tag in deployment, update deployment repo, push it
    3. ArgoCD watches for the deployment repo and notice the tag change
    4. ArgoCD does the deployment
    In here we use a single CI pipeline to build docker image, push it to CR, update deployment repo(which is a separate one) and let argo do the rest

    • @AntonPutra
      @AntonPutra  Рік тому +1

      I think I described exactly the same strategy in either in the first video or in this one😊

    • @kasvith
      @kasvith Рік тому

      @@AntonPutra yeah just noticed it, keep up the good work

    • @AntonPutra
      @AntonPutra  Рік тому +1

      @@kasvith thanks will do :)

    • @kasvith
      @kasvith Рік тому +1

      @@AntonPutra hi anton, i finshed the vid, i think main difference with your vid and my approach was, in your one ArgoCD writes to the git repo about the latest tag, in mine CI server does this when certain criterias are met
      for example after staging deployed, CI server will update the deployment repo with image tag into prod env, causing argo cd to deploy the app to prod
      this way, we control the entire flow from a CI script and we control how same image tag promoted different multiple environments.
      I prefer to use git SHA for image tag, so we can correlate image version with our code at any given time. this allow us to simply promote same image across multi environments keeping things more consistent
      let me know what you think

    • @AntonPutra
      @AntonPutra  Рік тому +1

      ​@@kasvith Most of the time, I prepare some simplified versions of the pipelines. Production pipelines can have a lot more steps and validation, so I'm not surprised.

  • @g-luu
    @g-luu Рік тому

    Thank you so much for this thorough video. Curious if its possible to use something like key vault or aws kvm for secrets. Would be an awesome video.

    • @AntonPutra
      @AntonPutra  Рік тому

      Thanks, yes it's possible. I have one video regarding eks and aws secrets manager integration, but it's quite old i would need to update soon

  • @ЮрийВласов-д4ю
    @ЮрийВласов-д4ю Рік тому +1

    Hi Anton!
    Your videos are great! Thanks a lot!
    I am curious, how do you version kustomize artifacts? Let's say I have development and production environments. I am going to migrate from regular Deployment with rolling update to flagger and I want to commit that to the repository but affect development environment only.
    If we use the same app-base folder - that is a bit problematic. Or let's say I want to rollback, do I have to git revert?
    If I use helm, I can version charts in chartmuseum or OCI repository and upgrade/rollback independently

    • @AntonPutra
      @AntonPutra  Рік тому +1

      Yes, it's a trade-off. You can't really version control Kustomize; you can only override some parameters in each environment. Usually, it's enough. If not, consider creating a new folder for Kustomize.

  • @蓝鹏-u1o
    @蓝鹏-u1o Рік тому +1

    super useful for me

  • @aidakhalelova3376
    @aidakhalelova3376 5 місяців тому

    hi, Anton, thank you for the content. Very useful. I've adopted a lot of practices you outline in your tutorial. I noticed that when terraform creates argocd helm release, and if you delete an ingress manually(I am creating an internal one) terraform doesn't know about ingress being deleted. Is there any way to have a control over it? My thought is to create ingress as a kubernetes resource instead of a part of helm release.

    • @AntonPutra
      @AntonPutra  5 місяців тому

      Thanks! Why not configure ingress using a Helm chart? For example, you can make it internal from the get-go. Or, you can use 'helm template' to generate YAML, then add your custom ingress and change variables with Kustomize.

  • @Diego_UG
    @Diego_UG Рік тому +1

    uff thank you, its content is incredible, good practices can be understood, I like it a lot, what do you think of staging or production-like test environments and how should databases be managed? I have seen environments that from staging select a branch and send it to be deployed to a cluster that sees a url, where I work they want to make it possible to have n self-assembling virtual environments, but in their experience from what you have seen, or What do you think would be a good practice?

    • @AntonPutra
      @AntonPutra  Рік тому

      I saw that some companies take a snapshot of production data and load it to "staging" environments for tests.

    • @Diego_UG
      @Diego_UG Рік тому

      @@AntonPutra Yes, and with respect to creating test environments in kubernetes? What is the most common, the correct, the best practice? What would the flow of the team or the developer be like?

  • @dimadiachenko1
    @dimadiachenko1 Рік тому +1

    many thanks man!

  • @ahmadhassan2321
    @ahmadhassan2321 Рік тому +1

    Hi @AntonPutra
    Thank you so much for your content. I have a question regarding how do we manage github repository when you have multiple environments, like how will the folder structure look like, application.yaml file . with image updater being setup too.

    • @AntonPutra
      @AntonPutra  Рік тому

      Something like this - github.com/antonputra/tutorials/tree/main/lessons/158/lesson-158/environments/staging

    • @ahmadhassan2321
      @ahmadhassan2321 Рік тому

      @@AntonPutra Thank you so much for your response. Unfortunately it doesn't address my problem statement, I am looking for a solution when you have your microservices managed by helm and you need to deploy them to different environment, Secondly i need to setup application.yaml file to each environment since i have argocd setup on each environment.
      Looking forward to hear from you :)

    • @AntonPutra
      @AntonPutra  Рік тому

      @@ahmadhassan2321 check out argocd autopilot, they have very opinionated folder structure that may work for you - argocd-autopilot.readthedocs.io/en/stable/

  • @jamallmahmoudi9481
    @jamallmahmoudi9481 11 місяців тому

    Hi, Anton
    great video, Thanks a lot for sharing
    I have a question
    in this scenario what is exactly ArgoCD " app of apps " ???

    • @AntonPutra
      @AntonPutra  11 місяців тому

      To deploy regular application using Argocd we need to apply argocd custom resource with reference to kubernetes deployment manifests. if you need to deploy 10 apps you need to manually apply 10 argocd custom resources. App of apps is the same argocd custom resource that you use to apply a single resource but instead it has reference to all argocd custom resources. So it automates deployments of all apps from the git

  • @MatthewKennedyUK
    @MatthewKennedyUK 5 місяців тому

    I would love to hear your thoughts on the best way to allow argoCD to connect to a private AWS ECR, for pulling oci helm charts.
    The ecr token expires every 12 hours so some kind of corn job maybe?

    • @AntonPutra
      @AntonPutra  5 місяців тому

      have you tied this?
      github.com/karlderkaefer/argocd-ecr-updater

  • @asrn1739
    @asrn1739 11 місяців тому +1

    Thank you definitely helpful

  • @gbaneousmane935
    @gbaneousmane935 5 місяців тому +1

    Great content

  • @domw2391
    @domw2391 Рік тому

    Thanks for the video,
    Sorry I have a question again.
    Should we make our backend app into tf code? Because in this example, we only use kubectl apply to put the application into Argocd.
    But I am trying to use terragrunt with combine with ArgoCD. However I don't know should I transform my application into tf code. Because both kustomise and helm also in yaml format which can not be called by using terraform / terragrunt apply.
    So I am quite confuse when we should put the application into argoCD, or we just run kubectl apply -f application at the end of infrastructure deployment.
    Below are my developed steps of terragrunt plan
    Group 1
    - infrastructure-live/dev/vpc
    Group 2
    - infrastructure-live/dev/eks
    - infrastructure-live/dev/iam-admin
    Group 3
    - infrastructure-live/dev/argocd (argocd+image-updater+chart_museum)
    - infrastructure-live/dev/kube-prometheus-stack
    Group 4
    - infrastructure-live/dev/external-ingress-nginx
    - infrasturcture-live/dev/my-backend-app

  • @Soma2501
    @Soma2501 2 місяці тому

    is it better to use application sets or application with kustomize? Im using app of app approach either way

    • @AntonPutra
      @AntonPutra  2 місяці тому

      the fewer framework-specific objects you use, the easier it will be to migrate to a different project later

  • @sakshamatwork
    @sakshamatwork Рік тому

    Hi Anton, what method would you suggest for authorization for AWS ECR?

    • @AntonPutra
      @AntonPutra  Рік тому +1

      The only appropriate option now is to create an IAM role and use IRSA for the K8s ArgoCD service account. By the way I'll create a video soon ArgoCD + EKS..

  • @jianjiatan7599
    @jianjiatan7599 Рік тому

    What is your preference? Helm or kustomize? And why?

    • @AntonPutra
      @AntonPutra  Рік тому

      I use Helm to deploy ephemeral environments that are typically torn down after you run tests or are done with development. It's also used for some open-source applications.
      If you decide to use Helm to manage applications in your production environments, over time, you may get new requests to add more deployments, expose them using ingress, etc. Any kind of change in Helm must be associated with additional commits and the release of a new Helm version. If you have hundreds of apps, managing Helm can sometimes be very annoying. With Kustomize, it’s a bit easier to manage in the long term.

  • @verp4658
    @verp4658 8 місяців тому

    Thanks for this video. Its explained everything iam wondoring. :)

  • @Vol4ikk
    @Vol4ikk 9 місяців тому

    Thanks for your videos!

  • @erickvillatoro5683
    @erickvillatoro5683 Рік тому +1

    Can you do a Flux V2 tutorial?

  • @HJhon_mdz
    @HJhon_mdz 4 місяці тому +1

    thanks man

  • @rohmersicat3429
    @rohmersicat3429 Рік тому

    Hi seems like aws ecr not supported on the updater config registry do you have any work around for aws ecr ?

    • @AntonPutra
      @AntonPutra  Рік тому

      Not sure regarding ArgoCD and AWS; for the last 4 years, I've been running FluxCD. It supports all cloud providers 100%. I'll check in the future, looks like there isa workaround - github.com/argoproj-labs/argocd-image-updater/issues/112

    • @rohmersicat3429
      @rohmersicat3429 Рік тому

      @@AntonPutra Thank you in your opinion what do you prefer for CD FluxCD or ArgoCD ? specially when it comes of complexity

    • @AntonPutra
      @AntonPutra  Рік тому +1

      @@rohmersicat3429 ​​⁠Argocd is more popular just because it has UI, I don’t use it anyway. I’ve been running Fluxcd in prod for I few years and only had issue due to my mistake and built-in garbage collection

    • @rohmersicat3429
      @rohmersicat3429 Рік тому

      @@AntonPutra Thank you master! been following you and watching your video always :)

  • @Davidlavieri
    @Davidlavieri Рік тому

    wouldn't it be simpler to use say "github actions" to make the 2nd example, PR -> master -> action: (1) build app and push to docker hub (2) commit&push tag release
    it wont separate ci/cd but keep it simpler

  • @OlegKorsak
    @OlegKorsak Рік тому +2

    isn't ArgoCD a bloatware? FluxCD looks simpler

    • @AntonPutra
      @AntonPutra  Рік тому +3

      Agree, i use fuxcd in my environments. But looks like argocd is much more popular..

  • @s_dee_13
    @s_dee_13 Рік тому

    Couldn't you use renovate bot for this

  • @StephanDuToit
    @StephanDuToit Рік тому +1

    Thanks!

    • @AntonPutra
      @AntonPutra  Рік тому +1

      Thank you, Stephan!

    • @StephanDuToit
      @StephanDuToit Рік тому

      No, thank YOU! Your content is fantastic. Keep it up