Thanks for the opportunity to make this tutorial! DevOps is a lot of fun and I enjoyed getting to create this video 🙂 Let me know if you have any questions 🤓
@LimitlessMinds2 жыл бұрын
Always bringing excelent content @Faraway Academy
@theencryptedpartition46332 жыл бұрын
So good seeing u here Gwen! Welcome back
@RomanBorowinski2 жыл бұрын
@Ryotsu Kankichi Exactly! What was the point crating second server for Docker when there was nowhere shown how to pull latest image from Dockerhub to the server and show application working! Is there a second part coming?
@jessicaalvarez23142 жыл бұрын
hello im a slow learner with dislexia, ive been learning javascript since april and forgot 99% of what ive learned any advice?
@Benjamin-vv3br2 жыл бұрын
@Faraday Academy Does anyone know the name of the extension used in 17:44 to generate a password?
@clintonhussein79402 жыл бұрын
It's the most desirable tutorial for me right now, thank you very much
@aidoka20002 жыл бұрын
Awesome tutorial. Was super easy to understand and follow along. Thank you Gwen and FCC.
@mazharansari781310 ай бұрын
Is this complete jenkins tutorial? And also are there any pre requisites?
@Jhonfreddy152 жыл бұрын
I NEEDED THIS. Thanks . There are where few videos about Jenkins . Nowadays all attention is focus on GitHub actions and other similar products
@light.yagami787 Жыл бұрын
This was a very good introduction. Thanks for also leaving in the error your encountered.
@MahmudulIslam-l9x Жыл бұрын
Simple but interactive. Thank you
@mykolatokariev Жыл бұрын
Your tempo and your explanation is in my opinion the best ❤
@lechf12 жыл бұрын
Anyone had error npm ERR! code ENOMEM npm ERR! syscall spawn npm ERR! errno -12 npm ERR! spawn ENOMEM after add command front-end unit test (53:00)?
@vaughngx42 жыл бұрын
Been needing this, thanks!
@cybermindable2 жыл бұрын
Amazing job! Thank you for such a nice and clean introduction to Jenkins!
@OleksandrBorysenko333 Жыл бұрын
It is a great tutorial! Probably I'll watch this video again - I didn't catch it all in one view.
@OpenToLearn2 жыл бұрын
FreeCodeCamp my fav thanks for all the contents some corrections as given below. Mistake at 9:48 the slide says Continuous delivery automatically deploys code to production but that's not right as we need manual approval for Continuous Delivery only in case of Continuous deployment we will automatically deploy the code to prod. There is a huge difference between Continuous delivery and deployment.
@GabrielRodriguezInjectedFusion2 жыл бұрын
Hooray this course is here!
@gabrielgitonga12522 жыл бұрын
This is amazing content for beginners. Learned and understand what Jenkins can do
@mazharansari781310 ай бұрын
Is this complete jenkins tutorial? And also are there any pre requisites?
@Benjamin-vv3br2 жыл бұрын
Does anyone know the name of the extension used in 17:44 to generate a password?
@fuuman52 жыл бұрын
Bitwarden/Vaultwarden. Best selfhosted password manager ever. Using it for years. Amazing stuff. The server, the browser extension and the android app. Perfect.
@Nedwarez Жыл бұрын
Its a pretty good tutorial, I got stuck in the github API rate limit which I´m trying to solve now. Thanks a lot!
@robertpeschke7746 Жыл бұрын
AT 20:46 it was unclear to me how you got to the initial jenkins screen? Is this in a browser?
@imnottellingyoumyname30509 ай бұрын
Yeah same. She says "I'm just going to login" but doesn't say how, can't figure it out!
@davedoan5684 Жыл бұрын
I wonder why do you need another linode instance which install docker?
@erickeliab_dev43555 ай бұрын
I didn't get that part too
@vrushalrt2 жыл бұрын
Thanks a lot most needed ...waiting for so far 😀
@thamaraie2 жыл бұрын
Thank you for making this video for learning myself.
@majidalikhanquaid9842 жыл бұрын
Well explained and easy to follow tutorial. Good Work
@queiroz-rafael2 жыл бұрын
Great material and great intro. Thanks for sharing!
@jujubawa28452 жыл бұрын
Wow wow wow.. Thanks a ton for this 🙏
@HoneyBadgerz2 жыл бұрын
Great video!! I have a question though... 20:09 did you used the the second server ie _freecodecamp-application_
@angelosnm2 жыл бұрын
Nice tutorial covering Jenkins at a glance. What is not mentioned though is a procedure of deploying an artifact in a server after this has been built from Jenkins. In general this a topic that I have devoted with and I haven't find any smooth way (like using a Jenkins plugin for example) to push your code to a server without just SSH to it and do your magic there with custom bash commands.
@uBastianX2 жыл бұрын
It depends. If you use kubernetes, you can upload your newly built image to your image repository, update the corresponding manifest and ArgoCD will automatically deploy it. I've built similar pipelines in which, with Jenkins running inside Kubernetes, it's deployed using Kubernete's rest API. If it's static content, you can use your infrastructure's API to update it at some pipeline's step, etc.
@jagadish862 жыл бұрын
I am using jenkins for cicd, in jenkins under manage Nodes and cloud --> left hand side we get configure cloud.. We usually create cloud instances manually adding ip, name of the slave machines..so that jenkins job could use Is their rest api I could use to create new cloud slave under configure cloud option ???
@vishalviswanathan98102 жыл бұрын
Please make more videos on Jenkins .
@BR-lx7py2 жыл бұрын
Having to install git/node/whatever on the build servers seems to be not ideal. What if different projects require different software versions? Is the best practice to run those tests in containers?
@angelosnm2 жыл бұрын
Definetely running tests with containers is a good practice as it exempts you from the obvious problems that you will face if not following this procedure. This can be easily configured by having something like the below under the Pipeline scope of Jenkinsfile. environment { JAVA_TOOL_OPTIONS = '-Duser.home=/var/maven' } agent { docker { image 'maven:3.8.1-jdk-11' args '-v /tmp/maven:/var/maven/.m2 -e MAVEN_CONFIG=/var/maven/.m2' } } I guess sth equivalent will exist for npm and other platforms as well.
@guythis7572 жыл бұрын
need to explain how to handle secure variables like dockerhub creds in pipelines in more detail, this is a pretty significant possible security flaw irl
@juanperaza54712 жыл бұрын
Hey Gwen! amazing content. :)
@tundebalogun75904 ай бұрын
A big Thank you!! ❤
@jimodey31082 жыл бұрын
I just literally finished now! Thanks Gwen and freecodecamp! It was fun!
@lechf12 жыл бұрын
Npm works without error?
@mazharansari781310 ай бұрын
Is this complete jenkins tutorial? And also are there any pre requisites?
@devihomes2 жыл бұрын
Great presentation and a good introduction for newbies
@DevOpsJourney2 жыл бұрын
Awesome to see. I also just posted a Jenkins Tutorial recently
@Web-mp7mp2 жыл бұрын
@13:54 downside: this requires payment/credit card for creating a linode account !!!
@yashaswitiwari9047 Жыл бұрын
what did you do? any free substitute?
@MrThsmith Жыл бұрын
You failed to discuss the dockerhub connection in the last section of this video. I checked part2 and it is not aligned with part1.
@blazed-space2 жыл бұрын
❤YES FINALLY!!!! Jenkins!!!!😂🎉🎉🎉🎉🎉😅😅😅😂😭😭😍😍😍
@blazed-space2 жыл бұрын
Btw: when she said security, she wasn’t kidding. I’ve checked many an SSH log to see Chinese or Russian hackers try to brute force my instances with username “jenkins”, so lock down your SSH host (private/public key, no password less login, no password login, additionally change the port)
@SandyLearner2 жыл бұрын
Thanks and Great for Upload !!! Make a Playlist contains all DevOps related Courses Like AWS , Azure, K8s,terraform,GitLab now Jenkins If possible Pls make Video on Python for DevOps with Automation / Ansible for DevOps . Which will sum-up to all existing DevOps related Courses 👍👍
@freecodecamp2 жыл бұрын
Good idea. kzbin.info/aero/PLWKjhJtqVAbkzvvpY12KkfiIGso9A_Ixs
@milad8436 Жыл бұрын
What a great course. Thank a lot
@anthonyk67072 жыл бұрын
hi Gwen, I wasn't able to move past the front-end test section as it was running into a validation error as the vue-jest module in the transform option was not found. Has anyone else run into this issue?
@hariprasadoo Жыл бұрын
Thank you for the tutorial!
@romansinitsky995310 ай бұрын
Did I missed the part where she had deployed artifact on the second instance? Why did she provision the second instance?
@PedroKing999 күн бұрын
Jenkins plug-ins are by third parties correct? If so how do we assess or evaluate their security. Seems like a major risk
@abhishekkumarjha15262 жыл бұрын
Just what I needed when I needed.
@taiuc29232 жыл бұрын
Could you guys make a data fundamentals full course pls
@FloridaInvestor7 ай бұрын
At minute 21:36 where did you find that white page saying unlock jenkins?
@JackSkeletonCoder7 ай бұрын
that page appears after u download jenkins for the first time and start the server. either by running the application in cmd/terminal or run in a server and connect to it like this tutorial
@david23582 жыл бұрын
Thank you, learned a lot!! 👍
@fuuman52 жыл бұрын
Nice tutorial. Thank you. One question: Every time I push server to the code, your pipeline would build a docker image. Would that fill up the server's filesystem with images or is Jenkins cleaning that up automatically? Or should I put another stage in the pipeline (after pushing it to the hub) to delete the image that was just built?
@naveengokavarapu52942 жыл бұрын
Very informative video
@eranxbe2 жыл бұрын
Very useful video, thanks!
@MrThsmith Жыл бұрын
I have the latest npm/node installed and keep getting npm WARN deprecated no matter what I install/uninstall.
@tusharbharane14842 жыл бұрын
Really thanks a lot free code camp 😌
@TaHrPa Жыл бұрын
Nice beginner tutorial. I have just one question - if the stage agent is set to "any" and we have Docker installed only on the "Docker" agent, then wouldn't it fail if the job is sent to the other agent?
@mazharansari781310 ай бұрын
Is this complete jenkins tutorial? And also are there any pre requisites?
@hariasimov21 Жыл бұрын
the part of docker is not complete, but its a fonemenal tutorial, thanks!!!
@elzosantos1253 Жыл бұрын
Hi, everything ok? I would like to congratulate you for your work, I would like to know if there is a way for me to create another Jenkins account, because I am a beginner and I used the "role-based strategy" plugin and I ended up not creating the permissions and now I log into my account, but I do not have the permissions in "windows"
@tljstewart2 жыл бұрын
How is your "Login" stage persisted to you "Push" stage? Aren't stages isolate environments, or do they persist variables and changes to the next stage?
@whatsap68512 жыл бұрын
Helpline📲📥⬆️ Questions can come in⬆️
@ngohcollinsjr94842 жыл бұрын
What are the biggest problems using Jenkins?
@-aprilsavvi2nd2 жыл бұрын
Becoming pls
@fallenIights2 жыл бұрын
Everything
@zafar57832 жыл бұрын
Thanks a lot ❤️
@aaronbaron64682 жыл бұрын
I wasn't ready for the plin plin plon name drop
@sumitmayanglambam53462 жыл бұрын
Can a Arduino uno control 4 motor individsually
@zolongOne Жыл бұрын
Does anyone know the password manager she was using?
@codigogo2 жыл бұрын
What's is the name of the password gestor that she use?
@rahmouni-mohamed2 жыл бұрын
So helpfull, thanks a lot
@asimal-tayeb53552 жыл бұрын
great content
@codingmoments2 жыл бұрын
Thnx for this video
@chalice27312 жыл бұрын
Can we build our own vpn system ?
@jonl3162 жыл бұрын
Thank you!!
@buntyrajput18242 жыл бұрын
Awesome 👍
@tusharbharane14842 жыл бұрын
@Free Code Camp can you please make a full course on Kubernetes
@olumayowaakinkuehinmi56792 жыл бұрын
Freecodecamp never disappoints.
@andreinegru61792 жыл бұрын
Hmm.. it's just me noticing you created a separate Linux machine with Docker but never used it ? But nice tutorial to start with Jenkins 👍
@prezlamen Жыл бұрын
What on Earth is problem for using bigger fonts? Some of us are vision impaired and we also need to watch and educate we cant see small fonts,every tutorial should be recorded with zoomed UI
@chanpreetsingh0072 жыл бұрын
Never disappoints.
@Alex-hr2df Жыл бұрын
Thank goodness for 2x play speed
@westernHypocricy Жыл бұрын
It's a typically CI/CD scam tutorial where the tutor smartly frauds the CD part😄. Deploying to dockerhub is not deployment. Deployment step should let your code reach to the server(s). What you are doing is "publishing a container" to dockerhub.
@darioromero70787 ай бұрын
Can you recommend s good course?
@sohelalamrana4 ай бұрын
Please
@fabc13000 Жыл бұрын
Linode doesn't seem to have that free for starters offer anymore.
@dimanranawaka2 жыл бұрын
Wow❤😍
@juandiegosilvagarcia17832 жыл бұрын
Beautiful 😍
@leninvalen1232 жыл бұрын
Thanks a lot for this, greetings ... by the way such a beautiful eyes je je
@saintkredo76732 жыл бұрын
Ну такое себе.. реклама облачных решений..
@AbdulHannanAbdulMatheen2 жыл бұрын
👏🙂
@hariranormal55842 жыл бұрын
ahh yes, Ol' Man Jenkins'
@mrrishiraj882 жыл бұрын
Gteat Thanks
@aces84812 жыл бұрын
LETSSSSGOOO
@anonymous_anonymity Жыл бұрын
Good tutorial. But demonstrating how to enter username and password was seriously unnecessary, unless you wanted to humiliate your viewers.
@jktamizhangaming88752 жыл бұрын
1st view and 1st like
@nossaamortobased96632 жыл бұрын
Up
@harshmalik2846 ай бұрын
why do i think this is AI generated LOL.
@pstrtk3661Ай бұрын
lol me too xd :(
@Festivejelly2 жыл бұрын
Presentation skills good do with some work tbh. Content is good but the delivery is a bit stale. Sounds like shes bored.