{"id":2647,"date":"2020-05-04T15:12:36","date_gmt":"2020-05-04T13:12:36","guid":{"rendered":"https:\/\/geko2.factoryfy.com\/how-to-run-grafana-in-docker-with-google-sso\/"},"modified":"2021-11-03T17:53:55","modified_gmt":"2021-11-03T16:53:55","slug":"how-to-run-grafana-in-docker-with-google-sso","status":"publish","type":"post","link":"https:\/\/geko.cloud\/en\/how-to-run-grafana-in-docker-with-google-sso\/","title":{"rendered":"How to run Grafana in docker with Google SSO"},"content":{"rendered":"<p>The aim of this lab is to learn how to setup <strong>Google SSO Authentication<\/strong> in Grafana and also how to demonstrate how fast we can spin up a new Grafana instance using the <strong>official docker container<\/strong> (no need to create custom images). If you are looking on how to setup <strong>LDAP authentication<\/strong> <a href=\"https:\/\/geko.cloud\/en\/install-grafana-ldap-kubernetes-helm\/\">you can check this post<\/a>.<\/p>\n<p>In Geko we decided to implement SSO with most of our internal services since we already work with Gsuite accounts, so it was the obvious way to go. Anyway you can keep the default user management functional if you still want to use it.<\/p>\n<p>Using SSO also makes it a lot easier for us when there are new incorporations in our team since they can <strong>sign up straight forward<\/strong> and we just need to set roles for them afterwards. Even for our clients we can allow their domains to set up accounts for them, if needed.<\/p>\n<p><strong>Estimated time to finish this lab<\/strong>: 20-30 minutes<\/p>\n<h3>Setup Google Cloud account<\/h3>\n<p>To set up SSO we need to create some credentials in Google Cloud. If you don\u2019t have a project created in GCP you will have to create one: https:\/\/console.cloud.google.com<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1813\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/image1.png\" alt=\"GCP New Project\" width=\"447\" height=\"312\" \/><\/p>\n<h4>Oauth consent screen<\/h4>\n<p>The consent screen is what users will see when they try to login to your application (Grafana). You can use this link to get to the configuration: https:\/\/console.cloud.google.com\/apis\/credentials\/consent\/edit?<\/p>\n<p>Here we can set some parameters to customize our consent screen. We are going to set the following values for this lab:<\/p>\n<ul>\n<li><strong>Application name<\/strong>: Grafana<\/li>\n<li><strong>Support email<\/strong>: Your email or any mail associated with your account<\/li>\n<li><strong>Authorized domains<\/strong>: These are the domains against which your users will be able to authenticate. You will usually use your organization domain name but you might be interested in allowing others too.<\/li>\n<\/ul>\n<p>As you can see the configuration is pretty straight forward. If you want to set any other parameter feel free, it\u2019s up to you.<\/p>\n<h4>Creating credentials<\/h4>\n<p>We will now set up the credentials that will be used in Grafana to authenticate against our Google Cloud project: https:\/\/console.cloud.google.com\/apis\/credentials?<\/p>\n<ul>\n<li>Click on \u201cCREATE CREDENTIALS\u201d and then \u201cOauth Client ID\u201d.<\/li>\n<li>Select \u201cWeb application\u201d, set the name to \u201cGrafana\u201c and click \u201cCreate\u201d<\/li>\n<\/ul>\n<p>Next, you will see a popup window with the following information:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1814\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/imagen2.png\" alt=\"GCP Oauth2 client created\" width=\"396\" height=\"260\" \/><\/p>\n<p><strong>Warning!<\/strong> Store your Client ID and Client Secret in a secure location.<\/p>\n<h3>Setup Grafana<\/h3>\n<p>I assume you already have setup docker service in your local machine. If you have not, get started here: https:\/\/docs.docker.com\/get-docker\/<\/p>\n<h4>Persistent volume<\/h4>\n<p>Even if we do use docker we want to have persistent data so any modification in configuration or dashboards will not get lost even if we kill the container. This makes upgrades to newer versions really easy and less painfully. So go ahead and create a volume for Grafana:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">docker volume create grafana-data<\/pre>\n<\/div>\n<h4>Prepare the arguments to setup Grafana<\/h4>\n<p>We are going to spin up the Grafana container using some <strong>environment variables<\/strong> to setup Grafana. Here we will describe what is each one for:<\/p>\n<ul>\n<li>GF_SECURITY_ADMIN_PASSWORD: Strong random password<\/li>\n<li>GF_SERVER_ROOT_URL: Set this if you want to override the server root. Otherwise you can remove this parameter. Useful if you run Grafana behind a reverse proxy (for example nginx) and need to access a specific uri.<\/li>\n<li>GF_AUTH_GOOGLE_ENABLED: Enable Google SSO<\/li>\n<li>GF_AUTH_GOOGLE_AUTH_URL: Self explanatory<\/li>\n<li>GF_AUTH_GOOGLE_TOKEN_URL: Self explanatory<\/li>\n<li>GF_AUTH_GOOGLE_CLIENT_SECRET: Client Secret that we obtained when we created the credentials in GCP<\/li>\n<li>GF_AUTH_GOOGLE_CLIENT_ID: Client ID that we obtained when we created the credentials in GCP<\/li>\n<li>GF_ALLOWED_DOMAINS: Your company domain and every other domain you want to grant access to (for example your clients)<\/li>\n<\/ul>\n<p>We can of course set all these parameters in grafana.ini instead of using environment vars, it\u2019s your choice which method to use.<\/p>\n<h4>Start Grafana container with our custom arguments<\/h4>\n<p>We can now spin up our container. Note that we are mapping the Grafana port to our host 8081 port:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">docker run -d --rm -p 8081:3000 --name grafana \r\n    -e \"GF_SECURITY_ADMIN_PASSWORD=&lt;<b>some_password<\/b>&gt;\" \r\n    -e \"GF_SERVER_ROOT_URL=<a href=\"http:\/\/&lt;your_ip&gt;\">http:\/\/<\/a>\" \r\n    -e \"GF_AUTH_BASIC_ENABLED=&lt;<b>disable_default_auth<\/b>&gt;\" \r\n    -e \"GF_AUTH_GOOGLE_ENABLED=&lt;<b>enable_google_auth<\/b>&gt;\" \r\n    -e \"GF_AUTH_GOOGLE_AUTH_URL=https:\/\/accounts.google.com\/o\/oauth2\/auth\" \r\n    -e \"GF_AUTH_GOOGLE_TOKEN_URL=https:\/\/accounts.google.com\/o\/oauth2\/token\" \r\n    -e \"GF_AUTH_GOOGLE_CLIENT_SECRET=&lt;<b>your_client_secret<\/b>&gt;\" \r\n    -e \"GF_AUTH_GOOGLE_CLIENT_ID=&lt;<b>your_client_id<\/b>&gt;\" \r\n    -e \u201cGF_ALLOWED_DOMAINS=&lt;<b>your_company_domain<\/b>&gt;\u201d\r\n    -v grafana-storage:\/var\/lib\/grafana \r\ngrafana\/grafana<\/pre>\n<\/div>\n<p>If everything is fine you should be able to access grafana at http:\/\/localhost:8081 and will see a button to authenticate with Google:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1816\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/imagen3.png\" alt=\"GrafanaSSO\" width=\"546\" height=\"359\" \/><\/p>\n<p>If you try to sign in with a gmail account that belongs to an allowed domain you should be able to access Grafana now.<\/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, such as &#8220;<a href=\"https:\/\/geko.cloud\/en\/what-is-kubernetes\/\">What is the kubernetes?<\/a>&#8220;. <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>The aim of this lab is to learn how to setup Google SSO Authentication in Grafana and also how to demonstrate how fast we can spin up a new Grafana instance using the official docker container (no need to create custom images). If you are looking on how to setup LDAP authentication you can check [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":2297,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[67],"tags":[74,78,79],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to run Grafana in docker with Google SSO - Geko Cloud<\/title>\n<meta name=\"description\" content=\"How to setup Google SSO Authentication in Grafana and also how to demonstrate how fast we can spin up a new Grafana instance using the official Docker container.\" \/>\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-ejecutar-grafana-en-docker-con-google-sso\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to run Grafana in docker with Google SSO - Geko Cloud\" \/>\n<meta property=\"og:description\" content=\"How to setup Google SSO Authentication in Grafana and also how to demonstrate how fast we can spin up a new Grafana instance using the official Docker container.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/\" \/>\n<meta property=\"og:site_name\" content=\"Geko Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-04T13:12:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-03T16:53:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_google-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"668\" \/>\n\t<meta property=\"og:image:height\" content=\"494\" \/>\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-ejecutar-grafana-en-docker-con-google-sso\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/\"},\"author\":{\"name\":\"Xavi Miranda\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/d496fb33d6ad37fe134ef9fb225dc732\"},\"headline\":\"How to run Grafana in docker with Google SSO\",\"datePublished\":\"2020-05-04T13:12:36+00:00\",\"dateModified\":\"2021-11-03T16:53:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/\"},\"wordCount\":789,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_google-1.png\",\"keywords\":[\"Docker\",\"Google Cloud\",\"Grafana\"],\"articleSection\":[\"Labs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/\",\"url\":\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/\",\"name\":\"How to run Grafana in docker with Google SSO - Geko Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_google-1.png\",\"datePublished\":\"2020-05-04T13:12:36+00:00\",\"dateModified\":\"2021-11-03T16:53:55+00:00\",\"description\":\"How to setup Google SSO Authentication in Grafana and also how to demonstrate how fast we can spin up a new Grafana instance using the official Docker container.\",\"breadcrumb\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#primaryimage\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_google-1.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_google-1.png\",\"width\":668,\"height\":494,\"caption\":\"grafana google\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/geko.cloud\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to run Grafana in docker with Google SSO\"}]},{\"@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 run Grafana in docker with Google SSO - Geko Cloud","description":"How to setup Google SSO Authentication in Grafana and also how to demonstrate how fast we can spin up a new Grafana instance using the official Docker container.","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-ejecutar-grafana-en-docker-con-google-sso\/","og_locale":"en_US","og_type":"article","og_title":"How to run Grafana in docker with Google SSO - Geko Cloud","og_description":"How to setup Google SSO Authentication in Grafana and also how to demonstrate how fast we can spin up a new Grafana instance using the official Docker container.","og_url":"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/","og_site_name":"Geko Cloud","article_published_time":"2020-05-04T13:12:36+00:00","article_modified_time":"2021-11-03T16:53:55+00:00","og_image":[{"width":668,"height":494,"url":"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_google-1.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-ejecutar-grafana-en-docker-con-google-sso\/#article","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/"},"author":{"name":"Xavi Miranda","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/d496fb33d6ad37fe134ef9fb225dc732"},"headline":"How to run Grafana in docker with Google SSO","datePublished":"2020-05-04T13:12:36+00:00","dateModified":"2021-11-03T16:53:55+00:00","mainEntityOfPage":{"@id":"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/"},"wordCount":789,"commentCount":0,"publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"image":{"@id":"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_google-1.png","keywords":["Docker","Google Cloud","Grafana"],"articleSection":["Labs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/","url":"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/","name":"How to run Grafana in docker with Google SSO - Geko Cloud","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#primaryimage"},"image":{"@id":"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_google-1.png","datePublished":"2020-05-04T13:12:36+00:00","dateModified":"2021-11-03T16:53:55+00:00","description":"How to setup Google SSO Authentication in Grafana and also how to demonstrate how fast we can spin up a new Grafana instance using the official Docker container.","breadcrumb":{"@id":"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#primaryimage","url":"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_google-1.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_google-1.png","width":668,"height":494,"caption":"grafana google"},{"@type":"BreadcrumbList","@id":"https:\/\/geko.cloud\/es\/como-ejecutar-grafana-en-docker-con-google-sso\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/geko.cloud\/en\/"},{"@type":"ListItem","position":2,"name":"How to run Grafana in docker with Google SSO"}]},{"@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\/2647"}],"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=2647"}],"version-history":[{"count":3,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/2647\/revisions"}],"predecessor-version":[{"id":5216,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/2647\/revisions\/5216"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/media\/2297"}],"wp:attachment":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/media?parent=2647"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/categories?post=2647"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/tags?post=2647"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}