{"id":2510,"date":"2021-07-30T11:22:33","date_gmt":"2021-07-30T09:22:33","guid":{"rendered":"https:\/\/geko2.factoryfy.com\/what-is-kubernetes\/"},"modified":"2021-11-03T16:41:17","modified_gmt":"2021-11-03T15:41:17","slug":"what-is-kubernetes","status":"publish","type":"post","link":"https:\/\/geko.cloud\/en\/what-is-kubernetes\/","title":{"rendered":"What is Kubernetes?"},"content":{"rendered":"<h2><strong><span style=\"font-size: 25px;\">What is container orchestration?<\/span><\/strong><\/h2>\n<p><span style=\"font-size: 18px;\">Before we dive into <b>Kubernetes<\/b>, first of all, you need to know what <b>container orchestration<\/b> is. <b>Container<\/b> technologies have radically changed the landscape of systems and the way software is packaged and deployed. Some of the benefits that <b>containers<\/b> bring are portability, agility, speed, immutability, and fault isolation.<\/span><\/p>\n<p><span style=\"font-size: 18px;\">A <b>container orchestrator<\/b> is a software that manages and coordinates <b>containers<\/b> in an automated way. There are several <b>container orchestration<\/b> tools such as Docker Swarm, Google Container Engine, Amazon ECS, and others. However, in this post, we will focus on <b>Kubernetes<\/b>, where we will explain the concept, most notable components of the tool and discuss the benefits that <b>Kubernetes<\/b> can offer, among other points.<\/span><\/p>\n<h2><strong><span style=\"font-size: 25px;\">Definition &#8211; What is Kubernetes?<\/span><\/strong><\/h2>\n<p><span style=\"font-size: 18px;\">Originally developed by Google, <b>Kubernetes<\/b>, or <b>k8s<\/b> for short, is a <b>container orchestration<\/b> tool. <b>Kubernetes<\/b> facilitates the deployment and operation of applications in a <b>microservices<\/b> architecture. It does this by creating an abstraction layer on top of a cluster of hosts, so development teams can deploy their applications and let <b>Kubernetes<\/b> manage the deployment of <b>containers<\/b>.<\/span><\/p>\n<p><iframe loading=\"lazy\" title=\"What is Kubernetes?\" width=\"800\" height=\"450\" src=\"https:\/\/www.youtube.com\/embed\/cC46cg5FFAM?start=23&#038;feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen><\/iframe><\/p>\n<h2><strong><span style=\"font-size: 25px;\">Platforms that offer Kubernetes<\/span><\/strong><\/h2>\n<p><span style=\"font-size: 18px;\">There are several <a href=\"https:\/\/geko.cloud\/en\/what-is-the-cloud\/\"><b>cloud<\/b><\/a> platforms that offer <b>Kubernetes<\/b> as a service. These platforms make the job easier by providing an interface that makes it easy to deploy applications on <b>Kubernetes<\/b> without having to worry about configuring and managing the various components of the cluster. Some of them are Amazon EKS, Digitalocean, OpenShift, or Rancher, among others.<\/span><\/p>\n<h2><strong><span style=\"font-size: 25px;\">Some Kubernetes cluster elements<\/span><\/strong><\/h2>\n<p><span style=\"font-size: 18px;\"><b>Kubernetes<\/b> has a number of features that allow you to provision and deploy your own <b>containerized<\/b> software. If you&#8217;re new to <b>Kubernetes<\/b>, the terminology can be new, and require some extra learning. Here are some of the basics:<\/span><\/p>\n<ul>\n<li><span style=\"font-size: 18px;\"><b><u>Pods<\/u><\/b>: <span style=\"font-weight: 400;\"> The minimum unit that can be deployed with <b>Kubernetes<\/b>. Each pod can contain one to several <b>containers<\/b> running on the same shared storage\/network resources as the pod.<\/span><\/span><\/li>\n<li><span style=\"font-size: 18px;\"><b><u>Nodes<\/u><\/b>: <span style=\"font-weight: 400;\">A physical or virtual machine that hosts the pods that perform the workload of an application.\u00a0<\/span><\/span><\/li>\n<li><span style=\"font-size: 18px;\"><b><u>Control plane<\/u><\/b>: <span style=\"font-weight: 400;\">The control plane runs the <b>Kubernetes<\/b> components that provide the core functionalities: exposing the <b>Kubernetes<\/b> API, scheduling workload deployments, managing the cluster, and direct communications throughout the system.\u00a0<\/span><\/span><\/li>\n<li><span style=\"font-size: 18px;\"><b><u>Cluster<\/u><\/b>: <span style=\"font-weight: 400;\">A group of nodes working together, which run <b>containerized<\/b> applications. Clusters consist of master and worker nodes. There can be one or more master nodes and zero or more worker nodes. For example, you can have several nodes in the same cluster running the same <b>containers<\/b>.\u00a0\u00a0<\/span><\/span><\/li>\n<li><span style=\"font-size: 18px;\"><b><u>Deployment<\/u><\/b>:<span style=\"font-weight: 400;\"> <b>Kubernetes<\/b> deployments define the scale at which you want to run your application by allowing you to set the details of how you want pods to be replicated across <b>Kubernetes<\/b> nodes. Deployments describe the number of identical pod replicas you want to run and the preferred update strategy for updating the deployment, among other things. <b>Kubernetes<\/b> will track the health of the pods, and remove or add pods as needed to bring the application deployment to the desired state. The deployment provides an abstraction layer that allows pods to be replaced easily and transparently. Pods in a deployment can be located on different nodes.<\/span><\/span><\/li>\n<li><span style=\"font-size: 18px;\"><b><u>Service<\/u><\/b>: <span style=\"font-weight: 400;\">A set of pods running the same application or <b>microservice<\/b> can be grouped together to form a deployment, as we have already seen. Since these pods can be replaced and, due to the dynamic nature of <b>Kubernetes<\/b>, the different IP addresses of the pods will change, there is a need for a network resource to establish an entry point to these pods. A service abstracts away the underlying network complexity, making it possible to provide a single, unchanging entry point while making the layout of the pods that make up the deployment transparent.<\/span><\/span><\/li>\n<li><span style=\"font-size: 18px;\"><b><u>Ingress controller<\/u><\/b>:<span style=\"font-weight: 400;\"> It is software that provides reverse proxy functionality, configurable traffic routing, and TLS termination for <b>Kubernetes<\/b> services. A gateway driver is installed on the cluster, and then gateway rules are configured for a specific service or services.<\/span><\/span><\/li>\n<li><span style=\"font-size: 18px;\"><b><u>Kubectl<\/u><\/b>:<span style=\"font-weight: 400;\"> a command-line interface that sends a request to the <b>Kubernetes<\/b> API, either with specific commands, with the contents of a YAML manifest, or with data fetch requests.<\/span><\/span><\/li>\n<li><span style=\"font-size: 18px;\"><b><u>Kubelet<\/u><\/b>: <span style=\"font-weight: 400;\">is a service running inside each node, which communicates with the control plane.<\/span><\/span><\/li>\n<\/ul>\n<p><span style=\"font-size: 18px;\">There are other <b>Kubernetes<\/b> components such as daemonsets, namespaces, replicaSets, secrets, and even custom resources. The ones mentioned here are the ones you are most likely to interact with when deploying applications on <b>Kubernetes<\/b>.<\/span><\/p>\n<h2><strong><span style=\"font-size: 25px;\">Learn more about when and how to use Kubernetes\u00a0\u00a0<\/span><\/strong><\/h2>\n<p><span style=\"font-size: 18px;\">Do you want to know more about <b>k8s<\/b>? In our Youtube channel, we explain you from a business perspective, what needs it covers, its advantages, and when to use it. \ud83d\udc47<\/span><\/p>\n<p><iframe loading=\"lazy\" title=\"YouTube video player\" src=\"https:\/\/www.youtube.com\/embed\/RpUNIZoCl7g\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/p>\n<h2><strong><span style=\"font-size: 25px;\">Geko and Kubernetes &#8211; Why choose Geko Cloud?<\/span><\/strong><\/h2>\n<p><span style=\"font-size: 18px;\">If you are using or considering using <b>containers<\/b> to streamline building, scaling, and deploying your <a href=\"https:\/\/geko.cloud\/en\/cloud-services\/microservices-architecture-docker\/\"><b>microservices<\/b><\/a>-based application, <b>Kubernetes<\/b> gives you the ability to manage the infrastructure using declarative YAML files.<\/span><\/p>\n<p><span style=\"font-size: 18px;\"><b>Container<\/b> lifecycle management with <b>Kubernetes<\/b> using your deployments and operators along with a <a href=\"https:\/\/geko.cloud\/en\/devops\/\"><b>DevOps<\/b><\/a> approach allows software development and IT operations to adapt to support the <b>CI\/CD<\/b> channel. At <b>Geko Cloud<\/b> we are at your disposal if you are looking for a partner to implement <b>Kubernetes<\/b>, <a href=\"https:\/\/geko.cloud\/en\/cloud-services\/migration\/\"><b>migrate to the cloud<\/b><\/a>, move to a <a href=\"https:\/\/geko.cloud\/en\/cloud-services\/microservices-architecture-docker\/\"><b>microservices<\/b><\/a> model or manage your platform in the <b>cloud<\/b>.\u00a0<a href=\"https:\/\/geko.cloud\/en\/contact\/\">Contact us<\/a> to find out more about our <a href=\"https:\/\/geko.cloud\/en\/cloud-services\/\">services<\/a>.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is container orchestration? Before we dive into Kubernetes, first of all, you need to know what container orchestration is. Container technologies have radically changed the landscape of systems and the way software is packaged and deployed. Some of the benefits that containers bring are portability, agility, speed, immutability, and fault isolation. A container orchestrator [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":1826,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[70,71],"tags":[90],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Kubernetes? - Geko Cloud<\/title>\n<meta name=\"description\" content=\"In our post we explain the basics about Kubernetes or k8s, when and how to use it, and much more. Don&#039;t wait any longer and read our post.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Kubernetes? - Geko Cloud\" \/>\n<meta property=\"og:description\" content=\"In our post we explain the basics about Kubernetes or k8s, when and how to use it, and much more. Don&#039;t wait any longer and read our post.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/\" \/>\n<meta property=\"og:site_name\" content=\"Geko Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-30T09:22:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-03T15:41:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/geko.cloud\/wp-content\/uploads\/cabecera-kubernetes-01.png\" \/>\n\t<meta property=\"og:image:width\" content=\"15051\" \/>\n\t<meta property=\"og:image:height\" content=\"6367\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jose Luis S\u00e1nchez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@geko_cloud\" \/>\n<meta name=\"twitter:site\" content=\"@geko_cloud\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/\"},\"author\":{\"name\":\"Jose Luis S\u00e1nchez\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/d06aff498ebfbc75b5010ebe92af41ed\"},\"headline\":\"What is Kubernetes?\",\"datePublished\":\"2021-07-30T09:22:33+00:00\",\"dateModified\":\"2021-11-03T15:41:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/\"},\"wordCount\":884,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/cabecera-kubernetes-01.png\",\"keywords\":[\"Kubernetes\"],\"articleSection\":[\"DevOps\",\"Featured post\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/\",\"url\":\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/\",\"name\":\"What is Kubernetes? - Geko Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/cabecera-kubernetes-01.png\",\"datePublished\":\"2021-07-30T09:22:33+00:00\",\"dateModified\":\"2021-11-03T15:41:17+00:00\",\"description\":\"In our post we explain the basics about Kubernetes or k8s, when and how to use it, and much more. Don't wait any longer and read our post.\",\"breadcrumb\":{\"@id\":\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#primaryimage\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/cabecera-kubernetes-01.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/cabecera-kubernetes-01.png\",\"width\":15051,\"height\":6367,\"caption\":\"kubernetes logo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/geko.cloud\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is Kubernetes?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/geko.cloud\/es\/#website\",\"url\":\"https:\/\/geko.cloud\/es\/\",\"name\":\"Geko Cloud\",\"description\":\"Servicios de consultor\u00eda cloud y devops\",\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/geko.cloud\/es\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/geko.cloud\/es\/#organization\",\"name\":\"Geko Cloud\",\"url\":\"https:\/\/geko.cloud\/es\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png\",\"width\":1650,\"height\":809,\"caption\":\"Geko Cloud\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/geko_cloud\",\"https:\/\/www.instagram.com\/gekocloud\/\",\"https:\/\/www.linkedin.com\/company\/gekocloud\",\"https:\/\/www.youtube.com\/channel\/UC5EFLCqUM7fEaXSa_0nWowQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/d06aff498ebfbc75b5010ebe92af41ed\",\"name\":\"Jose Luis S\u00e1nchez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ebfd055d4dba456220c682523fcc237c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ebfd055d4dba456220c682523fcc237c?s=96&d=mm&r=g\",\"caption\":\"Jose Luis S\u00e1nchez\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Kubernetes? - Geko Cloud","description":"In our post we explain the basics about Kubernetes or k8s, when and how to use it, and much more. Don't wait any longer and read our post.","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:\/\/geko.cloud\/es\/que-es-kubernetes\/","og_locale":"en_US","og_type":"article","og_title":"What is Kubernetes? - Geko Cloud","og_description":"In our post we explain the basics about Kubernetes or k8s, when and how to use it, and much more. Don't wait any longer and read our post.","og_url":"https:\/\/geko.cloud\/es\/que-es-kubernetes\/","og_site_name":"Geko Cloud","article_published_time":"2021-07-30T09:22:33+00:00","article_modified_time":"2021-11-03T15:41:17+00:00","og_image":[{"width":15051,"height":6367,"url":"https:\/\/geko.cloud\/wp-content\/uploads\/cabecera-kubernetes-01.png","type":"image\/png"}],"author":"Jose Luis S\u00e1nchez","twitter_card":"summary_large_image","twitter_creator":"@geko_cloud","twitter_site":"@geko_cloud","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#article","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/que-es-kubernetes\/"},"author":{"name":"Jose Luis S\u00e1nchez","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/d06aff498ebfbc75b5010ebe92af41ed"},"headline":"What is Kubernetes?","datePublished":"2021-07-30T09:22:33+00:00","dateModified":"2021-11-03T15:41:17+00:00","mainEntityOfPage":{"@id":"https:\/\/geko.cloud\/es\/que-es-kubernetes\/"},"wordCount":884,"commentCount":0,"publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"image":{"@id":"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/cabecera-kubernetes-01.png","keywords":["Kubernetes"],"articleSection":["DevOps","Featured post"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/geko.cloud\/es\/que-es-kubernetes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/geko.cloud\/es\/que-es-kubernetes\/","url":"https:\/\/geko.cloud\/es\/que-es-kubernetes\/","name":"What is Kubernetes? - Geko Cloud","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#primaryimage"},"image":{"@id":"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/cabecera-kubernetes-01.png","datePublished":"2021-07-30T09:22:33+00:00","dateModified":"2021-11-03T15:41:17+00:00","description":"In our post we explain the basics about Kubernetes or k8s, when and how to use it, and much more. Don't wait any longer and read our post.","breadcrumb":{"@id":"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/geko.cloud\/es\/que-es-kubernetes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#primaryimage","url":"https:\/\/geko.cloud\/wp-content\/uploads\/cabecera-kubernetes-01.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/cabecera-kubernetes-01.png","width":15051,"height":6367,"caption":"kubernetes logo"},{"@type":"BreadcrumbList","@id":"https:\/\/geko.cloud\/es\/que-es-kubernetes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/geko.cloud\/en\/"},{"@type":"ListItem","position":2,"name":"What is Kubernetes?"}]},{"@type":"WebSite","@id":"https:\/\/geko.cloud\/es\/#website","url":"https:\/\/geko.cloud\/es\/","name":"Geko Cloud","description":"Servicios de consultor\u00eda cloud y devops","publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/geko.cloud\/es\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/geko.cloud\/es\/#organization","name":"Geko Cloud","url":"https:\/\/geko.cloud\/es\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/","url":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png","width":1650,"height":809,"caption":"Geko Cloud"},"image":{"@id":"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/geko_cloud","https:\/\/www.instagram.com\/gekocloud\/","https:\/\/www.linkedin.com\/company\/gekocloud","https:\/\/www.youtube.com\/channel\/UC5EFLCqUM7fEaXSa_0nWowQ"]},{"@type":"Person","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/d06aff498ebfbc75b5010ebe92af41ed","name":"Jose Luis S\u00e1nchez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ebfd055d4dba456220c682523fcc237c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ebfd055d4dba456220c682523fcc237c?s=96&d=mm&r=g","caption":"Jose Luis S\u00e1nchez"}}]}},"_links":{"self":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/2510"}],"collection":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/comments?post=2510"}],"version-history":[{"count":4,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/2510\/revisions"}],"predecessor-version":[{"id":5174,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/2510\/revisions\/5174"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/media\/1826"}],"wp:attachment":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/media?parent=2510"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/categories?post=2510"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/tags?post=2510"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}