DevOps is a methodology in the software development and IT industry. Used as a set of practices and tools, DevOps integrates and automates the work of software development (Dev) and IT operations (Ops) as a means for improving and shortening the systems development life cycle.[1] DevOps is complementary to agile software development; several DevOps aspects came from the agile way of working.
Other than it being a cross-functional combination (and a portmanteau) of the terms and concepts for "development" and "operations", academics and practitioners have not developed a universal definition for the term "DevOps".[a][b][c][d] Most often, DevOps is characterized by key principles: shared ownership, workflow automation, and rapid feedback.
From an academic perspective, Len Bass, Ingo Weber, and Liming Zhu—three computer science researchers from the CSIRO and the Software Engineering Institute—suggested defining DevOps as "a set of practices intended to reduce the time between committing a change to a system and the change being placed into normal production, while ensuring high quality".[6]
However, the term is used in multiple contexts. At its most successful, DevOps is a combination of specific practices, culture change, and tools.[7]
History
Proposals to combine software development methodologies with deployment and operations concepts began to appear in the late 80s and early 90s.[8]
Around 2007 and 2008, concerns were raised by those within the software development and IT communities that the separation between the two industries, where one wrote and created software entirely separate from those that deploy and support the software was creating a fatal level of dysfunction within the industry.[9]
In 2009, the first conference named DevOps Days was held in Ghent, Belgium. The conference was founded by Belgian consultant, project manager and agile practitioner Patrick Debois.[10][11] The conference has now spread to other countries.[12]
In 2012, a report called "State of DevOps" was first published by Alanna Brown at Puppet Labs.[13][14]
As of 2014, the annual State of DevOps report was published by Nicole Forsgren, Gene Kim, Jez Humble and others. They stated that the adoption of DevOps was accelerating.[15][16] Also in 2014, Lisa Crispin and Janet Gregory wrote the book More Agile Testing, containing a chapter on testing and DevOps.[17][18]
In 2016, the DORA metrics for throughput (deployment frequency, lead time for changes), and stability (mean time to recover, change failure rate) were published in the State of DevOps report.[13] However, the research methodology and metrics were criticized by experts.[19][20][21][22] In response to these criticisms, the 2023 State of DevOps report [23] published changes that updated the stability metric "mean time to recover" to "failed deployment recovery time" acknowledging the confusion the former metric has caused.[24]
Relationship to other approaches
Many of the ideas fundamental to DevOps practices are inspired by, or mirror, other well known practices such as Lean and Deming'sPlan-Do-Check-Act cycle, through to The Toyota Way and the Agile approach of breaking down components and batch sizes.[25] Contrary to the "top-down" prescriptive approach and rigid framework of ITIL in the 1990s, DevOps is "bottom-up" and flexible, having been created by software engineers for their own needs.[26]
The motivations for what has become modern DevOps and several standard DevOps practices such as automated build and test, continuous integration, and continuous delivery originated in the Agile world, which dates (informally) to the 1990s, and formally to 2001. Agile development teams using methods such as extreme programming couldn't "satisfy the customer through early and continuous delivery of valuable software"[27] unless they took responsibility for operations and infrastructure for their applications, automating much of that work. Because Scrum emerged as the dominant Agile framework in the early 2000s and it omitted the engineering practices that were part of many Agile teams, the movement to automate operations and infrastructure functions splintered from Agile and expanded into what has become modern DevOps. Today, DevOps focuses on the deployment of developed software, whether it is developed using Agile oriented methodologies or other methodologies.
ArchOps
ArchOps presents an extension for DevOps practice, starting from software architecture artifacts, instead of source code, for operation deployment.[28] ArchOps states that architectural models are first-class entities in software development, deployment, and operations.
Automation is a core principle for achieving DevOps success and CI/CD is a critical component.[29] Plus, improved collaboration and communication between and within teams helps achieve faster time to market, with reduced risks.[30]
Mobile DevOps is a set of practices that applies the principles of DevOps specifically to the development of mobile applications. Traditional DevOps focuses on streamlining the software development process in general, but mobile development has its own unique challenges that require a tailored approach.[31] Mobile DevOps is not simply as a branch of DevOps specific to mobile app development, instead an extension and reinterpretation of the DevOps philosophy due to very specific requirements of the mobile world.
In 2003, Google developed site reliability engineering (SRE), an approach for releasing new features continuously into large-scale high-availability systems while maintaining high-quality end-user experience.[32] While SRE predates the development of DevOps, they are generally viewed as being related to each other. Some of the original authors of the discipline consider SRE as an implementation of DevOps.[33]
DevSecOps is an augmentation of DevOps to allow for security practices to be integrated into the DevOps approach. Contrary to a traditional centralized security team model, each delivery team is empowered to factor in the correct security controls into their software delivery. Security practices and testing are performed earlier in the development lifecycle, hence the term "shift left". Security is tested in three main areas: static, software composition, and dynamic.
Checking software statically via static application security testing (SAST) is white-box testing with special focus on security. Depending on the programming language, different tools are needed to do such static code analysis. The software composition is analyzed, especially libraries, and the version of each component is checked against vulnerability lists published by CERT and other expert groups. When giving software to clients, library licenses and their match to the license of the software distributed are in focus, especially copyleft licenses.
DevSecOps has also been described as a cultural shift involving a holistic approach to producing secure software by integrating security education, security by design, and security automation.[37]
Cultural change
DevOps initiatives can create cultural changes in companies[38] by transforming the way operations, developers, and testers collaborate during the development and delivery processes.[39] Getting these groups to work cohesively is a critical challenge in enterprise DevOps adoption.[40][41] DevOps is as much about culture as it is about the toolchain.[42]
Microservices
Although in principle it is possible to practice DevOps with any architectural style, the microservices architectural style is becoming the standard for building continuously deployed systems. Small size service allows the architecture of an individual service to emerge through continuous refactoring.[43]
DevOps automation
It also supports consistency, reliability, and efficiency within the organization, and is usually enabled by a shared code repository or version control. As DevOps researcher Ravi Teja Yarlagadda hypothesizes, "Through DevOps, there is an assumption that all functions can be carried out, controlled, and managed in a central place using a simple code."[44]
Automation with version control
Many organizations use version control to power DevOps automation technologies like virtual machines, containerization (or OS-level virtualization), and CI/CD. The paper "DevOps: development of a toolchain in the banking domain" notes that with teams of developers working on the same project, "All developers need to make changes to the same codebase and sometimes edit even the same files. For efficient working, there has to be a system that helps engineers avoid conflicts and retain the codebase history,"[45] with the Git version control system and the GitHub platform referenced as examples.
GitOps
GitOps evolved from DevOps. The specific state of deployment configuration is version-controlled. Because the most popular version-control is Git, GitOps' approach has been named after Git. Changes to configuration can be managed using code review practices, and can be rolled back using version-controlling. Essentially, all of the changes to a code are tracked, bookmarked, and making any updates to the history can be made easier. As explained by Red Hat, "visibility to change means the ability to trace and reproduce issues quickly, improving overall security."[46]
Best practices for cloud systems
The following practices can enhance productivity of DevOps pipelines, especially in systems hosted in the cloud: [47][48][49]
Number of Pipelines: Small teams can be more productive by having one repository and one pipeline. In contrast, larger organizations may have separate repositories and pipelines for each team or even separate repositories and pipelines for each service within a team.
Permissions: In the context of pipeline-related permissions, adhering to the principle of least privilege can be challenging due to the dynamic nature of architecture. Administrators may opt for more permissive permissions while implementing compensating security controls to minimize the blast radius.
^Dyck et al. (2015) "To our knowledge, there is no uniform definition for the terms release engineering and DevOps. As a consequence, many people use their own definitions or rely on others, which results in confusion about those terms."[3]
^Jabbari et al. (2016) "The research results of this study showed the need for a definition as individual studies do not consistently define DevOps."[4]
^Erich et al. (2017) "We noticed that there are various gaps in the study of DevOps: There is no consensus of what concepts DevOps covers, nor how DevOps is defined."[5]
^Erich et al. (2017) "We discovered that there exists little agreement about the characteristics of DevOps in the academic literature."[5]
^Fundamentals of Software Architecture: An Engineering Approach. O'Reilly Media. 2020. ISBN978-1492043454.
^Dyck, Andrej; Penners, Ralf; Lichter, Horst (2015-05-19). "Towards Definitions for Release Engineering and DevOps". 2015 IEEE/ACM 3rd International Workshop on Release Engineering. IEEE. p. 3. doi:10.1109/RELENG.2015.10. ISBN978-1-4673-7070-7. S2CID4659735.
^Jabbari, Ramtin; bin Ali, Nauman; Petersen, Kai; Tanveer, Binish (May 2016). "What is DevOps?: A Systematic Mapping Study on Definitions and Practices". Proceedings of the 2016 Scientific Workshop. Association for Computing Machinery.
^Muñoz, Mirna; Negrete Rodríguez, Mario (April 2021). "A guidance to implement or reinforce a DevOps approach in organizations: A case study". {{cite journal}}: Cite journal requires |journal= (help)
^Chapman, M., Gatti, N: A model of a service life cycle, Proceedings of TINA '93, pp. I-205–I-215, Sep., 1993.
^Debois, Patrick (9 October 2008). "Agile 2008 Toronto". Just Enough Documented Information. Retrieved 12 March 2015.
^Debois, Patrick. "DevOps Days". DevOps Days. Retrieved 31 March 2011.
^ abAlana Brown; Nicole Forsgren; Jez Humble; Nigel Kersten; Gene Kim (2016). "2016 State of DevOps Report"(PDF). Puppet Labs, DORA (DevOps Research. Retrieved 2024-04-24.
^Nicole Forsgren; Gene Kim; Nigel Kersten; Jez Humble (2014). "2014 State of DevOps Report"(PDF). Puppet Labs, IT Revolution Press and ThoughtWorks. Retrieved 2024-04-24.
^DeBellis, Derek; Lewis, Amanda; Villalba, Daniella; Farley, Dave. "2023 State of DevOps Report". Google Cloud DevOps Research and Assessment. Retrieved 2024-04-24.
^Castellanos, Camilo; Correal, Dario (15 September 2018). "Executing Architectural Models for Big Data Analytics". Software Architecture. Lecture Notes in Computer Science. Vol. 11048. pp. 364–371. doi:10.1007/978-3-030-00761-4_24. ISBN978-3-030-00760-7.
^Humble, Jez; Farley, David (2011). Continuous Delivery: reliable software releases through build, test, and deployment automation. Pearson Education Inc. ISBN978-0-321-60191-9.
^Tak, Rohin; Modi, Jhalak (2018). Mobile DevOps: Deliver continuous integration and deployment within your mobile applications. Packt Publishing. pp. 12–18. ISBN9781788296243.
^Beyer, Betsy; Jones, Chris; Petoff, Jennifer; Murphy, Niall Richard (April 2016). Site Reliability Engineering. O'Reilly Media. ISBN978-1-4919-2909-4.
^Gene Kim; Patrick Debois; John Willis; Jezz Humble (2016). The DevOps Handbook: How to Create World-Class Agility, Reliability, and Security in Technology Organizations.
^Chen, Lianping; Ali Babar, Muhammad (2014). "2014 IEEE/IFIP Conference on Software Architecture". The 11th Working IEEE/IFIP Conference on Software Architecture(WICSA 2014). IEEE. pp. 195–204. doi:10.1109/WICSA.2014.45. ISBN978-1-4799-3412-6.
^Teja Yarlagadda, Ravi (9 March 2021). "DevOps and Its Practices". SSRN3798877.
^Pipeline as Code Continuous Delivery with Jenkins, Kubernetes, and Terraform. Manning. ISBN9781638350378.
^Continuous Delivery Reliable Software Releases Through Build, Test, and Deployment Automation. ISBN9780321670229.
Further reading
Davis, Jennifer; Daniels, Ryn (2016-05-30). Effective DevOps : building a culture of collaboration, affinity, and tooling at scale. Sebastopol, CA: O'Reilly. ISBN9781491926437. OCLC951434424.
Kim, Gene; Debois, Patrick; Willis, John; Humble, Jez; Allspaw, John (2015-10-07). The DevOps handbook : how to create world-class agility, reliability, and security in technology organizations (First ed.). Portland, OR. ISBN9781942788003. OCLC907166314.{{cite book}}: CS1 maint: location missing publisher (link)
Forsgren, Nicole; Humble, Jez; Kim, Gene (27 March 2018). Accelerate: The Science of Lean Software and DevOps: Building and Scaling High Performing Technology Organizations (First ed.). IT Revolution Press. ISBN9781942788331.
Dalam nama Tionghoa ini, nama keluarganya adalah Qian. Qian ZhongshuLahir(1910-11-21)21 November 1910Wuxi, JiangsuMeninggal19 Desember 1998(1998-12-19) (umur 88)BeijingKebangsaanTemplat:QINGTemplat:ROC-1928 TiongkokAlmamaterUniversitas TsinghuaExeter College, OxfordSuami/istriYang Jiang (m. 1935)AnakQian Yuan [zh]Orang tuaQian Jibo [zh] Qian Zhongshu (21 November 1910 – 19 Desember 1998), juga ditransliterasika...
Старое христианское кладбищеВоронцовское, Преображенское или 1-е Христианское кладбище Страна Украина Координаты 46°28′00″ с. ш. 30°43′50″ в. д.HGЯO Дата основания 1790-е Первое захоронение 1790-е Последнее захоронение 1920-е Прежние названия Первое христианское кладбищ...
American pop artist (1923–1997) Roy LichtensteinLichtenstein in 1967BornRoy Fox Lichtenstein(1923-10-27)October 27, 1923New York City, U.S.DiedSeptember 29, 1997(1997-09-29) (aged 73)New York City, U.S.EducationTimothy Dwight School, Parsons School of Design[1]Alma materOhio State UniversityKnown forPainting, sculptureNotable work Look Mickey (1961) Drowning Girl (1963) In the Car (1963) Whaam! (1963) Oh, Jeff...I Love You, Too...But... (1964) Girl with Hair Ribbon (1...
Кубок Шпенглера 1979 Загальні відомості Країна проведення: Швейцарія Час проведення: 26 грудня - 31 грудня Кількість команд: 5 Міста проведення: Давос Призери Переможець: Крила Рад[1] Статистика турніру ← 1978 1980 → Кубок Шпенглера 1979 — 53-й традиційний тур...
Città metropolitana di Veneziacittà metropolitana Città metropolitana di Venezia – Veduta LocalizzazioneStato Italia Regione Veneto AmministrazioneCapoluogoVenezia Sindaco metropolitanoLuigi Brugnaro (CI) dal 31-8-2015 Data di istituzione8 aprile 2014 TerritorioCoordinatedel capoluogo45°26′23″N 12°19′55″E / 45.439722°N 12.331944°E45.439722; 12.331944 (Città metropolitana di Venezia)Coordinate: 45°26′23″N 12°19′55″E / ...
الضربة الجوية السورية في حرب تشرين جزء من حرب أكتوبر جبهة الجولان خلال حرب تشرين معلومات عامة التاريخ 6 أكتوبر 1973 الموقع هضبة الجولان وشمال إسرائيل النتيجة تضرر بعض منشآت الجيش الإسرائيلي المتحاربون القوات الجوية العربية السورية القوات الجوية المصرية (السرب 15) الجيش الإس...
German-American architect (1883–1969) Walter GropiusPortrait by Louis Held, c. 1919BornWalter Adolph Georg Gropius(1883-05-18)18 May 1883Berlin, Kingdom of Prussia, German EmpireDied5 July 1969(1969-07-05) (aged 86)Boston, Massachusetts, U.S.OccupationArchitectSpouses Alma Mahler (m. 1915; div. 1920) Ise Gropius (m. 1923) Children2, including ManonAwards AIA Gold Medal (1959) Albert Medal (196...
Women's 500 metres speed skatingat the III Olympic Winter GamesPictogram for speed skatingVenueJames B. Sheffield Olympic Skating RinkDate8 February 1932Competitors10 from 2 nationsWinning time58.0 Speed skating at the1932 Winter Olympics500 mmenwomen1000 mwomen1500 mmenwomen5000 mmen10,000 mmenvte The 500 metres speed skating event for women was part of the demonstration sport programme of the 1932 Winter Olympics. The competition was held on Monday, February 8, 1932. Ten speed ska...
Line-of-business security software by Microsoft Corporation This article relies excessively on references to primary sources. Please improve this article by adding secondary or tertiary sources. Find sources: Microsoft Forefront – news · newspapers · books · scholar · JSTOR (September 2011) (Learn how and when to remove this template message) Microsoft Forefront logo Microsoft Forefront is a discontinued family of line-of-business security software by ...
American soccer player Kat Williamson Personal informationFull name Kathryn Emily Williamson[1]Date of birth (1989-08-01) August 1, 1989 (age 34)Place of birth McKinney, TexasHeight 5 ft 6 in (1.68 m)Position(s) DefenderCollege careerYears Team Apps (Gls)2008–2012 Florida Gators 81 Senior career*Years Team Apps (Gls)2012 Ottawa Fury Women 12 (0)2013 Portland Thorns FC 22 (0)2014 Western New York Flash 21 (0)2015–2016 Portland Thorns FC 25 (1)International caree...
Psychiatric hospital in Lambeth, London Hospital in London, EnglandLambeth HospitalSouth London and Maudsley NHS Foundation TrustEntrance to the hospitalLocation within LambethGeographyLocationStockwell, London, EnglandCoordinates51°28′00″N 0°07′23″W / 51.4666°N 0.1231°W / 51.4666; -0.1231OrganisationCare systemNational Health ServiceTypeSpecialistAffiliated universityKing's College LondonServicesEmergency departmentnoBeds79SpecialityPsychiatric hospitalLin...
Austrian footballer (1931–2019) Walter HorakPersonal informationFull name Walter HorakDate of birth (1931-06-01)1 June 1931Place of birth Marchegg, AustriaDate of death 24 December 2019(2019-12-24) (aged 88)Place of death Vienna, AustriaHeight 1.79 m (5 ft 10 in)Position(s) StrikerYouth career Marchegg FC Stadlau LeopoldsdorfSenior career*Years Team Apps (Gls)1954–1959 Wiener Sport Club 121 (83)1959–1960 SC Wacker Wien 9 (1)1961 Grazer AK 12 (3)1961–1962 Austria Wi...
Internet electronic music station Proton Radio logo. Proton Radio is an internet electronic music station founded in 2002 by Sam Packer, Alex Ambroziak, and Eric Liberda. The station features over 200 exclusive shows from various DJs around the world, including guest DJ sets from DJs such as Sasha, Luke Chable, James Zabiela, Anthony Pappa, Kasey Taylor, Lance Cashion, Oliver Lieb, Way Out West, and others. Since 2003, they have also staged an event at the annual Winter Music Conference.[...
Mathematical concept Not to be confused with multiplicative inverse or additive inverse. A function f and its inverse f −1. Because f maps a to 3, the inverse f −1 maps 3 back to a. Functionx ↦ f (x) History of the function concept Examples of domains and codomains X {\displaystyle X} → B {\displaystyle \mathbb {B} } , B {\displaystyle \mathbb {B} } → X {\displaystyle X} , B n {\displaystyle \mathbb {B} ^{n}} → X {\displaystyle X} X {\displaystyle X} → Z {\displaystyle...
Egyptian scientist Farouk El-Bazفاروق البازBorn (1938-01-02) January 2, 1938 (age 85)Zagazig, Kingdom of EgyptCitizenshipEgyptUnited StatesAlma materAin Shams UniversityMissouri University of Science and TechnologyKnown forProject ApolloAwardsNASA's Apollo Achievement Award Exceptional Scientific Achievement MedalCertificate of Merit of the World Aerospace Education OrganizationRepublic of Egypt Order of Merit - First Class1989 Outstanding Achievement Award of the Egy...
1976 studio album by Carlos do CarmoUma Canção para a EuropaStudio album by Carlos do CarmoReleased1976GenreFadoLabelMovieplayCarlos do Carmo chronology Carlos do Carmo com Guitarras(1975) Uma Canção para a Europa(1976) Um Homem na Cidade(1977) Uma Canção para a Europa is an album by fado singer Carlos do Carmo. It was released in 1976 on the Movieplay label.[1][2] The album included the single Uma flor de verde pinho which was entered in Eurovision Song Contest ...
Mexican mixed martial artist José Alberto QuiñónezUFC Fight Night 94 weigh-inBornJosé Alberto Quiñónez Navarro [1] (1990-07-28) July 28, 1990 (age 33)Tlaltenango, Zacatecas, MexicoOther namesEl TecoNationalityMexicanHeight5 ft 8 in (1.73 m)Weight61 kg (134 lb; 9 st 8 lb)DivisionBantamweightReach69 in (175 cm)[2]StyleWrestling, Boxing, BJJFighting out ofTijuana, Baja California, MexicoTeamLa academia “Delincuentes MMA”...
В Википедии есть статьи о других людях с такой фамилией, см. Дьяконов; Дьяконов, Игорь. Игорь Михайлович Дьяконов Дата рождения 30 декабря 1914 (12 января 1915) Место рождения Петроград, Российская империя[2] Дата смерти 2 мая 1999(1999-05-02)[1] (84 года) Место смерти Санкт-Петербур...
Strategi Solo vs Squad di Free Fire: Cara Menang Mudah!