{"id":2052,"date":"2021-02-15T14:05:32","date_gmt":"2021-02-15T13:05:32","guid":{"rendered":"https:\/\/geko2.factoryfy.com\/es\/?p=3600"},"modified":"2021-11-11T10:42:02","modified_gmt":"2021-11-11T09:42:02","slug":"certificado-expirado-kubernetes","status":"publish","type":"post","link":"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/","title":{"rendered":"Renueva tus certificados expirados en Kubernetes"},"content":{"rendered":"<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<div style=\"display: none;\"><\/div>\n<h2>Jenkins Kubernetes Pod Template<\/h2>\n<p>El otro d\u00eda nos encontramos con un problema no muy com\u00fan con uno de nuestros clientes&#8230;<\/p>\n<p>Resulta que <strong>algunas de las pipelines de Jenkins dejaron de funcionar<\/strong> ya que los nodos destinados a la ejecuci\u00f3n de ciertas tareas, usaban nodos <strong>Kubernetes<\/strong> como ejecutores y se quedaban esperando que los pods encargados arrancaran:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">[Pipeline] node\r\nStill waiting to schedule task\r\nAll nodes of label \u2018docker-build-xxxxxx\u2019 are offline<\/pre>\n<\/div>\n<p><a href=\"https:\/\/plugins.jenkins.io\/kubernetes\/\">Aqu\u00ed<\/a> os dejo un enlace con el plugin y su configuraci\u00f3n por si os interesa usar esta gran funcionalidad<\/p>\n<h2 class=\"lang-yaml s-code-block hljs\">El problema<\/h2>\n<p>Decidimos entrar a inspeccionar los nodos de Kubernetes para revisar la ejecuci\u00f3n de los pods del namespace destinado a estas tareas y la API de Kubernetes nos responde lo siguiente en todos los comandos que lanzamos desde nuestro kubectl:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">Unable to authenticate the request due to an error: [x509: certificate has expired or is not yet valid, x509: certificate has expired or is not yet valid]<\/pre>\n<\/div>\n<p>Bingo! resulta que <strong>el certificado de nuestro Kubernetes que se usa para el cliente kubectl y el etcd ha expirado<\/strong>. Esto representa un peque\u00f1o problema ya que para renovar un certificado en Kubernetes, utilizamos las conexiones a la API para hacerlo, pero estas llamadas requieren de tener un certificado v\u00e1lido.<\/p>\n<h4>Entonces qu\u00e9 hacemos??<\/h4>\n<h2>Geko al rescate<\/h2>\n<p>Existe una soluci\u00f3n que pasa por <strong>destruir los certificados a mano<\/strong> y con el comando kubeadm inicializarlos <strong>enga\u00f1ando al control plane para que crea que no existen certificados previos<\/strong>.<\/p>\n<p>Nuestro consejo es mover todos los certificados a una carpeta temporal para luego forzar la inicializaci\u00f3n de nuevos certificados y finalmente inicializar la config de todo el cluster de kubernetes<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">$ cd \/etc\/kubernetes\/pki\/ \r\n$ mkdir -p \/tmp\/oldcerts\/etcd\r\n$ mv {apiserver.crt,apiserver-etcd-client.key,apiserver-kubelet-client.crt,front-proxy-ca.crt,front-proxy-client.crt,front-proxy-client.key,front-proxy-ca.key,apiserver-kubelet-client.key,apiserver.key,apiserver-etcd-client.crt} \/tmp\/oldcerts \r\n$ mv etcd\/* \/tmp\/oldcerts\/etcd\r\n$ kubeadm init phase certs all --apiserver-advertise-address  \r\n$ cd \/etc\/kubernetes\/ \r\n$ mv {admin.conf,controller-manager.conf,kubelet.conf,scheduler.conf} \/tmp\/oldcerts \r\n$ kubeadm init phase kubeconfig all \r\n$ reboot<\/pre>\n<\/div>\n<p class=\"lang-yaml s-code-block hljs\">Tras el reinicio, nuestro cluster habr\u00e1 arrancado utilizando los nuevos certificados y ya podremos copiar las credenciales en nuestro directorio home o en nuestro sistema personal para poder hacer las llamadas a la API.<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">$ cp -i \/etc\/kubernetes\/admin.conf $HOME\/.kube\/config<\/pre>\n<\/div>\n<p>Una vez copiado el config , ya podemos utilizar el cliente kubectl para conectar a nuestro <strong>K8S<\/strong>.<\/p>\n<p>En nuestro caso eliminamos todos los pods hu\u00e9rfanos generados con jenkins en el namespace llamado \u00abcicd\u00bb:<\/p>\n<p>&nbsp;<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">for docker in `kubectl get pods -n cicd | awk {'print $1'}`;do kubectl delete pod $docker -ncicd;done<\/pre>\n<\/div>\n<p>&nbsp;<\/p>\n<p class=\"lang-yaml s-code-block hljs\">Esperamos que os sirva para rescatar vuestro <strong>Kubernetes<\/strong> con certificados expirados! y recordar dejarnos vuestros comentarios&#8230;<\/p>\n<p>Si os podemos ayudar con la configuraci\u00f3n, incidencias o mejoras de vuestra plataforma <strong>Kubernetes<\/strong>, no dud\u00e9is en <a href=\"https:\/\/geko.cloud\/es\/contacto\/\">contactarnos<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Jenkins Kubernetes Pod Template El otro d\u00eda nos encontramos con un problema no muy com\u00fan con uno de nuestros clientes&#8230; Resulta que algunas de las pipelines de Jenkins dejaron de funcionar ya que los nodos destinados a la ejecuci\u00f3n de ciertas tareas, usaban nodos Kubernetes como ejecutores y se quedaban esperando que los pods encargados [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":5411,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[18],"tags":[54,37],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Renueva tus certificados expirados en Kubernetes - Geko Cloud<\/title>\n<meta name=\"description\" content=\"Conoce como renovar tus certificados de Kubernetes paso a paso en nuestro post del blog.\" \/>\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\/certificado-expirado-kubernetes\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Renueva tus certificados expirados en Kubernetes - Geko Cloud\" \/>\n<meta property=\"og:description\" content=\"Conoce como renovar tus certificados de Kubernetes paso a paso en nuestro post del blog.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/\" \/>\n<meta property=\"og:site_name\" content=\"Geko Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-15T13:05:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-11T09:42:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/02\/expiration-feature.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1135\" \/>\n\t<meta property=\"og:image:height\" content=\"682\" \/>\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\/certificado-expirado-kubernetes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/\"},\"author\":{\"name\":\"Jose Luis S\u00e1nchez\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/d06aff498ebfbc75b5010ebe92af41ed\"},\"headline\":\"Renueva tus certificados expirados en Kubernetes\",\"datePublished\":\"2021-02-15T13:05:32+00:00\",\"dateModified\":\"2021-11-11T09:42:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/\"},\"wordCount\":353,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/02\/expiration-feature.png\",\"keywords\":[\"Jenkins\",\"Kubernetes\"],\"articleSection\":[\"Labs\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/\",\"url\":\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/\",\"name\":\"Renueva tus certificados expirados en Kubernetes - Geko Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/02\/expiration-feature.png\",\"datePublished\":\"2021-02-15T13:05:32+00:00\",\"dateModified\":\"2021-11-11T09:42:02+00:00\",\"description\":\"Conoce como renovar tus certificados de Kubernetes paso a paso en nuestro post del blog.\",\"breadcrumb\":{\"@id\":\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#primaryimage\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/02\/expiration-feature.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/02\/expiration-feature.png\",\"width\":1135,\"height\":682,\"caption\":\"expired SSL certificate\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/geko.cloud\/es\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Renueva tus certificados expirados 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\/d06aff498ebfbc75b5010ebe92af41ed\",\"name\":\"Jose Luis S\u00e1nchez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@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":"Renueva tus certificados expirados en Kubernetes - Geko Cloud","description":"Conoce como renovar tus certificados de Kubernetes paso a paso en nuestro post del blog.","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\/certificado-expirado-kubernetes\/","og_locale":"es_ES","og_type":"article","og_title":"Renueva tus certificados expirados en Kubernetes - Geko Cloud","og_description":"Conoce como renovar tus certificados de Kubernetes paso a paso en nuestro post del blog.","og_url":"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/","og_site_name":"Geko Cloud","article_published_time":"2021-02-15T13:05:32+00:00","article_modified_time":"2021-11-11T09:42:02+00:00","og_image":[{"width":1135,"height":682,"url":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/02\/expiration-feature.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\/certificado-expirado-kubernetes\/#article","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/"},"author":{"name":"Jose Luis S\u00e1nchez","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/d06aff498ebfbc75b5010ebe92af41ed"},"headline":"Renueva tus certificados expirados en Kubernetes","datePublished":"2021-02-15T13:05:32+00:00","dateModified":"2021-11-11T09:42:02+00:00","mainEntityOfPage":{"@id":"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/"},"wordCount":353,"commentCount":0,"publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"image":{"@id":"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/02\/expiration-feature.png","keywords":["Jenkins","Kubernetes"],"articleSection":["Labs"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/","url":"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/","name":"Renueva tus certificados expirados en Kubernetes - Geko Cloud","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#primaryimage"},"image":{"@id":"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/02\/expiration-feature.png","datePublished":"2021-02-15T13:05:32+00:00","dateModified":"2021-11-11T09:42:02+00:00","description":"Conoce como renovar tus certificados de Kubernetes paso a paso en nuestro post del blog.","breadcrumb":{"@id":"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#primaryimage","url":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/02\/expiration-feature.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/02\/expiration-feature.png","width":1135,"height":682,"caption":"expired SSL certificate"},{"@type":"BreadcrumbList","@id":"https:\/\/geko.cloud\/es\/certificado-expirado-kubernetes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/geko.cloud\/es\/"},{"@type":"ListItem","position":2,"name":"Renueva tus certificados expirados 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\/d06aff498ebfbc75b5010ebe92af41ed","name":"Jose Luis S\u00e1nchez","image":{"@type":"ImageObject","inLanguage":"es","@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\/es\/wp-json\/wp\/v2\/posts\/2052"}],"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\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/comments?post=2052"}],"version-history":[{"count":4,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts\/2052\/revisions"}],"predecessor-version":[{"id":5274,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts\/2052\/revisions\/5274"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/media\/5411"}],"wp:attachment":[{"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/media?parent=2052"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/categories?post=2052"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/tags?post=2052"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}