{"id":27751,"date":"2022-06-03T14:04:12","date_gmt":"2022-06-03T12:04:12","guid":{"rendered":"https:\/\/decidesoluciones.es\/?p=27751"},"modified":"2022-06-13T10:11:24","modified_gmt":"2022-06-13T08:11:24","slug":"kubernetes-revolution-cloud","status":"publish","type":"post","link":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/","title":{"rendered":"The role of Kubernetes in the Cloud revolution"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Cloud Computing<\/h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>It is indisputable that cloud computing has been the great technological revolution of recent years. More and more companies have realised that migrating to the cloud allows them to streamline processes, improve productivity and, ultimately, reduce costs.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>But what is the cloud? The term <em>cloud<\/em> has generally been used to describe remote resources accessible to several client systems via the Internet. In graphics describing the architecture of systems, a cloud is often painted to represent resources that are external to the local network infrastructure. With cloud computing, companies (now as service users) can have resources that allow them to run their applications without needing their servers or data centres, and pay only for the use they make of these resources.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The opposite concept, and the most widespread until a few years ago, is to use proprietary, on-premises installations. This paradigm is based on the installation of applications on servers owned by the operating company, which implies having its data centre or contracting the services of a third party to provide such a data centre.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The migration to cloud computing models minimises energy consumption and electronics production, as physical resources are shared and pooled by several clients and used on-demand, optimising their use and reducing the number of machines required. This brings not only benefits for companies, but also to the environment. Lower energy consumption and less electronics manufacturing contribute directly to the reduction of emissions.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Evolution of software development<\/h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Let&#8217;s look at the historical problems related to software development for computer systems and the evolution that has taken place to solve them.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Methodologies<\/h3>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The waterfall lifecycle was found to be inefficient because it is designed to produce static software that does not adapt to changing customer needs. In addition, a misinterpretation of requirements in the initial phases snowballed into the delivery of the final product, resulting in poor quality deliveries and consequent customer dissatisfaction. This led to a rethinking of <a href=\"https:\/\/decidesoluciones.es\/en\/software-development-project-methodologies\/\" target=\"_blank\" rel=\"noreferrer noopener\">software development project methodologies<\/a> and the rise of so-called agile methodologies.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>These new methodologies (agile methodologies) define iterative life cycles where each iteration produces a delivery that brings new value to the solution, which translates into frequent software deployments. This requires the definition of continuous integration and deployment processes. This is known as Continuous Integration and Continuous Deployment, or CI\/CD for short.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>To provide a solution to this need, multiple tools provide the capacity to synchronise the code generated by developers and automate compilations and deployments in different environments.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Architectures<\/h3>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Until not so long ago, applications were built according to a monolithic architecture. A monolith is nothing more than a piece of stone of homogeneous composition standing on the ground. The simile is very graphic: applications were built with large code files that were all compiled simultaneously and generated an executable artefact containing all the application&#8217;s functionality. The development and, even more, the maintenance of this type of application was complex even if the application itself did not represent a great complexity.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The commissioning of these systems usually required a temporary downtime and the attention of the technical teams in charge of the maintenance of the IT systems. These teams were usually not involved in the development of the applications and, on many occasions, were unaware of the deployment needs in terms of dependency requirements and other technical aspects necessary to make the execution of the applications viable. There were usually situations in which implementation was unfeasible due to technical aspects and war arose between the systems teams and the development teams. In this struggle, the ultimate defence of the latter was the phrase &#8216;it works on my machine&#8217;, meaning that in their development environments the application runs without any problems. In addition, deployments of several applications were made on the same operating system, which meant that the malfunctioning of one of the deployed applications could affect the rest. An isolation mechanism between applications was needed.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>To solve these problems, virtual machines and, a little later, containers began to be used. Virtual machines allow the installation of an operating system on virtualised hardware inside physical hardware. In this way, several independent operating systems can be installed on the same hardware. Containers are standardised units that package pieces of software and include everything needed to run them, including libraries and system tools. The advantage of containers over virtual machines is that the former is based on virtualisation at the operating system level and the latter at the hardware level, which makes containers lighter and faster to run.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Following the maxim &#8216;divide and rule&#8217;, the evolution of the monolithic architecture was the division of pieces of code, initially in the form of libraries that are compiled independently and expose a programming interface (Application Programming Interface or API) so that the functionality of these libraries could be accessed from the main application. Later, these APIs were implemented in the form of services that expose their interface through the HTTP protocol and are executed independently. In this way, an application that only exposes the graphical interface or front-end can make use of these services that will perform the complex tasks, which are usually called business logic. This is the basis of the microservices architecture.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>This division into microservices allows for the deployment of each microservice in a separate container, and therefore isolation not only between applications but also between different parts of the same application. The microservices architecture allows for easy continuous delivery because deployments are limited to only those parts that have been modified and not the entire application. It also fosters better quality assurance (QA), as splitting testing into smaller pieces also allows for the detection of bugs in specific parts of the faulty software.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Scalability, availability, and fault tolerance<\/h3>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>On the other hand, deployments of large monolithic applications were slow and required planning. When errors occurred, the entire application would stop working, resulting in downtime. When the need for more memory or more processing power increased, more powerful machines with more resources had to be considered. New software development architectures try to avoid these problems.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>A few years ago it was unthinkable to develop applications that serve the general public on a global scale. Now it is very common and we all use them all the time, just think of online product shops, social networks or messaging systems.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Due to the new need for large-scale data processing to serve a massive number of users, it is necessary to streamline deployments so that it is easy to increase or decrease computational power and memory resources when necessary, according to demand. It is also important to take into account the need for high availability. High availability means the ability to ensure continuity of services, even in situations where errors or failures occur.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Advantages of cloud computing<\/h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Cloud computing makes it possible to meet new needs simply and cost-effectively.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>On the one hand, it allows systems to scale horizontally. The concept of horizontal scalability is related to microservices architecture. Instead of increasing memory resources or processing capacity, which would be vertical scaling, the number of running instances of one or more of the services is increased.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>They also enable high availability and fault tolerance because cloud service providers can relocate the deployment of customer services among the hundreds or thousands of servers at their disposal. If any of these servers fail, the deployments will be assigned to other servers automatically.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">DevOps culture<\/h3>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Another advantage of cloud computing is the simplicity of system maintenance, facilitating the DevOps culture. DevOps refers to the set of practices that bring together software development and operations related to production release. Development teams and systems teams work with greater cohesion and may even be integrated into the same team.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Tools used in Cloud Computing<\/h3>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Many platforms offer cloud computing services. Examples include Amazon Web Services, Microsoft Azure, Google Cloud and IBM Cloud.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>All these platforms include a tool that provides, among other things, management of the containers where services are deployed, automation of these deployments, horizontal scalability, redirection and balancing of incoming requests to services, and hiding sensitive configuration data (secrets). We are referring to Kubernetes.<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Kubernetes<\/h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><a href=\"https:\/\/kubernetes.io\/\" target=\"_blank\" rel=\"noreferrer noopener\">Kubernetes<\/a> is open-source software that provides a portable and extensible platform for managing workloads and services. It was originally developed by Google and used it run applications in production for fifteen years until it was released in 2014 and became an open-source project.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Kubernetes provides a container-oriented environment that allows you to configure a set of components and tools that make it easy to deploy, scale and manage applications. It does not limit in any way the type of application that is deployed; any application that can run in a container can run in Kubernetes. Nor does it impose specific CI\/CD tools, middleware such as data buses or monitoring tools, but it integrates well with any of them.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>One of the nice things about Kubernetes is that it exposes an API that can be used to configure the system declaratively. It also provides a command-line tool (kubectl) that allows you to create, update, delete and query objects via the API. This API allows other tools to be built that benefit from the functionality provided by Kubernetes. To give an example: OpenShift is an enterprise Kubernetes platform. It is a distribution of Kubernetes with some added elements such as the graphical interface.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>It has a large ecosystem, there are a lot of tools that work in collaboration with Kubernetes and they are being renewed day by day. It also has a large community behind it that provides support, tools and services so that companies can use this software without great risk.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Other places where Kubernetes can be found are in the cloud platforms mentioned above, such as Amazon Elastic Kubernetes Service (EKS), Azure Kubernetes Service (AKS), and Google Kubernetes Engine (GKE), IBM Cloud Kubernetes Service, among others.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>It should be pointed out that just because it is a popular and widely used tool, it should not be adapted to any type of development. On the contrary, it should be carefully analysed to determine whether it fits the needs of our project or not. It should be borne in mind that this technology provides a lot of flexibility at the cost of a certain complexity in the configuration and it is necessary to have staff trained in its use, as acquiring the necessary knowledge to master the tool can take time.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>There are alternatives for the deployment of smaller-scale developments on cloud platforms. One example is services that allow code to run without provisioning or managing servers. This is called serverless computing. The code for a specific function is simply uploaded and the service executes it on a high-availability infrastructure and automatically scales according to the demand for that function. Examples of this type of service are Amazon AWS Lambda, Microsoft Azure Functions, Google Cloud Functions, and IBM Cloud Functions.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>It has not been the purpose of this article to introduce Kubernetes, there are already countless articles on that subject, but to explain the context in which it was born and its importance today as a tool consolidated as a de facto standard that streamlines and strengthens software development today.<\/p>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<div class=\"wp-block-image is-style-rounded\"><figure class=\"alignright size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/jorge-perfil-decide-2021-886x1024.png\" alt=\"\" class=\"wp-image-27742\" width=\"112\" height=\"129\" srcset=\"https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/jorge-perfil-decide-2021-886x1024.png 886w, https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/jorge-perfil-decide-2021-260x300.png 260w, https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/jorge-perfil-decide-2021-768x888.png 768w, https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/jorge-perfil-decide-2021.png 1160w\" sizes=\"auto, (max-width: 112px) 100vw, 112px\" \/><\/figure><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Jorge Berjano P\u00e9rez<\/h3>\n\n\n\n<p><strong>Software Architecture <\/strong>at <strong>decide4AI<\/strong><\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/div>\n<\/div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>If you want to know more about&nbsp;<strong>decide4AI<\/strong>, follow us on social networks (<a href=\"https:\/\/www.linkedin.com\/company\/decide-soluciones\/\" target=\"_blank\" rel=\"noreferrer noopener\">Linkedin<\/a>,&nbsp;<a href=\"https:\/\/twitter.com\/decide4ai\" target=\"_blank\" rel=\"noreferrer noopener\">Twitter<\/a>,&nbsp;<a href=\"https:\/\/www.youtube.com\/channel\/UCmPSnW-34-nSiNQ5fNyLxNQ\" target=\"_blank\" rel=\"noreferrer noopener\">Youtube<\/a>).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Cloud Computing It is indisputable that cloud computing has been the great technological revolution of recent years. More and more companies have realised that migrating to the cloud allows them to streamline processes, improve productivity and, ultimately, reduce costs. But what is the cloud? The term cloud has generally been used to describe remote resources&hellip;<\/p>\n","protected":false},"author":30,"featured_media":27752,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[770,262],"tags":[784],"class_list":["post-27751","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tecnologia","category-uncategorized","tag-innovacion-tecnologica","category-770","category-262","description-off"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>The role of Kubernetes in the Cloud revolution<\/title>\n<meta name=\"description\" content=\"The role of Kubernetes in the Cloud revolution and how it has made software development faster and more robust today.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The role of Kubernetes in the Cloud revolution\" \/>\n<meta property=\"og:description\" content=\"The role of Kubernetes in the Cloud revolution and how it has made software development faster and more robust today.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/\" \/>\n<meta property=\"og:site_name\" content=\"Decide\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-03T12:04:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-13T08:11:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/1-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"decide4AI\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"The role of Kubernetes in the Cloud revolution\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/1-1.png\" \/>\n<meta name=\"twitter:creator\" content=\"@canaldecide\" \/>\n<meta name=\"twitter:site\" content=\"@canaldecide\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"decide4AI\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/kubernetes-revolution-cloud\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/kubernetes-revolution-cloud\\\/\"},\"author\":{\"name\":\"decide4AI\",\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/#\\\/schema\\\/person\\\/c5a2787a44b67d8f84604a8b87c76075\"},\"headline\":\"The role of Kubernetes in the Cloud revolution\",\"datePublished\":\"2022-06-03T12:04:12+00:00\",\"dateModified\":\"2022-06-13T08:11:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/kubernetes-revolution-cloud\\\/\"},\"wordCount\":1897,\"image\":{\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/kubernetes-revolution-cloud\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/decidesoluciones.es\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/1-1.png\",\"keywords\":[\"Innovaci\u00f3n tecnol\u00f3gica\"],\"articleSection\":[\"Tecnolog\u00eda\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/kubernetes-revolution-cloud\\\/\",\"url\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/kubernetes-revolution-cloud\\\/\",\"name\":\"The role of Kubernetes in the Cloud revolution\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/kubernetes-revolution-cloud\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/kubernetes-revolution-cloud\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/decidesoluciones.es\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/1-1.png\",\"datePublished\":\"2022-06-03T12:04:12+00:00\",\"dateModified\":\"2022-06-13T08:11:24+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/#\\\/schema\\\/person\\\/c5a2787a44b67d8f84604a8b87c76075\"},\"description\":\"The role of Kubernetes in the Cloud revolution and how it has made software development faster and more robust today.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/kubernetes-revolution-cloud\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/kubernetes-revolution-cloud\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/kubernetes-revolution-cloud\\\/#primaryimage\",\"url\":\"https:\\\/\\\/decidesoluciones.es\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/1-1.png\",\"contentUrl\":\"https:\\\/\\\/decidesoluciones.es\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/1-1.png\",\"width\":800,\"height\":450,\"caption\":\"The role of Kubernetes in the Cloud revolution\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/kubernetes-revolution-cloud\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/decide-2\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The role of Kubernetes in the Cloud revolution\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/\",\"name\":\"Decide\",\"description\":\"Advanced Analytics. Smart Decisions\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/decidesoluciones.es\\\/en\\\/#\\\/schema\\\/person\\\/c5a2787a44b67d8f84604a8b87c76075\",\"name\":\"decide4AI\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5a16f5f3009bc3081c68bd986b0dd38c75f3bfbf37ebdb7e7cdc0594d063a16c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5a16f5f3009bc3081c68bd986b0dd38c75f3bfbf37ebdb7e7cdc0594d063a16c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5a16f5f3009bc3081c68bd986b0dd38c75f3bfbf37ebdb7e7cdc0594d063a16c?s=96&d=mm&r=g\",\"caption\":\"decide4AI\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The role of Kubernetes in the Cloud revolution","description":"The role of Kubernetes in the Cloud revolution and how it has made software development faster and more robust today.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/","og_locale":"en_US","og_type":"article","og_title":"The role of Kubernetes in the Cloud revolution","og_description":"The role of Kubernetes in the Cloud revolution and how it has made software development faster and more robust today.","og_url":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/","og_site_name":"Decide","article_published_time":"2022-06-03T12:04:12+00:00","article_modified_time":"2022-06-13T08:11:24+00:00","og_image":[{"width":800,"height":450,"url":"https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/1-1.png","type":"image\/png"}],"author":"decide4AI","twitter_card":"summary_large_image","twitter_title":"The role of Kubernetes in the Cloud revolution","twitter_image":"https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/1-1.png","twitter_creator":"@canaldecide","twitter_site":"@canaldecide","twitter_misc":{"Written by":"decide4AI","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/#article","isPartOf":{"@id":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/"},"author":{"name":"decide4AI","@id":"https:\/\/decidesoluciones.es\/en\/#\/schema\/person\/c5a2787a44b67d8f84604a8b87c76075"},"headline":"The role of Kubernetes in the Cloud revolution","datePublished":"2022-06-03T12:04:12+00:00","dateModified":"2022-06-13T08:11:24+00:00","mainEntityOfPage":{"@id":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/"},"wordCount":1897,"image":{"@id":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/#primaryimage"},"thumbnailUrl":"https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/1-1.png","keywords":["Innovaci\u00f3n tecnol\u00f3gica"],"articleSection":["Tecnolog\u00eda"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/","url":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/","name":"The role of Kubernetes in the Cloud revolution","isPartOf":{"@id":"https:\/\/decidesoluciones.es\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/#primaryimage"},"image":{"@id":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/#primaryimage"},"thumbnailUrl":"https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/1-1.png","datePublished":"2022-06-03T12:04:12+00:00","dateModified":"2022-06-13T08:11:24+00:00","author":{"@id":"https:\/\/decidesoluciones.es\/en\/#\/schema\/person\/c5a2787a44b67d8f84604a8b87c76075"},"description":"The role of Kubernetes in the Cloud revolution and how it has made software development faster and more robust today.","breadcrumb":{"@id":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/#primaryimage","url":"https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/1-1.png","contentUrl":"https:\/\/decidesoluciones.es\/wp-content\/uploads\/2022\/04\/1-1.png","width":800,"height":450,"caption":"The role of Kubernetes in the Cloud revolution"},{"@type":"BreadcrumbList","@id":"https:\/\/decidesoluciones.es\/en\/kubernetes-revolution-cloud\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/decidesoluciones.es\/en\/decide-2\/"},{"@type":"ListItem","position":2,"name":"The role of Kubernetes in the Cloud revolution"}]},{"@type":"WebSite","@id":"https:\/\/decidesoluciones.es\/en\/#website","url":"https:\/\/decidesoluciones.es\/en\/","name":"Decide","description":"Advanced Analytics. Smart Decisions","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/decidesoluciones.es\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/decidesoluciones.es\/en\/#\/schema\/person\/c5a2787a44b67d8f84604a8b87c76075","name":"decide4AI","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5a16f5f3009bc3081c68bd986b0dd38c75f3bfbf37ebdb7e7cdc0594d063a16c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5a16f5f3009bc3081c68bd986b0dd38c75f3bfbf37ebdb7e7cdc0594d063a16c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5a16f5f3009bc3081c68bd986b0dd38c75f3bfbf37ebdb7e7cdc0594d063a16c?s=96&d=mm&r=g","caption":"decide4AI"}}]}},"_links":{"self":[{"href":"https:\/\/decidesoluciones.es\/en\/wp-json\/wp\/v2\/posts\/27751","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/decidesoluciones.es\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/decidesoluciones.es\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/decidesoluciones.es\/en\/wp-json\/wp\/v2\/users\/30"}],"replies":[{"embeddable":true,"href":"https:\/\/decidesoluciones.es\/en\/wp-json\/wp\/v2\/comments?post=27751"}],"version-history":[{"count":5,"href":"https:\/\/decidesoluciones.es\/en\/wp-json\/wp\/v2\/posts\/27751\/revisions"}],"predecessor-version":[{"id":27979,"href":"https:\/\/decidesoluciones.es\/en\/wp-json\/wp\/v2\/posts\/27751\/revisions\/27979"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/decidesoluciones.es\/en\/wp-json\/wp\/v2\/media\/27752"}],"wp:attachment":[{"href":"https:\/\/decidesoluciones.es\/en\/wp-json\/wp\/v2\/media?parent=27751"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/decidesoluciones.es\/en\/wp-json\/wp\/v2\/categories?post=27751"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/decidesoluciones.es\/en\/wp-json\/wp\/v2\/tags?post=27751"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}