{"id":2622,"date":"2020-09-21T19:26:58","date_gmt":"2020-09-21T17:26:58","guid":{"rendered":"https:\/\/geko2.factoryfy.com\/howto-setup-grafana-with-ldap-in-kubernetes-using-helm\/"},"modified":"2021-11-03T18:36:36","modified_gmt":"2021-11-03T17:36:36","slug":"install-grafana-ldap-kubernetes-helm","status":"publish","type":"post","link":"https:\/\/geko.cloud\/en\/install-grafana-ldap-kubernetes-helm\/","title":{"rendered":"How to setup Grafana with LDAP in Kubernetes using Helm"},"content":{"rendered":"<p>Hey there! If you reached this blog I guess that you are struggling with <strong>Grafana Helm chart<\/strong> to make it work with your <strong>LDAP<\/strong>. Seek no more, you just got to the place that you were searching for.<\/p>\n<h3>Introduction<\/h3>\n<p>If you have used Grafana before you might know that there are several integrations for authentication. We already talked in another post about how to <a href=\"https:\/\/geko.cloud\/en\/how-to-run-grafana-in-docker-with-google-sso\/\">integrate Grafana with Google SSO<\/a> based on a docker container, but this time we will be focusing in doing a full installation over <a href=\"https:\/\/geko.cloud\/en\/what-is-kubernetes\/\">Kubernetes<\/a> with another authentication method: <strong>LDAP<\/strong>.<\/p>\n<p>As you probably know, LDAP is widely used in a very large number of companies and therefore it makes sense to integrate it with our dashboarding solution if we are already using it.<\/p>\n<h3>Requirements<\/h3>\n<p>We are expecting:<\/p>\n<ul>\n<li>You already have an LDAP server running up somewhere. We are using an OpenLDAP in our side.<\/li>\n<li>You already have a <a href=\"https:\/\/geko.cloud\/en\/what-is-kubernetes\/\">Kubernetes<\/a> cluster up and running and it&#8217;s accessible with &#8220;kubectl&#8221;. You should be ok using minikube, though.<\/li>\n<\/ul>\n<p style=\"text-align: center;\">We are ready to go!<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-2561\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/lets_do_this_5.gif\" alt=\"Let's do this\" width=\"350\" height=\"265\" \/><\/p>\n<h3 id=\"install-helm\">Install helm<\/h3>\n<p>First of all we need to be running helm. If you already have it installed you can jump to the next section. For this guide we will be using helm v2.16.12:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">sudo wget -c https:\/\/get.helm.sh\/helm-v2.16.12-linux-amd64.tar.gz -O - | tar -xz\r\nsudo cp linux-amd64\/helm \/usr\/local\/bin\/<\/pre>\n<\/div>\n<p>Now we need to initialize it in our cluster. This command will install tiller:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">helm init<\/pre>\n<\/div>\n<p>Note that if you encounter any permission errors about when using helm then you will need to create a ClusterRoleBinding for tiller. In the <a href=\"https:\/\/v2.helm.sh\/docs\/rbac\/\">official helm docs<\/a> this is explained.<\/p>\n<h3>Generate LDAP configuration<\/h3>\n<p>Next, we are going to create our LDAP configuration for Grafana with all the parameters required for the integration. This step is based in the <a href=\"https:\/\/grafana.com\/docs\/grafana\/latest\/auth\/ldap\/#grafana-ldap-configuration\">official Grafana docs<\/a>.<\/p>\n<p>Go ahead an create a new file called &#8220;<strong>ldap-toml<\/strong>&#8220;. Note that <strong>this name is mandatory<\/strong> since we need to create a secret from it and the helm chart will expect it to contain &#8220;ldap-toml&#8221; key.<\/p>\n<p>The most relevant fields that you might want to modify are: &#8220;<strong>host<\/strong>&#8220;, &#8220;<strong>bind_dn<\/strong>&#8220;, &#8220;<strong>bind_password<\/strong>&#8221; and &#8220;<strong>search_base_dns<\/strong>&#8220;. Feel free to modify the contents as per your needs:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">[[servers]]\r\n# Ldap server host (specify multiple hosts space separated)\r\n# We use OpenLDAP but you can use any IP address or external host here\r\nhost = \"openldap.kube-system.svc\"\r\n# Default port is 389 or 636 if use_ssl = true\r\nport = 389\r\n# Set to true if LDAP server supports TLS\r\nuse_ssl = false\r\n# Set to true if connect LDAP server with STARTTLS pattern (create connection in insecure, then upgrade to secure connection with TLS)\r\nstart_tls = false\r\n# set to true if you want to skip SSL cert validation\r\nssl_skip_verify = true\r\n\r\n# Search user bind dn\r\nbind_dn = \"cn=admin,dc=mycompany,dc=org\"\r\n# Search user bind password\r\nbind_password = \"admin\"\r\n# User search filter, for example \"(cn=%s)\" or \"(sAMAccountName=%s)\" or \"(uid=%s)\"\r\nsearch_filter = \"(cn=%s)\"\r\n# An array of base dns to search through\r\nsearch_base_dns = [\"ou=Users,dc=mycompany,dc=org\"]\r\n# Specify names of the LDAP attributes your LDAP uses\r\n[servers.attributes]\r\nname = \"givenName\"\r\nsurname = \"sn\"\r\nusername = \"cn\"\r\nmember_of = \"memberOf\"\r\nemail =  \"email\"<\/pre>\n<\/div>\n<p>Save the file and create a new secret from it:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">kubectl create secret generic grafana-ldap-toml --from-file=ldap-toml<\/pre>\n<\/div>\n<p>Now we will create the <strong>grafana-values.yaml<\/strong> file that will be provided helm to enable LDAP in Grafana with the proper parameters. The relevant part of this values file for LDAP integration is:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">grafana.ini:\r\n  server:\r\n    domain: grafana.mydomain.com\r\n  auth.ldap:\r\n    enabled: true\r\n    allow_sign_up: true\r\nldap:\r\n  enabled: true\r\n  existingSecret: \"grafana-ldap-toml\"<\/pre>\n<\/div>\n<p>Again, feel free to adapt the above parameters to your requirements. If you need to enable persistence, the ingress or anything else just add it to the values file. You can take a look at the <a href=\"https:\/\/github.com\/grafana\/helm-charts\/tree\/main\/charts\/grafana\">official chart reference values<\/a>.<\/p>\n<h3>Installing chart<\/h3>\n<p>Finally we can install Grafana in our cluster!<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">helm upgrade --install grafana grafana\/grafana --namespace monitoring-system -f grafana-values.yaml<\/pre>\n<\/div>\n<p>Once the installation finishes you can access to test the integration. If you didn&#8217;t enable ingress you can port-forward to it and access at http:\/\/localhost:8000 address using the following command:<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">kubectl -n monitoring-system port-forward svc\/grafana 8000:80<\/pre>\n<\/div>\n<p>Now, try to login with an existing LDAP user:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-2557\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/grafana_ldap_login.png\" alt=\"Grafana LDAP login\" width=\"375\" height=\"424\" \/><\/p>\n<p>If we go now to <strong>settings -&gt; Users<\/strong> we can see that my username was created with role &#8220;Viewer&#8221;. Here we can set any role we might want for this user.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-2558\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/grafana_ldap_users.png\" alt=\"Grafana LDAP users\" width=\"936\" height=\"228\" \/><\/p>\n<p>We are done!<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-2567\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/ive_got_this_3.gif\" alt=\"I've got this\" width=\"350\" height=\"287\" \/><\/p>\n<hr \/>\n<h3>Conclusion<\/h3>\n<p>As you can see it was not so hard to do our <strong>LDAP <\/strong><strong>integration when deploying Grafana in Kubernetes<\/strong>, but the helm chart documentation is not clear enough sometimes. The documentation tells you about what kind of value the chart will expect for a certain key but it&#8217;s a bit confusing in some areas such as LDAP configuration where we need to mix different values.<\/p>\n<p>You can now work further by yourself in fully automating Grafana deployment with LDAP integration, for example to automate the secret creation or whatever you may need.<\/p>\n<p>I hope I could bring a little bit of light over it and that you&#8217;ll be able to implement it in your own cluster.<\/p>\n<p>In any case, if you have any doubt or have some suggestions, <a href=\"https:\/\/geko.cloud\/en\/contact\/\">don&#8217;t hesitate to contact us<\/a>!<\/p>\n<p>Thanks for reading!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hey there! If you reached this blog I guess that you are struggling with Grafana Helm chart to make it work with your LDAP. Seek no more, you just got to the place that you were searching for. Introduction If you have used Grafana before you might know that there are several integrations for authentication. [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":2232,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[67],"tags":[79,82,90],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to setup Grafana with LDAP in Kubernetes using Helm - Geko Cloud<\/title>\n<meta name=\"description\" content=\"I guess that you are struggling with Grafana Helm chart to make it work with your LDAP. Seek no more, you just got to the place that you were searching for.\" \/>\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-grafana-con-ldap-en-kubernetes-usando-helm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to setup Grafana with LDAP in Kubernetes using Helm - Geko Cloud\" \/>\n<meta property=\"og:description\" content=\"I guess that you are struggling with Grafana Helm chart to make it work with your LDAP. Seek no more, you just got to the place that you were searching for.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/\" \/>\n<meta property=\"og:site_name\" content=\"Geko Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-21T17:26:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-03T17:36:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_ldap_2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"477\" \/>\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-grafana-con-ldap-en-kubernetes-usando-helm\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/\"},\"author\":{\"name\":\"Xavi Miranda\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/d496fb33d6ad37fe134ef9fb225dc732\"},\"headline\":\"How to setup Grafana with LDAP in Kubernetes using Helm\",\"datePublished\":\"2020-09-21T17:26:58+00:00\",\"dateModified\":\"2021-11-03T17:36:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/\"},\"wordCount\":661,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_ldap_2.png\",\"keywords\":[\"Grafana\",\"Helm\",\"Kubernetes\"],\"articleSection\":[\"Labs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/\",\"url\":\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/\",\"name\":\"How to setup Grafana with LDAP in Kubernetes using Helm - Geko Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_ldap_2.png\",\"datePublished\":\"2020-09-21T17:26:58+00:00\",\"dateModified\":\"2021-11-03T17:36:36+00:00\",\"description\":\"I guess that you are struggling with Grafana Helm chart to make it work with your LDAP. Seek no more, you just got to the place that you were searching for.\",\"breadcrumb\":{\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#primaryimage\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_ldap_2.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_ldap_2.png\",\"width\":1000,\"height\":477,\"caption\":\"Grafana LDAP logo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/geko.cloud\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to setup Grafana with LDAP in Kubernetes using Helm\"}]},{\"@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 setup Grafana with LDAP in Kubernetes using Helm - Geko Cloud","description":"I guess that you are struggling with Grafana Helm chart to make it work with your LDAP. Seek no more, you just got to the place that you were searching for.","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-grafana-con-ldap-en-kubernetes-usando-helm\/","og_locale":"en_US","og_type":"article","og_title":"How to setup Grafana with LDAP in Kubernetes using Helm - Geko Cloud","og_description":"I guess that you are struggling with Grafana Helm chart to make it work with your LDAP. Seek no more, you just got to the place that you were searching for.","og_url":"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/","og_site_name":"Geko Cloud","article_published_time":"2020-09-21T17:26:58+00:00","article_modified_time":"2021-11-03T17:36:36+00:00","og_image":[{"width":1000,"height":477,"url":"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_ldap_2.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-grafana-con-ldap-en-kubernetes-usando-helm\/#article","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/"},"author":{"name":"Xavi Miranda","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/d496fb33d6ad37fe134ef9fb225dc732"},"headline":"How to setup Grafana with LDAP in Kubernetes using Helm","datePublished":"2020-09-21T17:26:58+00:00","dateModified":"2021-11-03T17:36:36+00:00","mainEntityOfPage":{"@id":"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/"},"wordCount":661,"commentCount":0,"publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"image":{"@id":"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_ldap_2.png","keywords":["Grafana","Helm","Kubernetes"],"articleSection":["Labs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/","url":"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/","name":"How to setup Grafana with LDAP in Kubernetes using Helm - Geko Cloud","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#primaryimage"},"image":{"@id":"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_ldap_2.png","datePublished":"2020-09-21T17:26:58+00:00","dateModified":"2021-11-03T17:36:36+00:00","description":"I guess that you are struggling with Grafana Helm chart to make it work with your LDAP. Seek no more, you just got to the place that you were searching for.","breadcrumb":{"@id":"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#primaryimage","url":"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_ldap_2.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/grafana_ldap_2.png","width":1000,"height":477,"caption":"Grafana LDAP logo"},{"@type":"BreadcrumbList","@id":"https:\/\/geko.cloud\/es\/como-instalar-grafana-con-ldap-en-kubernetes-usando-helm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/geko.cloud\/en\/"},{"@type":"ListItem","position":2,"name":"How to setup Grafana with LDAP in Kubernetes using Helm"}]},{"@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\/2622"}],"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=2622"}],"version-history":[{"count":5,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/2622\/revisions"}],"predecessor-version":[{"id":5243,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/posts\/2622\/revisions\/5243"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/media\/2232"}],"wp:attachment":[{"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/media?parent=2622"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/categories?post=2622"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geko.cloud\/en\/wp-json\/wp\/v2\/tags?post=2622"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}