{"id":2634,"date":"2020-05-25T10:43:13","date_gmt":"2020-05-25T08:43:13","guid":{"rendered":"https:\/\/geko2.factoryfy.com\/kubernetes-backups-with-velero\/"},"modified":"2021-11-03T18:16:01","modified_gmt":"2021-11-03T17:16:01","slug":"kubernetes-backups-with-velero","status":"publish","type":"post","link":"https:\/\/geko.cloud\/en\/kubernetes-backups-with-velero\/","title":{"rendered":"Kubernetes backups with Velero"},"content":{"rendered":"<p>Talk about backup in a <a href=\"https:\/\/geko.cloud\/en\/what-is-kubernetes\/\">Kubernetes<\/a> cluster may sound weird and you may thing is not necessary as you can recreate at any time and in a very quick way any of your deployments or resources simply aplying a yaml file&#8230; but in some cases a backup of your resources can be very useful and can be our life guard.<\/p>\n<p><a href=\"https:\/\/velero.io\" target=\"_blank\" rel=\"noopener noreferrer\">Velero<\/a> is an open source tool to safely backup and restore, perform disaster recovery, and migrate <a href=\"https:\/\/geko.cloud\/en\/what-is-kubernetes\/\">Kubernetes<\/a> cluster resources and persistent volumes.<\/p>\n<p>That said, let&#8217;s enumerate in which situations Velero can help us:<\/p>\n<ul>\n<li>Backup stateful applications<\/li>\n<li>Backup applications installed in a non-declarative way<\/li>\n<li>Backup PVC information<\/li>\n<li>Cluster migrations<\/li>\n<li>Replicate cluster configurations (for example, from production to testing or development clusters)<\/li>\n<\/ul>\n<p>After the boring introduction we will start with the funny part. \ud83d\ude42<\/p>\n<h2>Install Velero on your kubernetes cluster<\/h2>\n<p>For this example <strong>we will use AWS EKS as our cloud provider<\/strong>.<\/p>\n<p>First of all, you must install the Velero client on your workstation. To to do that, simply go <a href=\"https:\/\/github.com\/vmware-tanzu\/velero\/releases\" target=\"_blank\" rel=\"noopener noreferrer\">here<\/a> and download the latest tarball according to your workstation operating system and extract the tarball:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">tar -xvf RELEASE-TARBALL-NAME.tar.gz<\/pre>\n<\/div>\n<p>and move the Velero binary to somewhere in your $PATH. On MacOS simply execute this:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">brew install velero<\/pre>\n<\/div>\n<p>Once we have the Velero client installed on our system we can proceed to install Velero on our<a href=\"https:\/\/geko.cloud\/en\/what-is-kubernetes\/\"> kubernetes<\/a> cluster. Just execute this:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">velero install \r\n    --provider aws \r\n    --bucket where-to-store-velero-backups \r\n    --use-restic \r\n    --secret-file ~\/.aws\/credentials \r\n    --use-volume-snapshots=false \r\n    --plugins=velero\/velero-plugin-for-aws:v1.0.0 \r\n    --backup-location-config region=eu-west-1<\/pre>\n<\/div>\n<p>By default Velero is installed in the velero namespace but you can change it adding the &#8211;namespace flag. Velero uses restic to store the data of attached volumes. When the installation finishes you should see something like this in your k8s cluster:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">$ kubectl get all -n velero\r\nNAME                          READY   STATUS    RESTARTS   AGE\r\npod\/restic-4xr6v              1\/1     Running   0          157d\r\npod\/restic-bg58w              1\/1     Running   0          157d\r\npod\/restic-hf2fm              1\/1     Running   0          157d\r\npod\/restic-w4rvh              1\/1     Running   0          157d\r\npod\/velero-57cd659988-bd6nd   1\/1     Running   0          73d\r\n\r\nNAME                    DESIRED   CURRENT   READY   UP-TO-DATE   AVAILABLE   NODE SELECTOR   AGE\r\ndaemonset.apps\/restic   4         4         4       4            4                     157d\r\n\r\nNAME                     READY   UP-TO-DATE   AVAILABLE   AGE\r\ndeployment.apps\/velero   1\/1     1            1           157d\r\n\r\nNAME                                DESIRED   CURRENT   READY   AGE\r\nreplicaset.apps\/velero-57cd659988   1         1         1       157d\r\n<\/pre>\n<\/div>\n<p>In our case, we have 4 worker nodes and restic is installed on every node we have (configures a daemonset).<\/p>\n<p>By default, Velero <strong>will not include the volumes in the backup<\/strong>. To backup them you have to add an annotation. You can add it like this:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">$ kubectl -n annotate pod\/your_pod backup.velero.io\/backup-volumes=volume_1,volume_2<\/pre>\n<\/div>\n<p>(add volumes comma separated) or simply add it in your deployment definition, for example:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">apiVersion: apps\/v1\r\nkind: Deployment\r\nmetadata:\r\n  name: myapp-deployment\r\nspec:\r\n  replicas: 1\r\n  selector:\r\n    matchLabels:\r\n      app: myapp\r\n  template:\r\n    metadata:\r\n      labels:\r\n        app: myapp\r\n      annotations:\r\n        backup.velero.io\/backup-volumes: myapp-logs\r\n    spec:\r\n      volumes:\r\n        - name: myapp-logs\r\n          persistentVolumeClaim:\r\n           claimName: myapp-logs\r\n      containers:\r\n      - image: myapp:latest\r\n        name: myapp\r\n        ports:\r\n        - containerPort: 80\r\n        volumeMounts:\r\n          - mountPath: \"\/var\/log\/myapp\"\r\n            name: myapp-logs\r\n            readOnly: false<\/pre>\n<\/div>\n<p><em>\u00a0Note: hostPath volumes are not supported, but the new local volume type is supported.<\/em><\/p>\n<p>And finally, some utilization examples to create, restore and show backups:<\/p>\n<p>One time backup:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\"># Backup ALL resources in the cluster (the whole cluster)\r\n$ velero backup create my-backup-20200515\r\n\r\n# Backup a namespace\r\n$ velero backup create my-backup-20200515 --include-namespaces namespace_to_backup\r\n\r\n# Backup ALL namespaces except ones specified\r\n$ velero backup create my-backup-20200515 --exclude-namespaces namespace_1_to_exclude,namespace_2_to_exclude\r\n<\/pre>\n<\/div>\n<p>Scheduled backup:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">$ velero create schedule myapp-backup-daily --schedule=\"0 7 * * *\" --include-namespaces namespace_to_backup<\/pre>\n<\/div>\n<p>Velero will backup <strong>all resources included in your selection<\/strong> (pods, deployments, services, &#8230;)<\/p>\n<p>The default backup retention is 30 days. If you want to change it add the &#8211;ttl flag. This flag allows you to specify the backup retention period with the value specified in hours, minutes and seconds in the form &#8211;ttl 24h0m0s. If not specified, a default TTL value of 30 days will be applied.<\/p>\n<p>Restore a backup:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">$ velero restore create --from-backup backup_name<\/pre>\n<\/div>\n<p>Some other useful commands:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\"># To show all stored backups list (name, status, creation and expiration date)\r\n$ velero get backups\r\n\r\n# To show one specific backup details\r\n$ velero describe backup backup_name\r\n<\/pre>\n<\/div>\n<p>Velero is quite easy to install and run and it can save your life in some circumstances. \ud83d\ude09<\/p>\n<hr \/>\n<p>I hope you&#8217;ve enjoyed this post and I encourage you to <a href=\"https:\/\/geko.cloud\/en\/blog\/\">check our blog for other posts<\/a> that you might find helpful. <a href=\"https:\/\/geko.cloud\/en\/contact\/\">Do not hesitate to contact us<\/a> if you would like us to help you with your projects.<\/p>\n<p>See you in the next post!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Talk about backup in a Kubernetes cluster may sound weird and you may thing is not necessary as you can recreate at any time and in a very quick way any of your deployments or resources simply aplying a yaml file&#8230; but in some cases a backup of your resources can be very useful and [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":2275,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[67],"tags":[72,90],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Kubernetes backups with Velero - Geko Cloud<\/title>\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\/kubernetes-backups-con-velero\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Kubernetes backups with Velero - Geko Cloud\" \/>\n<meta property=\"og:description\" content=\"Talk about backup in a Kubernetes cluster may sound weird and you may thing is not necessary as you can recreate at any time and in a very quick way any of your deployments or resources simply aplying a yaml file&#8230; but in some cases a backup of your resources can be very useful and [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/\" \/>\n<meta property=\"og:site_name\" content=\"Geko Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-25T08:43:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-03T17:16:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/geko.cloud\/wp-content\/uploads\/velero-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1009\" \/>\n\t<meta property=\"og:image:height\" content=\"364\" \/>\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\/kubernetes-backups-con-velero\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/\"},\"author\":{\"name\":\"Jose Luis S\u00e1nchez\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/d06aff498ebfbc75b5010ebe92af41ed\"},\"headline\":\"Kubernetes backups with Velero\",\"datePublished\":\"2020-05-25T08:43:13+00:00\",\"dateModified\":\"2021-11-03T17:16:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/\"},\"wordCount\":492,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/velero-1.png\",\"keywords\":[\"AWS\",\"Kubernetes\"],\"articleSection\":[\"Labs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/\",\"url\":\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/\",\"name\":\"Kubernetes backups with Velero - Geko Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/velero-1.png\",\"datePublished\":\"2020-05-25T08:43:13+00:00\",\"dateModified\":\"2021-11-03T17:16:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#primaryimage\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/velero-1.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/velero-1.png\",\"width\":1009,\"height\":364,\"caption\":\"velero logo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/geko.cloud\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Kubernetes backups with Velero\"}]},{\"@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":"Kubernetes backups with Velero - Geko Cloud","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\/kubernetes-backups-con-velero\/","og_locale":"en_US","og_type":"article","og_title":"Kubernetes backups with Velero - Geko Cloud","og_description":"Talk about backup in a Kubernetes cluster may sound weird and you may thing is not necessary as you can recreate at any time and in a very quick way any of your deployments or resources simply aplying a yaml file&#8230; but in some cases a backup of your resources can be very useful and [&hellip;]","og_url":"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/","og_site_name":"Geko Cloud","article_published_time":"2020-05-25T08:43:13+00:00","article_modified_time":"2021-11-03T17:16:01+00:00","og_image":[{"width":1009,"height":364,"url":"https:\/\/geko.cloud\/wp-content\/uploads\/velero-1.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\/kubernetes-backups-con-velero\/#article","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/"},"author":{"name":"Jose Luis S\u00e1nchez","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/d06aff498ebfbc75b5010ebe92af41ed"},"headline":"Kubernetes backups with Velero","datePublished":"2020-05-25T08:43:13+00:00","dateModified":"2021-11-03T17:16:01+00:00","mainEntityOfPage":{"@id":"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/"},"wordCount":492,"commentCount":0,"publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"image":{"@id":"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/velero-1.png","keywords":["AWS","Kubernetes"],"articleSection":["Labs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/","url":"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/","name":"Kubernetes backups with Velero - Geko Cloud","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#primaryimage"},"image":{"@id":"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/velero-1.png","datePublished":"2020-05-25T08:43:13+00:00","dateModified":"2021-11-03T17:16:01+00:00","breadcrumb":{"@id":"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#primaryimage","url":"https:\/\/geko.cloud\/wp-content\/uploads\/velero-1.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/velero-1.png","width":1009,"height":364,"caption":"velero logo"},{"@type":"BreadcrumbList","@id":"https:\/\/geko.cloud\/es\/kubernetes-backups-con-velero\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/geko.cloud\/en\/"},{"@type":"ListItem","position":2,"name":"Kubernetes backups with Velero"}]},{"@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\/2634"}],"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=2634"}],"version-history":[{"count":3,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/2634\/revisions"}],"predecessor-version":[{"id":5229,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/2634\/revisions\/5229"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/media\/2275"}],"wp:attachment":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/media?parent=2634"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/categories?post=2634"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/tags?post=2634"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}