{"id":34271,"date":"2026-02-03T09:44:52","date_gmt":"2026-02-03T14:44:52","guid":{"rendered":"https:\/\/www.lpi.org\/articles\/\/"},"modified":"2026-02-10T12:31:32","modified_gmt":"2026-02-10T17:31:32","slug":"devops-tools-introduction-03-cloud-components-and-platforms","status":"publish","type":"post","link":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/","title":{"rendered":"DevOps Tools Introduction #03: Cloud Components and Platforms"},"content":{"rendered":"<p>Previous installments in this series described <a href=\"https:\/\/www.lpi.org\/blog\/2018\/01\/16\/devops-tools-introduction-02-modern-software-development\/\">modern software development<\/a> and got us thinking about architectures for that software. Equipped with this knowledge, we will focus on the building blocks of such applications. <a href=\"https:\/\/wiki.lpi.org\/wiki\/DevOps_Tools_Engineer_Objectives_V2.0#701.2_Standard_Components_and_Platforms_for_Software_(weight:_3)\">Objective 701.2<\/a> of LPI\u2019s DevOps Tool Engineer exam covers software components and platforms. The objective mentions a number of technology components such as object stores, relational and NoSQL databases, message brokers, and big data services. Everyone working in IT for some time will likely know at least one tool in each of these categories. Likewise, a general understanding about the roles of these components in a software architecture is essential.<\/p>\n<p>While these application components used to be installed manually by a system administrator when preparing the installation of a software, nowadays cloud providers offer the instantaneous provisioning of these tools as a service. Most cloud providers employ existing technologies, integrate them into provider interfaces, and use distinct names to refer to the resulting products.<\/p>\n<h2>Cloud Service Models<\/h2>\n<p>Cloud computing embraces several different levels of services, each level dividing responsibilities differently between the provider and the user. The main models are IaaS, PaaS, SaaS, and FaaS, which are located on a spectrum from maximum control to maximum convenience.<\/p>\n<p>The <em>Infrastructure as a Service (IaaS)<\/em> model provides virtualized computing resources over the internet, representing the most fundamental level of cloud service. The user gains access to virtual servers, storage, and networking, while retaining responsibility for the operating system, middleware, runtime, and applications. OpenStack exemplifies an open-source IaaS platform, with components like Nova (compute), Cinder (block storage), Swift (object storage), and Neutron (networking) providing the complete infrastructure.<\/p>\n<p>The <em>Platform as a Service (PaaS)<\/em> model abstracts the underlying infrastructure, providing a complete environment for developing, deploying, and managing applications. The provider manages the operating system, middleware, and runtime, allowing developers to focus exclusively on the application code. Examples include Heroku, Google App Engine, and, in the OpenStack context, the Trove project for Database as a Service.<\/p>\n<p>The <em>Software as a Service (SaaS)<\/em> model represents the highest level of service, providing complete, ready-to-use software over the internet. Users access applications without concerns about installation, maintenance, or infrastructure. The provider manages all technical aspects, from hardware to software updates. Examples include Google Workspace, Microsoft 365, and Salesforce.<\/p>\n<p>The <em>Function as a Service (FaaS)<\/em> model, often associated with the term serverless computing, allows code to be executed in response to events without managing any infrastructure. The code runs in ephemeral containers that are initiated on demand, with billing based only on the actual execution time. This model is ideal for event-driven workloads, webhook processing, and microservices with variable demand. Examples include AWS Lambda, Google Cloud Functions, and Azure Functions.<\/p>\n<h2>Object Storage: Features and Concepts<\/h2>\n<p>Object Storage is a data storage architecture that manages data as objects, as opposed to other storage architectures. Unlike traditional file systems, which organize data in a directory hierarchy, or block storage, which manages data as blocks within sectors and tracks, object storage treats each data item as an autonomous unit. Each object typically includes the data itself, a variable amount of custom metadata, and a globally unique identifier. <a href=\"https:\/\/aws.amazon.com\/s3\/\">Amazon S3<\/a> (Simple Storage Service) has established itself as the most influential object storage service on the market, and its API has become a de facto standard widely adopted by other implementations.<\/p>\n<h2>Relational and NoSQL Databases<\/h2>\n<p>Databases are a fundamental component of almost all modern software applications. They can be categorized into two major groups: <a href=\"https:\/\/www.datacamp.com\/blog\/sql-vs-nosql-databases\">relational (SQL) and non-relational (NoSQL)<\/a>, each with specific characteristics, advantages, and use cases.<\/p>\n<p>Relational databases store data in a structured tabular format, organizing information into rows and columns with well-defined relationships between tables. They use a predefined schema to structure the data and enforce referential integrity, ensuring consistency through ACID (Atomicity, Consistency, Isolation, and Durability) properties. MySQL has established itself as one of the most popular open-source relational databases globally, widely used in web applications. <a href=\"https:\/\/mariadb.org\">MariaDB<\/a> emerged as a fork of MySQL, maintaining full compatibility while adding advanced features and remaining completely open source. <a href=\"https:\/\/www.postgresql.org\">PostgreSQL<\/a> stands out as an open-source object-relational database system, recognized for its reliability, feature robustness, and compliance with SQL standards.<\/p>\n<p>NoSQL databases provide mechanisms for storing and retrieving data modeled differently from the traditional tabular relations. Many are often chosen for big data applications and real-time systems where schema flexibility and horizontal scalability are priorities. <a href=\"https:\/\/redis.io\">Redis<\/a> functions as an in-memory data structure store, serving as a database, cache, and message broker. Its key-value architecture provides extremely low latency for read and write operations. <a href=\"https:\/\/www.mongodb.com\">MongoDB<\/a> adopts a document model, storing data in a JSON-like format (BSON) that offers flexible schemas and native horizontal scalability. InfluxDB specializes in time-series data, optimized for storing and querying metrics, events, and measurements with timestamps; it is particularly useful in monitoring and IoT scenarios.<\/p>\n<h2>Message Brokers and Message Queues<\/h2>\n<p>In distributed system architectures, asynchronous communication is a fundamental pattern for decoupling services, improving scalability, and increasing system resilience. Message queues and message brokers are the central components that enable this communication. A message queue consists of a data structure that temporarily stores messages until they are processed by their recipients (called <em>consumers<\/em>). It typically ensures that each message is processed only once, generally following the order of arrival (FIFO &#8211; First-In, First-Out), although specific implementations may offer different semantics.<\/p>\n<p>Apache Kafka represents a distributed event streaming platform, designed to handle trillions of events daily. Kafka is used to build real-time data pipelines and streaming applications, combining messaging, storage, and stream processing into a single platform. MQTT (Message Queuing Telemetry Transport) is a lightweight messaging protocol based on the publish\/subscribe pattern, specifically designed for connections in environments with limited bandwidth or unstable connections.<\/p>\n<h2>Big Data Services<\/h2>\n<p>Big Data refers to datasets characterized by the &#8220;3 Vs&#8221;: Volume (massive quantity), Velocity (high rate of generation and processing), and Variety (diversity of formats and sources). Big Data services provide the tools and infrastructure to store, process, and analyze these volumes of data that exceed the capacity of traditional tools.<\/p>\n<p>Elasticsearch has established itself as a distributed search and analytics engine built on Apache Lucene. It allows for storing, searching, and analyzing large volumes of data in near real-time, being widely used for full-text search, log analysis, infrastructure monitoring, and security analysis (SIEM). OpenSearch emerged as a fork of Elasticsearch, created by Amazon Web Services after changes in the original project&#8217;s license. Maintaining compatibility with the Elasticsearch API, OpenSearch is developed under the Apache 2.0 license, ensuring that it remains completely open-source. Both tools offer similar functionalities, including distributed indexing, real-time search, and visualization through integrated dashboards.<\/p>\n<h2>Content Delivery Networks (CDNs)<\/h2>\n<p>A Content Delivery Network (CDN) consists of a geographically distributed network of servers that collaborate to provide fast delivery of internet content. The fundamental principle is to place copies of the content at multiple points of presence (PoPs) around the world, reducing the physical distance between the user and the server handling their request. CDNs enable the rapid transfer of assets needed to load web content, including HTML pages, JavaScript files, CSS stylesheets, images, and videos. In addition to reducing latency, CDNs offer additional benefits such as DDoS protection, SSL\/TLS termination at edge servers, content compression, and image optimization.<\/p>\n<p>A CDN operates by caching static content on edge servers, which respond to requests from the nearest users. When a user requests a resource, the CDN directs the request to the geographically closest edge server. If the content is cached, it is served immediately; otherwise, the edge server fetches the content from the origin server, caches it, and delivers it to the user.<\/p>\n<h2>Identity and Access Management (IAM)<\/h2>\n<p>Identity and Access Management (IAM) represents a framework of policies, processes, and technologies that ensures that the right entities (people, services, devices) have the appropriate access to technological resources. In cloud environments, IAM is a critical security component, controlling who can do what on which resources. The fundamental concepts of IAM include identities (representations of users, services, or devices), authentication (verifying that an entity is who it claims to be), authorization (determining what an authenticated entity can do), and auditing (recording actions for compliance and investigation).<\/p>\n<p>In next week\u2019s article, we\u2019ll move forward and dive into Source Code Management, exploring how to efficiently manage, version, and share source code in modern development workflows.<\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/www.lpi.org\/blog\/2026\/01\/27\/devops-tools-introduction-02-modern-software-development\/\">&lt;&lt; Read the previous part of this series<\/a>\u00a0| <a href=\"https:\/\/www.lpi.org\/blog\/2026\/02\/10\/devops-tools-introduction-04-source-code-management\/\">Read the next part of this series &gt;&gt;<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Previous installments in this series described modern software development and got us thinking about architectures for that software. Equipped with this knowledge, we will focus on the building blocks of such applications. Objective 701.2 of LPI\u2019s DevOps Tool Engineer exam &#8230; <a href=\"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/\" class=\"button-link\">Read more<\/a><\/p>\n","protected":false},"author":66,"featured_media":34282,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[6],"country":[],"language":[428],"ppma_author":[540,571],"class_list":["post-34271","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-unkategorisiert","language-english-de"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>DevOps Tools Introduction #03: Cloud Components and Platforms - Linux Professional Institute (LPI)<\/title>\n<meta name=\"description\" content=\"Cloud DevOps basics: IaaS, PaaS, SaaS, FaaS, storage, DBs, brokers, big data, CDNs &amp; IAM \u2014 key components and platforms explained.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DevOps Tools Introduction #03: Cloud Components and Platforms\" \/>\n<meta property=\"og:description\" content=\"Cloud DevOps basics: IaaS, PaaS, SaaS, FaaS, storage, DBs, brokers, big data, CDNs &amp; IAM \u2014 key components and platforms explained.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/\" \/>\n<meta property=\"og:site_name\" content=\"Linux Professional Institute (LPI)\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/LPIConnect\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-03T14:44:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-10T17:31:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/02\/article-DevOps-Tools-Engineer-v2-Introduction-02-03-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1440\" \/>\n\t<meta property=\"og:image:height\" content=\"994\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Fabian Thorns, Uir\u00e1 Ribeiro\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lpiconnect\" \/>\n<meta name=\"twitter:site\" content=\"@lpiconnect\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fabian Thorns\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/\"},\"author\":{\"name\":\"Fabian Thorns\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/#\\\/schema\\\/person\\\/87a340eca845e18d801667fd11e6937c\"},\"headline\":\"DevOps Tools Introduction #03: Cloud Components and Platforms\",\"datePublished\":\"2026-02-03T14:44:52+00:00\",\"dateModified\":\"2026-02-10T17:31:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/\"},\"wordCount\":1405,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/article-DevOps-Tools-Engineer-v2-Introduction-02-03-1.jpg\",\"articleSection\":[\"Unkategorisiert\"],\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/\",\"name\":\"DevOps Tools Introduction #03: Cloud Components and Platforms - Linux Professional Institute (LPI)\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/article-DevOps-Tools-Engineer-v2-Introduction-02-03-1.jpg\",\"datePublished\":\"2026-02-03T14:44:52+00:00\",\"dateModified\":\"2026-02-10T17:31:32+00:00\",\"description\":\"Cloud DevOps basics: IaaS, PaaS, SaaS, FaaS, storage, DBs, brokers, big data, CDNs & IAM \u2014 key components and platforms explained.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/article-DevOps-Tools-Engineer-v2-Introduction-02-03-1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/article-DevOps-Tools-Engineer-v2-Introduction-02-03-1.jpg\",\"width\":1440,\"height\":994,\"caption\":\"DevOps Tools Introduction #03: Cloud Components and Platforms\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/blog\\\/2026\\\/02\\\/03\\\/devops-tools-introduction-03-cloud-components-and-platforms\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DevOps Tools Introduction #03: Cloud Components and Platforms\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/#website\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/\",\"name\":\"Linux Professional Institute (LPI)\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/#organization\",\"name\":\"Linux Professional Institute (LPI)\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/logo.png\",\"width\":496,\"height\":175,\"caption\":\"Linux Professional Institute (LPI)\"},\"image\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/LPIConnect\",\"https:\\\/\\\/x.com\\\/lpiconnect\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/35136\",\"https:\\\/\\\/www.instagram.com\\\/lpi_org\\\/\",\"https:\\\/\\\/fosstodon.org\\\/@LPI\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/pt-br\\\/#\\\/schema\\\/person\\\/87a340eca845e18d801667fd11e6937c\",\"name\":\"Fabian Thorns\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/cropped-fabian-thorns-1920px-96x96.jpg583c90110e404d4e42f0be7307753074\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/cropped-fabian-thorns-1920px-96x96.jpg\",\"contentUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/cropped-fabian-thorns-1920px-96x96.jpg\",\"caption\":\"Fabian Thorns\"},\"description\":\"Fabian Thorns is the Director of Product Development at Linux Professional Institute, LPI. He is M.Sc. Business Information Systems, a regular speaker at open source events and the author of numerous articles and books. Fabian has been part of the exam development team since 2010. Connect with him on LinkedIn, XING\u00a0or via email (fthorns\u00a0at\u00a0www.lpi.org).\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"DevOps Tools Introduction #03: Cloud Components and Platforms - Linux Professional Institute (LPI)","description":"Cloud DevOps basics: IaaS, PaaS, SaaS, FaaS, storage, DBs, brokers, big data, CDNs & IAM \u2014 key components and platforms explained.","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:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/","og_locale":"pt_BR","og_type":"article","og_title":"DevOps Tools Introduction #03: Cloud Components and Platforms","og_description":"Cloud DevOps basics: IaaS, PaaS, SaaS, FaaS, storage, DBs, brokers, big data, CDNs & IAM \u2014 key components and platforms explained.","og_url":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/","og_site_name":"Linux Professional Institute (LPI)","article_publisher":"https:\/\/www.facebook.com\/LPIConnect","article_published_time":"2026-02-03T14:44:52+00:00","article_modified_time":"2026-02-10T17:31:32+00:00","og_image":[{"width":1440,"height":994,"url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/02\/article-DevOps-Tools-Engineer-v2-Introduction-02-03-1.jpg","type":"image\/jpeg"}],"author":"Fabian Thorns, Uir\u00e1 Ribeiro","twitter_card":"summary_large_image","twitter_creator":"@lpiconnect","twitter_site":"@lpiconnect","twitter_misc":{"Escrito por":"Fabian Thorns","Est. tempo de leitura":"7 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/#article","isPartOf":{"@id":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/"},"author":{"name":"Fabian Thorns","@id":"https:\/\/www.lpi.org\/pt-br\/#\/schema\/person\/87a340eca845e18d801667fd11e6937c"},"headline":"DevOps Tools Introduction #03: Cloud Components and Platforms","datePublished":"2026-02-03T14:44:52+00:00","dateModified":"2026-02-10T17:31:32+00:00","mainEntityOfPage":{"@id":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/"},"wordCount":1405,"commentCount":0,"publisher":{"@id":"https:\/\/www.lpi.org\/pt-br\/#organization"},"image":{"@id":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/#primaryimage"},"thumbnailUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/02\/article-DevOps-Tools-Engineer-v2-Introduction-02-03-1.jpg","articleSection":["Unkategorisiert"],"inLanguage":"pt-BR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/","url":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/","name":"DevOps Tools Introduction #03: Cloud Components and Platforms - Linux Professional Institute (LPI)","isPartOf":{"@id":"https:\/\/www.lpi.org\/pt-br\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/#primaryimage"},"image":{"@id":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/#primaryimage"},"thumbnailUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/02\/article-DevOps-Tools-Engineer-v2-Introduction-02-03-1.jpg","datePublished":"2026-02-03T14:44:52+00:00","dateModified":"2026-02-10T17:31:32+00:00","description":"Cloud DevOps basics: IaaS, PaaS, SaaS, FaaS, storage, DBs, brokers, big data, CDNs & IAM \u2014 key components and platforms explained.","breadcrumb":{"@id":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/#primaryimage","url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/02\/article-DevOps-Tools-Engineer-v2-Introduction-02-03-1.jpg","contentUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/02\/article-DevOps-Tools-Engineer-v2-Introduction-02-03-1.jpg","width":1440,"height":994,"caption":"DevOps Tools Introduction #03: Cloud Components and Platforms"},{"@type":"BreadcrumbList","@id":"https:\/\/www.lpi.org\/pt-br\/blog\/2026\/02\/03\/devops-tools-introduction-03-cloud-components-and-platforms\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.lpi.org\/pt-br\/"},{"@type":"ListItem","position":2,"name":"DevOps Tools Introduction #03: Cloud Components and Platforms"}]},{"@type":"WebSite","@id":"https:\/\/www.lpi.org\/pt-br\/#website","url":"https:\/\/www.lpi.org\/pt-br\/","name":"Linux Professional Institute (LPI)","description":"","publisher":{"@id":"https:\/\/www.lpi.org\/pt-br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.lpi.org\/pt-br\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/www.lpi.org\/pt-br\/#organization","name":"Linux Professional Institute (LPI)","url":"https:\/\/www.lpi.org\/pt-br\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.lpi.org\/pt-br\/#\/schema\/logo\/image\/","url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2023\/04\/logo.png","contentUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2023\/04\/logo.png","width":496,"height":175,"caption":"Linux Professional Institute (LPI)"},"image":{"@id":"https:\/\/www.lpi.org\/pt-br\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/LPIConnect","https:\/\/x.com\/lpiconnect","https:\/\/www.linkedin.com\/company\/35136","https:\/\/www.instagram.com\/lpi_org\/","https:\/\/fosstodon.org\/@LPI"]},{"@type":"Person","@id":"https:\/\/www.lpi.org\/pt-br\/#\/schema\/person\/87a340eca845e18d801667fd11e6937c","name":"Fabian Thorns","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/01\/cropped-fabian-thorns-1920px-96x96.jpg583c90110e404d4e42f0be7307753074","url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/01\/cropped-fabian-thorns-1920px-96x96.jpg","contentUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/01\/cropped-fabian-thorns-1920px-96x96.jpg","caption":"Fabian Thorns"},"description":"Fabian Thorns is the Director of Product Development at Linux Professional Institute, LPI. He is M.Sc. Business Information Systems, a regular speaker at open source events and the author of numerous articles and books. Fabian has been part of the exam development team since 2010. Connect with him on LinkedIn, XING\u00a0or via email (fthorns\u00a0at\u00a0www.lpi.org)."}]}},"views":1706,"authors":[{"term_id":540,"user_id":66,"is_guest":0,"slug":"fthornslpi-org","display_name":"Fabian Thorns","avatar_url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/01\/cropped-fabian-thorns-1920px-96x96.jpg","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""},{"term_id":571,"user_id":109,"is_guest":0,"slug":"uira-ribeiro","display_name":"Uir\u00e1 Ribeiro","avatar_url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2024\/07\/cropped-cropped-uria-ribeiro-220x220-1-96x96.jpg","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/posts\/34271","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/users\/66"}],"replies":[{"embeddable":true,"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/comments?post=34271"}],"version-history":[{"count":4,"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/posts\/34271\/revisions"}],"predecessor-version":[{"id":34956,"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/posts\/34271\/revisions\/34956"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/media\/34282"}],"wp:attachment":[{"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/media?parent=34271"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/categories?post=34271"},{"taxonomy":"country","embeddable":true,"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/country?post=34271"},{"taxonomy":"language","embeddable":true,"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/language?post=34271"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.lpi.org\/pt-br\/wp-json\/wp\/v2\/ppma_author?post=34271"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}