{"id":2613,"date":"2020-10-30T09:48:31","date_gmt":"2020-10-30T08:48:31","guid":{"rendered":"https:\/\/geko2.factoryfy.com\/how-to-install-cert-manager-with-http-validation-in-kubernetes\/"},"modified":"2021-11-03T18:43:19","modified_gmt":"2021-11-03T17:43:19","slug":"how-to-install-cert-manager-with-http-validation-in-kubernetes","status":"publish","type":"post","link":"https:\/\/geko.cloud\/en\/how-to-install-cert-manager-with-http-validation-in-kubernetes\/","title":{"rendered":"How-to: Install cert-manager with HTTP validation in Kubernetes"},"content":{"rendered":"<p>Struggling with certificates can be a headache, but luckily for us in <a href=\"https:\/\/geko.cloud\/en\/what-is-kubernetes\/\"><b>Kubernetes<\/b><\/a> we can use <b>cert-manager<\/b> and let it manage everything to easily create any certificate that we need.<\/p>\n<p>In this <b>how-to<\/b> we will cover how to install <b>cert-manager<\/b> in our cluster as well as how to perform <b>HTTP validation<\/b>. We will also learn how to <b>create a new certificate<\/b> for our host by just <b>appending an annotation<\/b> to our ingress object.<\/p>\n<h3>Sounds good! What do I need?<\/h3>\n<p>I expect you to meet the following requirements:<\/p>\n<ul>\n<li>You have a working\u00a0<b>k8s cluster<\/b> with nginx ingress-controller<\/li>\n<li>You have\u00a0<b>helm<\/b>\u00a0installed (read\u00a0<b><a href=\"https:\/\/geko.cloud\/en\/install-grafana-ldap-kubernetes-helm\/\">how to install helm<\/a><\/b>)<\/li>\n<li>You have a domain you own targeting your cluster<\/li>\n<li>Desire to learn new things \ud83d\ude42<\/li>\n<\/ul>\n<h3>Let&#8217;s start!<\/h3>\n<p>First of all we need to add the helm chart repository for cert-manager:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">helm repo add jetstack https:\/\/charts.jetstack.io<\/pre>\n<\/div>\n<p>Now, we proceed to create the namespace and deploy cert-manager in it:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">kubectl create ns cert-manager\r\nhelm upgrade --install cert-manager \r\n  --namespace cert-manager \r\n  --version v1.0.3 \r\n  jetstack\/cert-manager \r\n  --set installCRDs=true<\/pre>\n<\/div>\n<p>Just give it a few seconds to finish and you should receive a success message.<\/p>\n<h3>Creating a ClusterIssuer<\/h3>\n<p>We can use either an <b>Issuer<\/b> or a <b>ClusterIssuer<\/b> (namespace vs cluster-scoped). It&#8217;s the same exact thing, only changes the scope. The Issuer\/ClusterIssuer represents the CA from which we want to get the new certificate, in this case we are using <b>LetsEncrypt<\/b>.<\/p>\n<p>Note that the ClusterIssuer is actually a pretty simple object. The name and the secret name can be anything:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">apiVersion: cert-manager.io\/v1alpha3\r\nkind: ClusterIssuer\r\nmetadata:\r\n  name: my-cluster-issuer\r\nspec:\r\n  acme:\r\n    email: {{ your email }}\r\n    privateKeySecretRef:\r\n      name: my-cluster-issuer\r\n    server: https:\/\/acme-v02.api.letsencrypt.org\/directory\r\n    solvers:\r\n      - http01:\r\n         ingress:\r\n           class: nginx<\/pre>\n<\/div>\n<h3>Issuing a new certificate<\/h3>\n<p>We are going to deploy a simple nginx, expose it as a service and then create an ingress for it. So, go ahead:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">kubectl create deployment nginx --image nginx:alpine --namespace test\r\nkubectl expose deployment nginx --port 80 --target-port 80 --namespace test<\/pre>\n<\/div>\n<p>Create a new ingress object to make it accessible through the ingress controller. Remember to replace with your actual domain in all ocurrences:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">apiVersion: extensions\/v1beta1\r\nkind: Ingress\r\nmetadata:\r\n  annotations:\r\n    nginx.ingress.kubernetes.io\/ssl-redirect: \"true\"\r\n  labels:\r\n    app: nginx\r\n  name: nginx\r\n  namespace: test\r\nspec:\r\n  rules:\r\n  - host: nginx.{{ your domain }}\r\n    http:\r\n      paths:\r\n      - backend:\r\n          serviceName: nginx\r\n          servicePort: 80\r\n        path: \/\r\n  tls:\r\n  - hosts:\r\n    - nginx.{{ your domain }}\r\n    secretName: nginx-certificate<\/pre>\n<\/div>\n<p>Apply the new manifest:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">kubectl apply -f ingress.yaml<\/pre>\n<\/div>\n<p>If you try to access now to the host defined in the ingress, you&#8217;ll see an error message stating that &#8220;Your connection is not private&#8221;. To fix this, we are going to <b>issue a new certificate<\/b>. Edit the ingress that you just created and add the following annotation, replacing the value for whichever was the name you put in your ClusterIssuer:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">cert-manager.io\/cluster-issuer: my-cluster-issuer<\/pre>\n<\/div>\n<p>Apply the ingress again (or save changes if your editing it) and now try to check the &#8220;cert&#8221; objects. You should get something like this:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">kubectl get cert -n test\r\n\r\nNAME                READY   SECRET              AGE\r\nnginx-certificate   False   nginx-certificate   21s\r\n<\/pre>\n<\/div>\n<p>Now wait for about 1 or 2 minutes and when you check again&#8230;<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">kubectl get cert -n test\r\n\r\nNAME                READY   SECRET              AGE\r\nnginx-certificate   <b>True<\/b>    nginx-certificate   93s<\/pre>\n<\/div>\n<p>&#8230;we got our certificate! Go test it by refreshing the page or just opening a new tab and you should get the Nginx welcome screen. If you inspect the certificate you&#8217;ll see that it was indeed issued by LetsEncrypt:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-2793\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/nginx_valid_cert-1.png\" alt=\"Nginx letsencrypt certificate by cert-manager\" width=\"1000\" height=\"164\" \/><\/p>\n<h3>Summarizing<\/h3>\n<p>What we saw here is:<\/p>\n<ul>\n<li>How to install cert-manager<\/li>\n<li>How to setup a new ClusterIssuer<\/li>\n<li>How to easily issue a new certificate<\/li>\n<\/ul>\n<p>It was pretty easy overall, don&#8217;t you think so? In fact, when you know what to do you can easily replicate this setup virtually to any cluster in a matter of very few minutes.<\/p>\n<p>Cert-manager will take care of all your <b>certificate renewals<\/b>. You can also create other Issuers or ClusterIssuers that support other CA or use other validation methods (DNS validation) but this is a more advance topic for the future.<\/p>\n<p>I hope that you enjoyed this how-to and that it will be useful to you. Remember that if you need anything <a href=\"https:\/\/geko.cloud\/en\/contact\/\">we will be glad to hear from you<\/a>! Also check our blog for <a href=\"https:\/\/geko.cloud\/en\/blog\/labs\/\">more useful posts<\/a> like this one!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Struggling with certificates can be a headache, but luckily for us in Kubernetes we can use cert-manager and let it manage everything to easily create any certificate that we need. In this how-to we will cover how to install cert-manager in our cluster as well as how to perform HTTP validation. We will also learn [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":2186,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[67],"tags":[90,86],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How-to: Install cert-manager with HTTP validation in Kubernetes - Geko Cloud<\/title>\n<meta name=\"description\" content=\"How to install cert-manager in our cluster as well as how to perform HTTP validation and how to create a new certificate for our host.\" \/>\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\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How-to: Install cert-manager with HTTP validation in Kubernetes - Geko Cloud\" \/>\n<meta property=\"og:description\" content=\"How to install cert-manager in our cluster as well as how to perform HTTP validation and how to create a new certificate for our host.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/\" \/>\n<meta property=\"og:site_name\" content=\"Geko Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-30T08:48:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-03T17:43:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/geko.cloud\/wp-content\/uploads\/cert-manager-header.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1100\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Xavi Miranda\" \/>\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\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/\"},\"author\":{\"name\":\"Xavi Miranda\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/d496fb33d6ad37fe134ef9fb225dc732\"},\"headline\":\"How-to: Install cert-manager with HTTP validation in Kubernetes\",\"datePublished\":\"2020-10-30T08:48:31+00:00\",\"dateModified\":\"2021-11-03T17:43:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/\"},\"wordCount\":561,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/cert-manager-header.png\",\"keywords\":[\"Kubernetes\",\"Ngnix\"],\"articleSection\":[\"Labs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/\",\"url\":\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/\",\"name\":\"How-to: Install cert-manager with HTTP validation in Kubernetes - Geko Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/cert-manager-header.png\",\"datePublished\":\"2020-10-30T08:48:31+00:00\",\"dateModified\":\"2021-11-03T17:43:19+00:00\",\"description\":\"How to install cert-manager in our cluster as well as how to perform HTTP validation and how to create a new certificate for our host.\",\"breadcrumb\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#primaryimage\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/cert-manager-header.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/cert-manager-header.png\",\"width\":1100,\"height\":400,\"caption\":\"Cert-manager letsencrypt kubernetes\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/geko.cloud\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How-to: Install cert-manager with HTTP validation in 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\/d496fb33d6ad37fe134ef9fb225dc732\",\"name\":\"Xavi Miranda\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/aa0e61120a4b0a629b0679d9e341758d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/aa0e61120a4b0a629b0679d9e341758d?s=96&d=mm&r=g\",\"caption\":\"Xavi Miranda\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How-to: Install cert-manager with HTTP validation in Kubernetes - Geko Cloud","description":"How to install cert-manager in our cluster as well as how to perform HTTP validation and how to create a new certificate for our host.","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\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/","og_locale":"en_US","og_type":"article","og_title":"How-to: Install cert-manager with HTTP validation in Kubernetes - Geko Cloud","og_description":"How to install cert-manager in our cluster as well as how to perform HTTP validation and how to create a new certificate for our host.","og_url":"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/","og_site_name":"Geko Cloud","article_published_time":"2020-10-30T08:48:31+00:00","article_modified_time":"2021-11-03T17:43:19+00:00","og_image":[{"width":1100,"height":400,"url":"https:\/\/geko.cloud\/wp-content\/uploads\/cert-manager-header.png","type":"image\/png"}],"author":"Xavi Miranda","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\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#article","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/"},"author":{"name":"Xavi Miranda","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/d496fb33d6ad37fe134ef9fb225dc732"},"headline":"How-to: Install cert-manager with HTTP validation in Kubernetes","datePublished":"2020-10-30T08:48:31+00:00","dateModified":"2021-11-03T17:43:19+00:00","mainEntityOfPage":{"@id":"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/"},"wordCount":561,"commentCount":0,"publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"image":{"@id":"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/cert-manager-header.png","keywords":["Kubernetes","Ngnix"],"articleSection":["Labs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/","url":"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/","name":"How-to: Install cert-manager with HTTP validation in Kubernetes - Geko Cloud","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#primaryimage"},"image":{"@id":"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/cert-manager-header.png","datePublished":"2020-10-30T08:48:31+00:00","dateModified":"2021-11-03T17:43:19+00:00","description":"How to install cert-manager in our cluster as well as how to perform HTTP validation and how to create a new certificate for our host.","breadcrumb":{"@id":"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#primaryimage","url":"https:\/\/geko.cloud\/wp-content\/uploads\/cert-manager-header.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/cert-manager-header.png","width":1100,"height":400,"caption":"Cert-manager letsencrypt kubernetes"},{"@type":"BreadcrumbList","@id":"https:\/\/geko.cloud\/es\/como-instalar-cert-manager-con-validacion-http-en-kubernetes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/geko.cloud\/en\/"},{"@type":"ListItem","position":2,"name":"How-to: Install cert-manager with HTTP validation in 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\/d496fb33d6ad37fe134ef9fb225dc732","name":"Xavi Miranda","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/aa0e61120a4b0a629b0679d9e341758d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/aa0e61120a4b0a629b0679d9e341758d?s=96&d=mm&r=g","caption":"Xavi Miranda"}}]}},"_links":{"self":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/2613"}],"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\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/comments?post=2613"}],"version-history":[{"count":3,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/2613\/revisions"}],"predecessor-version":[{"id":5249,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/2613\/revisions\/5249"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/media\/2186"}],"wp:attachment":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/media?parent=2613"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/categories?post=2613"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/tags?post=2613"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}