{"id":1919,"date":"2021-05-18T08:53:57","date_gmt":"2021-05-18T06:53:57","guid":{"rendered":"https:\/\/geko2.factoryfy.com\/?p=2631"},"modified":"2021-11-04T09:59:58","modified_gmt":"2021-11-04T08:59:58","slug":"harbor-instalar-un-registry-privado-en-kubernetes","status":"publish","type":"post","link":"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/","title":{"rendered":"Harbor: Instalar un registry privado en Kubernetes"},"content":{"rendered":"<p><a href=\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/\">Kubernetes<\/a> es un <strong>orquestador de contenedores<\/strong> y por lo tanto necesitar\u00e1s alg\u00fan lugar para <strong>almacenar tus im\u00e1genes docker<\/strong> de forma que Kubernetes pueda descargarlas y usarlas. Hay una gran variedad de soluciones para elegir: cloud registry, dockerhub, un registry privado en una vm&#8230; o un registry privado en <a href=\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/\">Kubernetes<\/a>.<\/p>\n<p>Hoy vamos a hablar sobre esta \u00faltima opci\u00f3n; una soluci\u00f3n para desplegar un registry <strong>dentro del propio Kubernetes: Harbor<\/strong>.<\/p>\n<h3>\u00bfPero qu\u00e9 es Harbor?<\/h3>\n<p><strong>Harbor<\/strong> es open-source y es parte de la <a href=\"https:\/\/cncf.io\/\">Cloud Native Computing Foundation<\/a>. Implementa funcionalidades b\u00e1sicas como por ejemplo autenticaci\u00f3n basada en roles (con <strong><a href=\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/\">soporte para LDAP<\/a><\/strong>) y tambi\u00e9n ofrece otras caracter\u00edsticas m\u00e1s avanzadas como la habilidad para subir y gestionar <strong>charts de helm<\/strong>, realizar escaneo de vulnerabilidades sobre las im\u00e1genes subidas, y mucho m\u00e1s.<\/p>\n<h3>Suficiente charla, \u00a1quiero un hands-on!<\/h3>\n<p>Vamos a ver c\u00f3mo poner en marcha <strong>Harbor<\/strong> en nuestro cl\u00faster. Asumiremos que cuentas con los siguientes requisitos:<\/p>\n<ul>\n<li>Tienes un <strong>cl\u00faster de k8s<\/strong> con un ingress-controller. Minikube es aceptable.<\/li>\n<li>Tienes <b>helm<\/b> instalado (lee sobre <b><a href=\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/\">c\u00f3mo instalar helm<\/a><\/b>)<\/li>\n<li>Tienes el cliente de <strong>docker<\/strong> instalado localmente<\/li>\n<li>Te sobran 10 minutos \ud83d\ude09<\/li>\n<\/ul>\n<p><strong>IMPORTANTE<\/strong>: Deber\u00edas tener cert-manager instalado en el cl\u00faster ya que Harbor requiere tener un certificado HTTPS v\u00e1lido para permitir el login desde la terminal.<\/p>\n<h3>Instalando Harbor<\/h3>\n<p>Vamos a usar el chart de helm oficial para esta parte. Para hacerlo, primero necesitar\u00e1s a\u00f1adir el repo de harbor:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">helm repo add harbor https:\/\/helm.goharbor.io<\/pre>\n<\/div>\n<p>Para personalizar tu despliegue puedes crear un nuevo fichero values.yaml, reemplaza el contenido con los valores m\u00e1s adecuados para ti:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">expose:\r\n  type: ingress\r\n  tls: \r\n    commonName: \"TU_CN\"\r\n  ingress:\r\n    hosts:\r\n      core: \"harbor.TU_DOMINIO\"\r\npersistence:\r\n  enabled: true\r\nexternalURL: \"https:\/\/harbor.TU_DOMINIO\"\r\nharborAdminPassword: admin<\/pre>\n<\/div>\n<p>Ahroa crearemos un nuevo namespace y desplegaremos el chart. Los valores a usar depender\u00e1n de tus necesidades:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">kubectl create harbor-system\r\nhelm install --wait harbor --namespace harbor-system harbor\/harbor -f values.yaml<\/pre>\n<\/div>\n<p>En cuanto termine la instalaci\u00f3n (puede tomar hasta 5 minutes) ya puedes ir al dominio usando tu navegador web y hacer login con el usuario admin y el password que definiste en el values.yaml. Tras el login deber\u00edas ver algo muy parecido a \u00e9sto:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-4578\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/harbor_main.png\" alt=\"Harbor main screen\" width=\"602\" height=\"413\" \/><\/p>\n<h3>Subiendo tu primera imagen<\/h3>\n<p>Primero, debes hacer login desde el terminal usando el comando docker login y proporcionando tus credenciales:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">docker login https:\/\/harbor.YOUR_DOMAIN<\/pre>\n<\/div>\n<p><em>*Ten en cuenta de que para poder acceder a harbor a trav\u00e9s de este dominio deber\u00e1s crear una <strong>entrada de DNS<\/strong> en tu gestor de DNS y es imprescindible contar con un <strong>certificado HTTPS v\u00e1lido<\/strong><\/em><\/p>\n<p>Haz click sobre \u00abNEW PROJECT\u00bb y rellena los inputs:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4579\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/harbor_new_project.png\" alt=\"Harbor create new project\" width=\"473\" height=\"266\" \/><\/p>\n<p>Tras hacer click en OK ya deber\u00edas poder ver tu nuevo proyecto en la p\u00e1gina principal.<\/p>\n<p>Ahora, vamos a probar a subir una nueva imagen a este proyecto. Haremos pull de la imagen oficial de nginx, pondremos un tag con la direcci\u00f3n de tu harbor\/proyecto y haremos el push:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">docker pull nginx\r\ndocker tag nginx harbor.YOUR_DOMAIN\/myproject\/nginx:latest\r\ndocker push harbor.YOUR_DOMAIN\/myproject\/nginx:latest<\/pre>\n<\/div>\n<p>Si todo ha ido bien, deber\u00edas poder ver la imagen de nginx dentro del proyecto que creaste en harbor:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4580\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/harbor_new_image.png\" alt=\"Harbor new nginx image\" width=\"805\" height=\"125\" \/><\/p>\n<h3>Y ahora, \u00bfqu\u00e9?<\/h3>\n<p>Has desplegado un nuevo Harbor registry privado y ya has subido tu primera imagen.<\/p>\n<p>En la pr\u00f3xima entrada de esta serie veremos c\u00f3mo crear las credenciales necesarias para que tus pods sean capaces de hacer pull de las im\u00e1genes que subas en tu Harbor privado y veremos c\u00f3mo indicar a <a href=\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/\">Kubernetes<\/a> cuando y c\u00f3mo puede usar esas credenciales.<\/p>\n<hr \/>\n<p>Espero que hayas disfrutado de este post y te animo a que <a href=\"https:\/\/geko.cloud\/es\/blog\/labs\/\">revises nuestro blog para leer otrosposts<\/a> que puedan ser de tu inter\u00e9s. <a href=\"https:\/\/geko.cloud\/es\/contacto\/\">No dudes en contactarnos<\/a> si deseas que te ayudemos en tus proyectos.<\/p>\n<p>\u00a1Nos vemos en la pr\u00f3xima entrada!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Kubernetes es un orquestador de contenedores y por lo tanto necesitar\u00e1s alg\u00fan lugar para almacenar tus im\u00e1genes docker de forma que Kubernetes pueda descargarlas y usarlas. Hay una gran variedad de soluciones para elegir: cloud registry, dockerhub, un registry privado en una vm&#8230; o un registry privado en Kubernetes. Hoy vamos a hablar sobre esta [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":1926,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[18],"tags":[50,51,37],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Harbor: Instalar un registry privado en Kubernetes - Geko Cloud<\/title>\n<meta name=\"description\" content=\"En nuestro \u00faltimo post hablamos sobre una soluci\u00f3n para desplegar un registry dentro del propio Kubernetes: Harbor.\" \/>\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\/harbor-instalar-un-registry-privado-en-kubernetes\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Harbor: Instalar un registry privado en Kubernetes - Geko Cloud\" \/>\n<meta property=\"og:description\" content=\"En nuestro \u00faltimo post hablamos sobre una soluci\u00f3n para desplegar un registry dentro del propio Kubernetes: Harbor.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/\" \/>\n<meta property=\"og:site_name\" content=\"Geko Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2021-05-18T06:53:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-04T08:59:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/geko.cloud\/wp-content\/uploads\/harbor_in_kubernetes_part1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"975\" \/>\n\t<meta property=\"og:image:height\" content=\"350\" \/>\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\/harbor-instalar-un-registry-privado-en-kubernetes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/\"},\"author\":{\"name\":\"Xavi Miranda\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/d496fb33d6ad37fe134ef9fb225dc732\"},\"headline\":\"Harbor: Instalar un registry privado en Kubernetes\",\"datePublished\":\"2021-05-18T06:53:57+00:00\",\"dateModified\":\"2021-11-04T08:59:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/\"},\"wordCount\":590,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/harbor_in_kubernetes_part1.png\",\"keywords\":[\"Docker\",\"Harbor\",\"Kubernetes\"],\"articleSection\":[\"Labs\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/\",\"url\":\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/\",\"name\":\"Harbor: Instalar un registry privado en Kubernetes - Geko Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/harbor_in_kubernetes_part1.png\",\"datePublished\":\"2021-05-18T06:53:57+00:00\",\"dateModified\":\"2021-11-04T08:59:58+00:00\",\"description\":\"En nuestro \u00faltimo post hablamos sobre una soluci\u00f3n para desplegar un registry dentro del propio Kubernetes: Harbor.\",\"breadcrumb\":{\"@id\":\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#primaryimage\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/harbor_in_kubernetes_part1.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/harbor_in_kubernetes_part1.png\",\"width\":975,\"height\":350,\"caption\":\"Harbor Kubernetes logo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/geko.cloud\/es\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Harbor: Instalar un registry privado en 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\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/geko.cloud\/es\/#organization\",\"name\":\"Geko Cloud\",\"url\":\"https:\/\/geko.cloud\/es\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@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\":\"es\",\"@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":"Harbor: Instalar un registry privado en Kubernetes - Geko Cloud","description":"En nuestro \u00faltimo post hablamos sobre una soluci\u00f3n para desplegar un registry dentro del propio Kubernetes: Harbor.","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\/harbor-instalar-un-registry-privado-en-kubernetes\/","og_locale":"es_ES","og_type":"article","og_title":"Harbor: Instalar un registry privado en Kubernetes - Geko Cloud","og_description":"En nuestro \u00faltimo post hablamos sobre una soluci\u00f3n para desplegar un registry dentro del propio Kubernetes: Harbor.","og_url":"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/","og_site_name":"Geko Cloud","article_published_time":"2021-05-18T06:53:57+00:00","article_modified_time":"2021-11-04T08:59:58+00:00","og_image":[{"width":975,"height":350,"url":"https:\/\/geko.cloud\/wp-content\/uploads\/harbor_in_kubernetes_part1.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\/harbor-instalar-un-registry-privado-en-kubernetes\/#article","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/"},"author":{"name":"Xavi Miranda","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/d496fb33d6ad37fe134ef9fb225dc732"},"headline":"Harbor: Instalar un registry privado en Kubernetes","datePublished":"2021-05-18T06:53:57+00:00","dateModified":"2021-11-04T08:59:58+00:00","mainEntityOfPage":{"@id":"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/"},"wordCount":590,"commentCount":0,"publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"image":{"@id":"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/harbor_in_kubernetes_part1.png","keywords":["Docker","Harbor","Kubernetes"],"articleSection":["Labs"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/","url":"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/","name":"Harbor: Instalar un registry privado en Kubernetes - Geko Cloud","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#primaryimage"},"image":{"@id":"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/harbor_in_kubernetes_part1.png","datePublished":"2021-05-18T06:53:57+00:00","dateModified":"2021-11-04T08:59:58+00:00","description":"En nuestro \u00faltimo post hablamos sobre una soluci\u00f3n para desplegar un registry dentro del propio Kubernetes: Harbor.","breadcrumb":{"@id":"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#primaryimage","url":"https:\/\/geko.cloud\/wp-content\/uploads\/harbor_in_kubernetes_part1.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/harbor_in_kubernetes_part1.png","width":975,"height":350,"caption":"Harbor Kubernetes logo"},{"@type":"BreadcrumbList","@id":"https:\/\/geko.cloud\/es\/harbor-instalar-un-registry-privado-en-kubernetes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/geko.cloud\/es\/"},{"@type":"ListItem","position":2,"name":"Harbor: Instalar un registry privado en 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":"es"},{"@type":"Organization","@id":"https:\/\/geko.cloud\/es\/#organization","name":"Geko Cloud","url":"https:\/\/geko.cloud\/es\/","logo":{"@type":"ImageObject","inLanguage":"es","@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":"es","@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\/es\/wp-json\/wp\/v2\/posts\/1919"}],"collection":[{"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/comments?post=1919"}],"version-history":[{"count":5,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts\/1919\/revisions"}],"predecessor-version":[{"id":7866,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts\/1919\/revisions\/7866"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/media\/1926"}],"wp:attachment":[{"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/media?parent=1919"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/categories?post=1919"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/tags?post=1919"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}