DevOps Journey

DevOps Journey

Getting into the IT Field? Learn how to become a DevOps Engineer. Full-length DevOps courses and tutorials on Python, Docker, Kubernetes, Terraform, Linux, CI/CD, and more. On this Channel, I go over everything you need to get started in the IT field and the path you can take your career to become a DevOps Engineer.

Contact me for business opportunities/consulting:
[email protected]

- Brad

Пікірлер

  • @ujorgeleite
    @ujorgeleite2 күн бұрын

    I really like your content, amazing tutorial, clearly explanation, congratulations!

  • @ainunnafiah3806
    @ainunnafiah38062 күн бұрын

    Command 'Rest Client: Send Request resulted in an error command 'rest-client.request' not found

  • @jamestaylor6488
    @jamestaylor64883 күн бұрын

    can you create a video on Kubernetes Gatewat API, replacement of k8s ingress controller?

  • @stanleychukwu7424
    @stanleychukwu74243 күн бұрын

    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

  • @Artist19
    @Artist195 күн бұрын

    I moved from Fedora Server to Ubuntu Server to try out something little more simpler for myself I had hard time getting use to Podman. I'm learning how to use docker, apparmor and portainer portainer is awesome! I'm testing our images with docker on my home server and I have to say I'm enjoying it thanks for recommendation!

  • @DanMachlenkin
    @DanMachlenkin6 күн бұрын

    Thank you for making this course!

  • @hoptop77
    @hoptop776 күн бұрын

    So does ansible only configure a device, similar to DSC and not install an OS?

  • @LeoDor982
    @LeoDor9826 күн бұрын

    Great content, well explained. Love your voice!

  • @jerryoftheriver
    @jerryoftheriver7 күн бұрын

    Thank you! This was exactly what I needed to see. Left the DevOps world back in 2012 and have regained an interest to deploy systems using Docker.

  • @adedejiolugbedu
    @adedejiolugbedu7 күн бұрын

    Thank you

  • @patrykp8460
    @patrykp84607 күн бұрын

    No one can be told what Jenkins really is, you have to see it for yourself

  • @user-nc3im3zu1h
    @user-nc3im3zu1h7 күн бұрын

    hey, i wanna ask, i got erro like this "com.github.dockerjava.api.exception.NotFoundException: Status 404: {"message":"pull access denied for devopsjourney1/myjenkinsagent, repository does not exist or may require 'docker login': denied: requested access to the resource is denied"}" when build my_python_job, how to solve it ?

  • @user-hx1sp2zu6p
    @user-hx1sp2zu6p9 күн бұрын

    Is this based on some kind of standard or something specific to VSCode ?

  • @eointhomas2914
    @eointhomas291410 күн бұрын

    I’m working as a network engineer at the moment and looking at making the same move but I never considered myself as a “developer”, seems like too far of a jump

  • @sundayamubioya6941
    @sundayamubioya694111 күн бұрын

    Thank you.

  • @shameermulji
    @shameermulji11 күн бұрын

    Super informative video! You mentioned early in the video that you went into DevOps because you said the industry was moving away from on-prem infrastructure and there wasn't much opportunity for the traditional network engineering role. Do you still feel that is the case today? If so, who looks after all the datacenters of the major cloud players or ISPs?

  • @DevOpsJourney
    @DevOpsJourney11 күн бұрын

    Someone definitely keeps the lights on in those data centers! I just think those jobs are more niche nowadays than it was 10 years ago when most organizations had their own data center.

  • @FizWiz91
    @FizWiz9112 күн бұрын

    This video was a beautiful and easy-to-follow introduction for me to Kubernetes. I can't believe I've been putting off learning for so long thinking it was something super complicated. Thank you, Brad.

  • @KunduKailram08
    @KunduKailram0812 күн бұрын

    Hello sir! Please tell me how to drop a link in web. And how it work on clicking. Please sir reply

  • @DevOpsJourney
    @DevOpsJourney12 күн бұрын

    No idea sorry

  • @kenylabrador
    @kenylabrador18 күн бұрын

    Thanks for your videos, this is the last one of the docker course, you are amazing creating content like this, thank you so much.

  • @kenylabrador
    @kenylabrador18 күн бұрын

    How can I give you two likes? One for the video and the other one for the little Kenny behind you.

  • @kenylabrador
    @kenylabrador18 күн бұрын

    Thanks for your videos, they are really helpful.

  • @kenylabrador
    @kenylabrador18 күн бұрын

    Hello Brad! I learned a lot with your videos. Thank you

  • @kenylabrador
    @kenylabrador18 күн бұрын

    Thank you, good explanation, really helpful!

  • @kenylabrador
    @kenylabrador18 күн бұрын

    Thank you, good explanation, really helpful!

  • @kenylabrador
    @kenylabrador18 күн бұрын

    Thank you, good explanation, really helpful!

  • @CrafterXD2000
    @CrafterXD200018 күн бұрын

    Thanks Brad for this gorgeos video about jenkins! you have helped me saving so much time! 🔥

  • @kenylabrador
    @kenylabrador19 күн бұрын

    You have a new follower here!

  • @kenylabrador
    @kenylabrador19 күн бұрын

    One of the best videos on the Jenkins on KZread for sure, thanks Brad! This will be really helpful for me.

  • @tommyleong8328
    @tommyleong832819 күн бұрын

    Thanks for the great tutorial! Simple to understand, picked it up immediately! :)

  • @reginatoronto
    @reginatoronto20 күн бұрын

    A lot part of the series is outdated in 2024. Dear Author, please update

  • @amansinha94
    @amansinha9422 күн бұрын

    is my understanding correct for a full ci/cd set up in azure devops? As a devops engineer an end to end devops pipeline starts with the source code push where I have implemented a pre-push hook into the developers ide so that whenever they commit the code on local feature branch and try to push their changes to the github feature branch the pre-push hook tests the linting of the code using superlint.yml which is executed by github action inside .github/workflow/superlint.yml. If that fails the push declines, if the linting is passed the code pushed to the remote feature branch which automatically triggers a CI pipeline - (first stage) compiles the code, (second stage) builds the code, (third stage) perform unit tests, (forth stage) run code coverage using sonarqube and (fifth stage) vulnerability assessment using owasp. If the code coverage is not upto 75% the pipeline fails, so for that to pass the developer must have 75% of the code covered under unit tests. Once unit test passes the pipeline runs (sixth stage) where it builds a docker image using the dockerfile from the repo and creates a container which then is deployed in azure container registry. the above is all done in "CI pipeline" of azure devops, is it correct? now once the container is in ACR it triggers a cd pipeline which uses azure kubernetes service to attach ACR and spins up a kubernetes cluster to deploy the container inside pods to host the application. Now my question is should the developer raise a PR to merge the code to main branch now that is after the feature branch code is deployed into K8s where the who process c/cd is carried out again?

  • @akhil_sai
    @akhil_sai22 күн бұрын

    Hi, do you have a video of how to install a helm solution with many micro services ? all services having its own vlues and temples file

  • @DevOpsJourney
    @DevOpsJourney22 күн бұрын

    Should look into argocd, I have a video on that. That's how I'd deploy microservices via helm

  • @akhil_sai
    @akhil_sai22 күн бұрын

    @@DevOpsJourney thanks

  • @35hernandez93
    @35hernandez9323 күн бұрын

    Sweet sweet English :)

  • @user-ug7ue8xw5b
    @user-ug7ue8xw5b23 күн бұрын

    Your videos are really nice. Can you make a video on how we can optimize a docker file? @DevopsJourney

  • @mtbcyclist
    @mtbcyclist24 күн бұрын

    Good stuff man. Subscriber earned!

  • @QwickGainz
    @QwickGainz24 күн бұрын

    pod stuck at pending in the early stages of this video..

  • @DevOpsJourney
    @DevOpsJourney24 күн бұрын

    You on a M series laptop?

  • @QwickGainz
    @QwickGainz24 күн бұрын

    @@DevOpsJourney asus g14 2023

  • @QwickGainz
    @QwickGainz24 күн бұрын

    @@DevOpsJourney using wsl (ubuntu 20)

  • @nirmesh44
    @nirmesh4425 күн бұрын

    best explanation ever!

  • @joaohenriques3872
    @joaohenriques387227 күн бұрын

    Im a freshly cs graduate and im kinda lost, to be a dev ops i have to pass through software enginering or i can go directly to dev ops path?

  • @DevOpsJourney
    @DevOpsJourney27 күн бұрын

    It's a hybrid role, like a developer + sysadmin. You should know a little bit about both sides to be a jr devops

  • @joaohenriques3872
    @joaohenriques387223 күн бұрын

    @@DevOpsJourney which path do you recommend me take to get there? BackEnd and then DevOps or Web development? Thanks for you answer.

  • @CharlesM-ll7zg
    @CharlesM-ll7zg27 күн бұрын

    has anyone went to devops without becoming a developer?

  • @noadsplease2737
    @noadsplease273727 күн бұрын

    The content is great. Really top notch but I cannot make it to the end of the video because of my misophonia

  • @JohnSmith-kd6ip
    @JohnSmith-kd6ip27 күн бұрын

    Somehow my "python -m rich" looks not like in all the video's I have seen. I used cmd.exe, or the Windows PowerShell. Colors are limited, no bold or underline text etc, and icons and asian characters are not displayed.

  • @HenryWalker-yr9et
    @HenryWalker-yr9et28 күн бұрын

    Great vid

  • @hoomaneru
    @hoomaneru28 күн бұрын

    Great video, thank you man🌹❤️.

  • @MegaTheDamir
    @MegaTheDamir28 күн бұрын

    Totally agree, learn and support Linux After 20 years in IT industry, i’ve realized I should have started using Linux much earlier. I used to work with Windows Monitoring, (NetIQ AppManager, MOM2005, ScOM2007…and that work was really exciting, and fun. You had to know a little bit, about so many technologies, and it shaped my thinking, developed some hacking skills and what not. But the moment i started playing with Python, and through that, all Linux, terminal, packaging, web programming, servers, proxies, reverse proxies, web hooks, made me realize that whole world runs on Linux, and it was such a feeling of freedom. You want to try, download and try, hack away. No fancy suits, agreements, licences.. So to the younger generations. Don’t get locked in your Cloud Provider. Learn Linux for yourself. Cloud providers are packaging Linux and sell you services build atop. And you all know it’s $$, they are interested in. Peace!! Great videos here btw.❤

  • @SimonBalfe-uw5gd
    @SimonBalfe-uw5gd28 күн бұрын

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

  • @DevOpsJourney
    @DevOpsJourney28 күн бұрын

    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-uw5gd28 күн бұрын

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

  • @edenprades5845
    @edenprades5845Ай бұрын

    We should add programming go or python somewhere from your list 😊

  • @Yogi-wq8vo
    @Yogi-wq8voАй бұрын

    Precise and crisp, truly wonderful.!! many thanks to you my friend!!

  • @user-rj8mb5gf2b
    @user-rj8mb5gf2bАй бұрын

    It was very nice demonstration and loved it...

  • @nhanguyen2023
    @nhanguyen2023Ай бұрын

    Thanks, it's very clear !

  • @av1786
    @av1786Ай бұрын

    I realize you are an expert , do you have a solution to have running email backups on Nas just as a reader resource to old mails. Thanks 👍