What is Continuous Delivery?

Поділитися
Вставка
  • Опубліковано 30 вер 2019
  • Learn more about Continuous Delivery: ibm.co/2l76DVN
    Eric Minick with IBM Cloud explains what continuous delivery is and how it’s used to push code to production through a continuous delivery pipeline.
    Get started on IBM Cloud for free: ibm.biz/free-lite-cloud-plan
    #devops #continuousdelivery #ibmcloud
  • Наука та технологія

КОМЕНТАРІ • 54

  • @alkasingh5050
    @alkasingh5050 2 роки тому +23

    I would like to see more videos from Eric Minick. He explains really well and I understand concept in first watch of the video as a layman.

  • @quanchi88
    @quanchi88 4 роки тому +33

    Yes, finally a clear explanation of CI and CD. Thanks.

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

    This guy explanations are always very clear and concise, would love to see more of him

  • @samueljung6920
    @samueljung6920 2 роки тому

    Love the simple, straight-to-the-point explanation, Eric. Hope to see more of your videos.

  • @HoldenMadagameTenor
    @HoldenMadagameTenor 3 роки тому +5

    Another fantastic explanation. Thank you so much for making this so clear. I feel much more prepared to talk intelligently about this.

  • @alauddinm
    @alauddinm 3 роки тому +1

    Thanks for sharing. Awesome explanation of CI/CD for the beginners

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

    Your explanations are easy to follow 👍

  • @pankajsinghv
    @pankajsinghv 4 роки тому +2

    Excellent articulation of CD

  • @vikstu6816
    @vikstu6816 3 роки тому +5

    I loved this style on writing in front of the teacher, pretty cool. Very good content also, thank you

  • @lorenzomontu2747
    @lorenzomontu2747 2 роки тому

    Fantastic explanation, thank you.

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

    Great explanation. Thank you.

  • @priyankagurjer6285
    @priyankagurjer6285 2 роки тому +1

    Great explanation 👍🏻

  • @sruthishankar9162
    @sruthishankar9162 4 роки тому +1

    that was helpful..Thank you

  • @syedsaif9143
    @syedsaif9143 2 роки тому +1

    I can't imagine how thorough one must be with these concepts, to explain them in a way that Mr. Minick does. The guy made my jaw drop with his presentation and speaking skills, like DAAMN!

    • @IBMTechnology
      @IBMTechnology  2 роки тому +1

      Thanks for the appreciation, Syed, glad you enjoyed the video! 🙏

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

      Thank you Syed!

  • @LOKO32100
    @LOKO32100 2 роки тому +1

    I loved this video. Thank you for all your insights.

    • @IBMTechnology
      @IBMTechnology  2 роки тому

      You're welcome, Marcio, glad you liked it! 👍

  • @RenStrider
    @RenStrider 3 роки тому +4

    Meanwhile, I'm already impressed by how well Mr. Minick can nonchalantly write backward while explaining everything so nicely!

    • @hossamismail9354
      @hossamismail9354 3 роки тому +1

      Probably inverted, seeing that the cloth branding is on the opposite side.

    • @IBMTechnology
      @IBMTechnology  3 роки тому +3

      Hey Hossam! You got it right. Here's a post to explain how these videos are created 👉 ibm.co/3qcuu2w

  • @asifchoudhuryca
    @asifchoudhuryca 3 роки тому +11

    Watch this short video now to save hours of your time scouring internet watching and reading half-baked, vague materials making you even more confused.
    Thanks IBM cloud.

  • @romantsyupryk3009
    @romantsyupryk3009 4 роки тому

    Thanks so much for this tutorial.

    • @IBMTechnology
      @IBMTechnology  4 роки тому +1

      Thanks for watching, Roman! Glad you enjoyed it! 😃

  • @CosmeJunior
    @CosmeJunior 2 роки тому

    thank you very much!

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

    great explanation of CD for a non programmer ;)

  • @MsWilsonmusic
    @MsWilsonmusic 4 роки тому +1

    Excellent

  • @joaomatos1144
    @joaomatos1144 3 роки тому +1

    2021: Legendary explanation :D

  • @Youtoo138
    @Youtoo138 2 роки тому

    Well articulated. Got it
    CI breaking of things .CD Not breaking of things

  • @MrProgguru
    @MrProgguru 4 роки тому

    Awesome explanation .. I wonder how you shoot your videos with the glass and pens and the instructor behind it

    • @ericminick1700
      @ericminick1700 3 роки тому +3

      The crew in our studio has an awesome setup. Led lights enter the side of the glass to make the markers "pop". Then in post-production they flip the X-axis. I don't wear my wedding ring on my right hand.

  • @termonasti
    @termonasti 4 роки тому +2

    Hi, Automatic test means , unit tests written while coding or test automation ?

    • @ericminick1700
      @ericminick1700 3 роки тому +1

      "Yes". I love unit tests and they should be part of your build and monitored in that stage. The tests in QA/Stage/Perf/Whatever are runtime tests. Another video on this channel goes into Continuous Testing in more depth.

  • @awakeupcall5336
    @awakeupcall5336 3 роки тому +4

    what difference might be between testing QA and Stage?

    • @ericminick1700
      @ericminick1700 3 роки тому +3

      Many groups I work with have a sequence of testing environments. Generally, faster / cheaper tests are run in lower environments more often. An environment like "Stage" might be used for slow user acceptance environments. As a best practice, more automation and fewer environments is better.

  • @user-wh6fw2id9n
    @user-wh6fw2id9n 2 роки тому +2

    So Continuous integration is one phase of CD?

    • @ericminick1700
      @ericminick1700 2 роки тому +2

      CI is typically understood as "continuous build" and in that sense it's a phase/step of CD. Some look at CI as constantly integrating code into a common code line and testing it aggressively to learn if it's better or worse than what was there before. All of those downstream deployments and tests are then natural things down as part of CI and you could think of Release as "testing to see if our customers/users like it better" as well.
      The lines are really blurry here in when you get into the philosophy.
      But when you think of CI as "Build and build-time tests" then yeah, it's a step.

  • @deldia
    @deldia 4 роки тому +9

    Took me a few seconds to realise how this video was done. Clearly it was flipped horizontally post-production.

    • @mikesmith8293
      @mikesmith8293 3 роки тому +12

      yes, while filming he was clearly hanging upside down from the ceiling

    • @kaezon
      @kaezon 3 роки тому +1

      @@mikesmith8293 nice catch

  • @goalkickerbooks6160
    @goalkickerbooks6160 3 роки тому +1

    CAB is Change Advisory Board; not Change Approval Board

    • @ericminick1700
      @ericminick1700 3 роки тому +1

      Good catch. 1 take video without a firm script :)

  • @BR-gt4zk
    @BR-gt4zk 2 роки тому

    No idea why .. this guy nailed it into my head ..x..l..n..tee

  • @messironaldo1708
    @messironaldo1708 2 роки тому

    What is a "Build"? is it compiling the code?

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

      Compile and package into an installable artifact. Yes.

  • @vladimirc8604
    @vladimirc8604 3 роки тому

    automatically

  • @Youtoo138
    @Youtoo138 2 роки тому

    Can u bring in Python. Just make video . Name your price.

  • @pahvalrehljkov
    @pahvalrehljkov 3 роки тому

    nice skill of writing backwards...

    • @ericminick1700
      @ericminick1700 3 роки тому

      Video editing my friend. Flip across the Y-axis, hence the wedding ring appears to be on my right hand.

  • @TheRetrospective
    @TheRetrospective 3 роки тому

    Is he actually writing in mirror type? Geez... Let’s think: he has a wedding ring in ”wrong” finger, right finger... so he probably wrote normally but the whole video was mirrored in post-production.

    • @ericminick1700
      @ericminick1700 3 роки тому

      Correct. I'm dysgraphic and have bad enough hand-writing without trying to write backward. I did have to put Build on my right and Prod on my left which was unnatural.

  • @surapichchairgulprasert5769
    @surapichchairgulprasert5769 4 роки тому +2

    Change playback speed to 1.5x , Thank me later :D