DevOps Lifecycle | Introduction To DevOps | DevOps Tools | What is DevOps? | Edureka Rewind
Skills:
CI/CD Pipelines70%
Key Takeaways
Explains DevOps lifecycle and its various phases
Full Transcript
hello guys this is arvind from edureka and I welcome you all to this session on devops life cycle so before we move any further let us have a quick look at the agenda for today's session we will begin our discussion with the topic why devops and in this topic we will cover a few pointers about the history of devops the second topic is what is devops and we will see how devops solves the problems of the previous software development models the final topic is the main topic of this session that is the devops lifecycle I hope I'm clear with the agenda guys just a reminder in case you have not yet subscribed to our YouTube Channel please do subscribe and also hit the Bell icon so that you're always updated about the latest videos from edureka so without wasting any further time let us begin this session with our first topic why devops so before devops we had this waterfall model of software development this model was a straightforward and a linear model that followed a top-down approach as you can see in this diagram it had various phases starting with requirement Gathering and Analysis in this phase you gather the requirements from the client for developing an application and then you analyze those requirements once you're clear with the requirements you proceed further with the design phase in this phase you think about how the software is going to look like and you prepare a blueprint of the software the next phase is the implementation phase where you begin the coding of the application once the application is developed it is tested in the verification phase after testing the application is deployed on the production servers and once the application goes live it is monitored in the maintenance phase so it looks like a perfect model guys isn't it but no this wasn't a perfect model since it had a few drawbacks one of the drawback of this model is unless you complete a particular stage you cannot proceed to the next stage this was a very time consuming model this model was suitable only for projects where requirements are stable by stable I mean the requirements will not change with the time but in today's world this is a very unlikely scenario because requirements keep on changing no working software is delivered until the final stage of the waterfall model also this model was not suitable for large projects and the object-oriented projects so these were a few drawbacks of the waterfall model the next model is the agile model in this model the software is broken down into various iterations each iteration has various phases such as planning design development and so on the duration of each iteration is generally two weeks to 8 weeks so what happens in agile model is you release the software in the first iteration after this you gather the feedback from the end users or the customers about the application and you try to incorporate those changes into the second iteration and then you again release the software into the market which is the second iteration you again repeat the same procedure and then you release the software again which is a third iteration and so on so this model was better than the previous model but this model 2 had a few drawbacks while this model brought agility to the development team the operations team still did not come up to speed with the development team because of this there was constant conflict between the development team and the operations team this conflict hampered the pace of the software development and the release so this was the biggest drawback of the agile model and the next model or the next approach is the devops approach so guys what is devops the term devops is a combination of two words namely development and operations devops is a practice which allows a single team to manage the entire application development life cycle that is development testing deployment and operations devops is a software development approach through which superior quality software can be developed quick and with more reliability devops consists of various stages such as continuous development continuous testing continuous integration continuous deployment and continuous monitoring the aim of devops is to shorten the system's development life cycle while delivering features fixes and updates frequently in close alignment with the business objectives as you can see in this diagram these are the various tools that are used in devops and now let us have a look at the devops lifecycle as you can see in this diagram these are the various phases of the devops life cycle that is continuous development continuous testing continuous integration continuous deployment and continuous monitoring now let us have a look at each of these phases one by one the first phase of the devops life cycle is continuous development this is the phase which involves planning and coding of the software applications functionality there are no tools for planning as such but there are a number of tools for maintaining the code the vision of the project is decided during the planning phase and then the actual coding of the application Begins the code can be written in any language but it is maintained using the Version Control tools these are the continuous development devops tools the most popular tools used are git SVN Mercurial CVS and jira also tools such as ant Maven and Gradle can be used for building or packaging the code into an executable file so that it can be forwarded to the next phases so guys tools like git enable communication between the development and the operations team and this was one of the drawbacks of the previous model that is the agile model so now let us have a look at the Version Control tool called get git is a distributed Version Control tool that supports distributed non-linear workflows by providing data Assurance for developing quality software when you are developing a large project with a huge number of collaborators it is very important to have communication between the collaborators while making changes in the project so imagine a scenario if you are a team of 10 developers and you're working on a project so now what happens is if a developer commits an any change into the code and that change causes an error so now how will you track down which developer made a word change into the code and how to solve that error so here tools such as get solved the problems related to maintaining the code what happens in git is there is one Central repository or the main server where the code of your application is present and there is also one local repository where you can also have the code for your application you can fetch the code from the main server to the local repository using pull and using push you can forward the code from the local repository onto the main repository or the main server also this is the working directory or your workspace where you develop the application and you can fetch the code from the local repository onto your working directory using update using commit you can forward the code from your working directory to the local repository so this is an overview about the git so now why do we use git imagine for any reason this server or the main repository crashes or is unavailable so in such a scenario the local repository still has the code for your application so this is an advantage of using tools such as git so this was all about continuous development the next stage of the devops life cycle is continuous integration this is the stage where the code supporting new functionality is integrated with the existing code since there is continuous development of the software the updated code needs to be integrated continuously as well as smoothly with the systems to reflect the changes to the end users the changed code should also ensure that there are no errors during the runtime which allows us to test the changes and check how it reacts with other changes so there's one very popular tool that is used in this phase which is known as Jenkins using Jenkins one can pull the latest core revision from the get repository and produce a build which can be finally deployed to the test servers or the production servers so let me put this in simpler words guys imagine if a developer commits any change onto the code which is available on the get repository as soon as there is change in this code on the get repository Jenkins will fetch that code and it will produce a build this build is nothing but an executable file which is in the form of a jar file or a war file and this build can be forwarded to the next stages that is either the production servers or the test servers so this was all about continuous integration the next phase of the devops lifecycle is continuous testing this is the stage where the developed software is continuously tested for bugs for continuous testing automation testing tools such as selenium test NG junit Etc are used these tools allow the qas to test the multiple code bases thoroughly and parallel to ensure that there are no flaws in the functionality in this phase you can make use of Docker containers for simulating test environment selenium does the automation testing and the reports are generated by testancy but to automate this entire testing phase you need a trigger and that trigger is provided by The Continuous integration tool such as Jenkins automation testing saves a lot of time effort and labor for executing the test cases besides that report generation is a big plus the task of evaluating which test cases failed in the test suit gets simpler these tests can also be scheduled for Execution at predefined times once the code is tested it is continuously integrated with the existing code so this was all about continuous testing the next phase of the devops lifecycle is continuous deployment it is the stage where the code is deployed to the production environment here we ensure that the code is correctly deployed on all the servers now it is the time to understand why devops will be incomplete without configuration management tools and containerization tools both the set of tools help us in achieving continuous deployment configuration management is the act of establishing and maintaining consistency in an application's functional requirements and performance so let me put this in simpler words it is the act of releasing deployments to servers scheduling updates on all the servers and most importantly keeping the configurations consistent across all the servers since the new code is deployed on a container basis configuration management tools play an important role for executing tasks quickly and frequently some popular tools that are used in this stage are puppet Chef salt snack and ansible containerization tools also play an equally important role in the deployment stage Docker and vagrant are the popular tools which help produce consistency across the development test staging and the production environments besides this they also help in scaling up and scaling down of instances easily it eliminates any chance of errors or failures in the production environment by packaging and replicating the same dependencies and packages used in the development testing and the staging environment so this was all about the continuous deployment the final phase of the devops life cycle is continuous monitoring this is a very crucial stage in the devops life cycle which is aimed at improving the quality of the software by monitoring its performance this practice involves the participation of the operations team who will monitor the user activity for any bugs or improper behavior of the system this can also be achieved by making use of dedicated monitoring tools which will continuously monitor the application performance and highlight the issues some popular tools used are Splunk elk stack nagios New Relic and so on these tools help you monitor the application and the servers closely to check the health of the system proactively they can also improve the productivity and increase the reliability of the system reducing it support costs any major issues found could be reported to the development team so that it can be fixed in the continuous development phase these devops stages are carried out on Loop continuously until the desired product quality is achieved so guys this was all about devops life cycle in this session from my site I hope you have enjoyed the session if you have any queries related to this session you can write them in the comment box below thank you so much for being with us
Original Description
🔥𝐄𝐝𝐮𝐫𝐞𝐤𝐚 𝐃𝐞𝐯𝐎𝐩𝐬 𝐜𝐞𝐫𝐭𝐢𝐟𝐢𝐜𝐚𝐭𝐢𝐨𝐧 𝐭𝐫𝐚𝐢𝐧𝐢𝐧𝐠 : https://www.edureka.co/devops-certification-training (𝐔𝐬𝐞 𝐂𝐨𝐝𝐞: 𝐘𝐎𝐔𝐓𝐔𝐁𝐄𝟐𝟎)
This Edureka video on ‘DevOps Lifecycle’ will discuss various phases that constitute DevOps Lifecycle. This DevOps video will focus on pointers like:
00:00:00 Introduction
00:00:19 Agenda
00:00:57 Why DevOps
00:03:28 What is DevOps
00:04:17 DevOps Lifecycle
00:04:36 Continuous development
00:07:12 Continuous Integration
00:08:21 Continuous Testing
00:09:27 Continuous Deployment
00:10:56 Continuous Monitoring
🔴 Subscribe to our channel to get video updates. Hit the subscribe button above: https://goo.gl/6ohpTV
📝Feel free to share your comments below.📝
🔴 𝐄𝐝𝐮𝐫𝐞𝐤𝐚 𝐎𝐧𝐥𝐢𝐧𝐞 𝐓𝐫𝐚𝐢𝐧𝐢𝐧𝐠 𝐚𝐧𝐝 𝐂𝐞𝐫𝐭𝐢𝐟𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬
🔵 DevOps Online Training: http://bit.ly/3VkBRUT
🌕 AWS Online Training: http://bit.ly/3ADYwDY
🔵 React Online Training: http://bit.ly/3Vc4yDw
🌕 Tableau Online Training: http://bit.ly/3guTe6J
🔵 Power BI Online Training: http://bit.ly/3VntjMY
🌕 Selenium Online Training: http://bit.ly/3EVDtis
🔵 PMP Online Training: http://bit.ly/3XugO44
🌕 Salesforce Online Training: http://bit.ly/3OsAXDH
🔵 Cybersecurity Online Training: http://bit.ly/3tXgw8t
🌕 Java Online Training: http://bit.ly/3tRxghg
🔵 Big Data Online Training: http://bit.ly/3EvUqP5
🌕 RPA Online Training: http://bit.ly/3GFHKYB
🔵 Python Online Training: http://bit.ly/3Oubt8M
🌕 Azure Online Training: http://bit.ly/3i4P85F
🔵 GCP Online Training: http://bit.ly/3VkCzS3
🌕 Microservices Online Training: http://bit.ly/3gxYqqv
🔵 Data Science Online Training: http://bit.ly/3V3nLrc
🌕 CEHv12 Online Training: http://bit.ly/3Vhq8Hj
🔵 Angular Online Training: http://bit.ly/3EYcCTe
🔴 𝐄𝐝𝐮𝐫𝐞𝐤𝐚 𝐑𝐨𝐥𝐞-𝐁𝐚𝐬𝐞𝐝 𝐂𝐨𝐮𝐫𝐬𝐞𝐬
🔵 DevOps Engineer Masters Program: http://bit.ly/3Oud9PC
🌕 Cloud Architect Masters Program: http://bit.ly/3OvueZy
🔵 Data Scientist Masters Program: http://bit.ly/3tUAOiT
���
Watch on YouTube ↗
(saves to browser)
Sign in to unlock AI tutor explanation · ⚡30
Playlist
Uploads from edureka! · edureka! · 41 of 60
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
▶
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
ChatGPT Not Working - 4 Fixes | How To Fix ChatGPT Not Working | Why Is ChatGPT Not Working |Edureka
edureka!
Advanced Java script Tutorial | JavaScript Training | JavaScript Programming | Edureka Rewind
edureka!
Java script interview question and answers | Java script training | Edureka Rewind
edureka!
OpenAI API Tutorial using Python | How to use OpenAI GPT-3 API - Ada Babbage Curie Davinci | Edureka
edureka!
What is Unsupervised Learning ? | Unsupervised Learning Algorithms| Machine Learning | Edureka
edureka!
Top 10 Applications of Machine Learning in 2023 | Machine Learning Training | Edureka Rewind - 7
edureka!
Machine Learning Engineer Career Path in 2023 | Machine Learning Tutorial | Edureka Rewind - 6
edureka!
10 Must Have Machine Learning Engineer Skills That Will Get You Hired | Edureka Rewind - 7
edureka!
Data Structures in Python | Data Structures and Algorithms in Python | Edureka | Python Live - 5
edureka!
Python Lists | List in Python | Python Training | Edureka Rewind
edureka!
Predictive Analysis Using Python | Learn to Build Predictive Models | Python Training | Edureka
edureka!
Machine Learning Tutorial | Machine Learning Algorithm | Machine Learning Engineer Program | Edureka
edureka!
How to use Pandas in Python | Python Pandas Tutorial | Python Tutorial | Edureka Rewind
edureka!
Parameters in Tableau | Tableau Parameters Examples | Tableau Tutorial | Edureka Rewind
edureka!
Top 10 Reasons to Learn Tableau in 2023 | Tableau Certification | Tableau | Edureka Rewind
edureka!
Tableau Developer Roles & Responsibilities | Become A Tableau Developer | Tableau | Edureka Rewind
edureka!
Deep Learning With Python | Deep Learning Tutorial For Beginners | Edureka Rewind
edureka!
Realtime Object Detection | Object Detection with TensorFlow | Edureka | Deep Learning Rewind - 2
edureka!
Top 20 Tableau Tips and Tricks in 20 Minutes | Tableau Tutorial | Tableau Training | Edureka Rewind
edureka!
Climate Change Prediction using Time Series | Python Projects | Edureka | DS Rewind - 5
edureka!
ReactJS Installation Tutorial | ReactJS Installation On Windows | ReactJS Tutorial | Edureka Rewind
edureka!
Phases in Cybersecurity | Cybersecurity Training | Edureka | Cybersecurity Rewind - 2
edureka!
What Is React | ReactJS Tutorial for Beginners | ReactJS Training | Edureka Rewind
edureka!
Cybersecurity Frameworks Tutorial | Cybersecurity Training | Edureka | Cybersecurity Rewind- 2
edureka!
React vs Angular 4 | Angular 2 vs React | React & Angular | ReactJS Training | Edureka Rewind - 5
edureka!
ReactJS Components Life-Cycle Tutorial | React Tutorial for Beginners | Edureka Rewind
edureka!
Ethical Hacking using Kali Linux | Ethical Hacking Tutorial | Edureka | Cybersecurity Rewind - 3
edureka!
Types Of Artificial Intelligence | Artificial Intelligence Explained | What is AI? | Edureka
edureka!
Top 10 Applications Of Artificial Intelligence in 2023 | Artificial Intelligence| Edureka Rewind
edureka!
The Future of AI | How will Artificial Intelligence Change the World in 2023? | Edureka Rewind
edureka!
What is Artificial Intelligence | Artificial Intelligence Tutorial For Beginners | Edureka Rewind
edureka!
Google Cloud IAM | Identity & Access Management on GCP | Edureka | GCP Rewind - 5
edureka!
Google Cloud AI Platform Tutorial | Google Cloud AI Platform | GCP Training | Edureka Rewind
edureka!
Projects in Google Cloud Platform | GCP Project Structure | GCP Training | Edureka Rewind
edureka!
How to Become a Data Scientist | Data Scientist Skills | Data Science Training | Edureka Rewind - 3
edureka!
Agglomerative and Divisive Hierarchical Clustering Explained | Data Science Training | Edureka Live
edureka!
Climate Change Prediction using Time Series | Python Projects | Edureka | DS Rewind - 5
edureka!
Data Science Project - Covid-19 Data Analysis | Python Training | Edureka | DS Rewind - 6
edureka!
What is Honeycode? | Introduction to Honeycode | Edureka
edureka!
Difference between Amazon AWS and Google Cloud | GCP Training Google Cloud | Edureka Live
edureka!
DevOps Lifecycle | Introduction To DevOps | DevOps Tools | What is DevOps? | Edureka Rewind
edureka!
Introduction to DevOps | DevOps Tutorial for Beginners | DevOps Tools | DevOps | Edureka Rewind
edureka!
How to Create Login System using Python | Python Programming Tutorial | Edureka Rewind
edureka!
Python Developer | How to become Python Developer | Python Tutorial | Edureka Rewind
edureka!
How to become a Data Engineer | Complete Roadmap to become a Data Engineer| Data Engineer | Edureka
edureka!
Azure Data Engineer Certification [DP 203] | How to Become Azure Data Engineer [2023] | Edureka
edureka!
Data Analyst vs Data Engineer vs Data Scientist | Data Analytics Masters Program | Edureka Rewind
edureka!
DevOps Engineer day-to-day Activities | DevOps Engineer Responsibilities | Edureka Rewind
edureka!
How to Become a DevOps Engineer? | DevOps Engineer Roadmap | Edureka | DevOps Rewind
edureka!
How to Become a Data Engineer? | Data Engineering Training | Edureka
edureka!
How To Become A Big Data Engineer? | Big Data Engineer Roadmap | Edureka Rewind
edureka!
Python Integration for Power BI and Predictive Analytics | Power BI Training | Edureka
edureka!
Power BI KPI Indicators Tutorial | Custom Visuals In Power BI | Power BI Training | Edureka Rewind
edureka!
Apache HBase Tutorial For Beginners | What is Apache HBase? | Big Data Training | Edureka Rewind
edureka!
Big Data Hadoop Tutorial For Beginners | Hadoop Training | Big Data Tutorial | Edureka Rewind
edureka!
Big Data Analytics | Big Data Analytics Use-Cases | Big Data Tutorial | Edureka Rewind
edureka!
What Is Power BI? | Introduction To Microsoft Power BI | Power BI Training | Edureka Rewind
edureka!
Triggers in Salesforce | Salesforce Apex Triggers | Salesforce Tutorial | Edureka Rewind
edureka!
How To Become A Salesforce Developer | Salesforce For Beginners| Salesforce Training Edureka Rewind
edureka!
Java ArrayList Tutorial | Java ArrayList Examples | Java Tutorial | Edureka Rewind
edureka!
More on: CI/CD Pipelines
View skill →Related Reads
📰
📰
📰
📰
Repository-Level Copilot Metrics Need a Cardinality Budget Before Export
Dev.to · Odd_Background_328
Make Copilot Review Configuration Observable From Pull Request to Finding
Dev.to · kongkong
Docker Build Cache Is Fast Until One COPY Line Invalidates Everything
Medium · DevOps
Most Developers Use the Terminal Like This — Here’s a Better Way
Medium · Data Science
Chapters (10)
Introduction
0:19
Agenda
0:57
Why DevOps
3:28
What is DevOps
4:17
DevOps Lifecycle
4:36
Continuous development
7:12
Continuous Integration
8:21
Continuous Testing
9:27
Continuous Deployment
10:56
Continuous Monitoring
🎓
Tutor Explanation
DeepCamp AI