{"id":14860,"date":"2020-11-10T11:29:47","date_gmt":"2020-11-10T10:29:47","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/"},"modified":"2020-11-10T11:29:47","modified_gmt":"2020-11-10T10:29:47","slug":"deploy-gitlab-on-kubernetes-using-helm","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/","title":{"rendered":"Deploy GitLab on Kubernetes using Helm"},"content":{"rendered":"<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/gitlab.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-thumbnail wp-image-44053\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/gitlab.png\" alt=\"\" width=\"150\" height=\"150\" \/><\/a><br \/>\nOver the last years GitLab became one of the most popular and powerful open source git source code platform. From pure source code repository to a DevOps platform, it&#8217;s interesting to see how GitLab has evolved and this is reflected in the technological choices made by the technical teams. GitLab can be deployed on Cloud or On-premise environments in multiple ways; automatically (packages) manually (compile all sources)&#8230;. <a href=\"https:\/\/about.gitlab.com\/install\/\">https:\/\/about.gitlab.com\/install\/<\/a><\/p>\n<p>This blog post aims to explain how to deploy GitLab in Kubernetes but also serves as a customer feedback where we are using GitLab deployed on Kubernetes in production.<\/p>\n<p>Prerequisites<\/p>\n<ul>\n<li>a Kubernetes cluster up and running<\/li>\n<li>an ingress controller configured for external access<\/li>\n<\/ul>\n<p>In our example, we will use Google Kubernetes Engine (GKE) and Nginx as ingress controller.&nbsp;<\/p>\n<h2>Helm installation<\/h2>\n<p>If you already have Helm client and Tiller installed on your cluster, you can skip to the next section.<br \/>\nYou can install Helm using the following commands:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">\u279c curl -o get_helm.sh https:\/\/raw.githubusercontent.com\/kubernetes\/helm\/master\/scripts\/get\nchmod 700 get_helm.sh\n\n\u279c .\/get_helm.sh\nhelm installed into \/usr\/local\/bin\/helm\ntiller installed into \/usr\/local\/bin\/tiller\nRun 'helm init' to configure helm.<\/pre>\n<p>All installation methods and the documentation can be found here: <a href=\"https:\/\/helm.sh\/docs\/intro\/install\/\">https:\/\/helm.sh\/docs\/intro\/install\/<\/a><\/p>\n<h3>Installing Tiller<\/h3>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">\u279c helm init<\/pre>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">Creating \/Users\/meb\/.helm\nCreating \/Users\/meb\/.helm\/repository\nCreating \/Users\/meb\/.helm\/repository\/cache\nCreating \/Users\/meb\/.helm\/repository\/local\nCreating \/Users\/meb\/.helm\/plugins\nCreating \/Users\/meb\/.helm\/starters\nCreating \/Users\/meb\/.helm\/cache\/archive\nCreating \/Users\/meb\/.helm\/repository\/repositories.yaml\nAdding stable repo with URL: https:\/\/kubernetes-charts.storage.googleapis.com\nAdding local repo with URL: http:\/\/127.0.0.1:8879\/charts\n$HELM_HOME has been configured at \/Users\/meb\/.helm.\n\nTiller (the Helm server-side component) has been installed into your Kubernetes Cluster.<\/pre>\n<p>&nbsp;<\/p>\n<h2>Deploy GitLab with Helm<\/h2>\n<h3>Storage Class<\/h3>\n<p>Let&#8217;s first create a storage class in our cluster, GitLab will be able to store data.<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">cat &gt; pd-ssd-storage.yaml &lt;&lt;EOF\napiVersion: storage.k8s.io\/v1\nkind: StorageClass\nmetadata:\n  name: pd-ssd\nprovisioner: kubernetes.io\/gce-pd\nparameters:\n  type: pd-ssd\nEOF\nkubectl apply -f pd-ssd-storage.yaml<\/pre>\n<p>Once done we can install GitLab chart using Helm. <\/p>\n<h3>Install the GitLab chart<\/h3>\n<p>The GitLab chart requires custom configuration so that it can leverage the external data stores that you previously provisioned.<\/p>\n<p>Download the configuration file template:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">wget https:\/\/raw.githubusercontent.com\/terraform-google-modules\/terraform-google-gke-gitlab\/master\/values.yaml.tpl<\/pre>\n<p>After customisation, the final values.yaml file should contains the following:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\"># Values for gitlab\/gitlab chart on GKE\nglobal:\n  edition: ce\n  hosts:\n    domain: xip.io\n    https: true\n    gitlab: {}\n    externalIP: 35.225.196.151 #Replace by your Nginx Ingress ExternalIP\n    ssh: ~\n    gitlab:\n      name: gitlab.xip.io \n      https: true\n    registry:\n      name: gitlab-registry.xip.io\n      https: true\n    minio:\n      name: gitlab-minio.xip.io\n      https: true\n  minio:\n    enabled: true\n  ## doc\/charts\/globals.md#configure-ingress-settings\n  ingress:\n    configureCertmanager: false\n    class: \"nginx\"\n    enabled: true\n    tls:\n      enabled: true\ncertmanager:\n  install: false\nnginx-ingress:\n  enabled: false\nprometheus:\n  install: true\nredis:\n  install: true\npostgresql:\n  install: true\ngitlab-runner:\n  install: true\nregistry:\n  enable: true<\/pre>\n<p>Install the chart by using the following Helm commands:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">helm repo add gitlab https:\/\/charts.gitlab.io\/\nhelm install -f values.yaml --version 2.3.7 -n gitlab gitlab\/gitlab<\/pre>\n<h3>Verify your deployment<\/h3>\n<p>Pod status:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">kubectl get pods -n gitlab -o wide\nNAME                                        READY   STATUS      RESTARTS   AGE   IP          NODE                                    NOMINATED NODE   READINESS GATES\ngitlab-gitaly-0                             1\/1     Running     0          1d   10.0.1.18   gke-jx-dbi-default-pool-01891a7e-2g7j              \ngitlab-gitlab-exporter-7cf6b77d78-89f46     1\/1     Running     0          1d   10.0.2.10   gke-jx-dbi-default-pool-01891a7e-1rb5              \ngitlab-gitlab-shell-c548bd566-g6p7b         1\/1     Running     0          1d   10.0.1.14   gke-jx-dbi-default-pool-01891a7e-2g7j              \ngitlab-gitlab-shell-c548bd566-plg4t         1\/1     Running     0          1d   10.0.2.13   gke-jx-dbi-default-pool-01891a7e-1rb5              \ngitlab-migrations.1-tf5jl                   0\/1     Completed   0          1d   10.0.1.10   gke-jx-dbi-default-pool-01891a7e-2g7j              \ngitlab-minio-75567fcbb6-j9z9z               1\/1     Running     0          1d   10.0.1.15   gke-jx-dbi-default-pool-01891a7e-2g7j              \ngitlab-minio-create-buckets.1-2c8th         0\/1     Completed   0          1d   10.0.1.11   gke-jx-dbi-default-pool-01891a7e-2g7j              \ngitlab-postgresql-66d8d9574b-r66fm          2\/2     Running     0          1d   10.0.2.12   gke-jx-dbi-default-pool-01891a7e-1rb5              \ngitlab-prometheus-server-6fb685b9c7-q4jl5   2\/2     Running     0          1d   10.0.1.16   gke-jx-dbi-default-pool-01891a7e-2g7j              \ngitlab-redis-7668c4d476-nqddk               2\/2     Running     0          1d   10.0.1.17   gke-jx-dbi-default-pool-01891a7e-2g7j              \ngitlab-registry-5675459cbd-gjnx6            1\/1     Running     0          1d   10.0.1.13   gke-jx-dbi-default-pool-01891a7e-2g7j              \ngitlab-registry-5675459cbd-rpcn2            1\/1     Running     0          1d   10.0.2.11   gke-jx-dbi-default-pool-01891a7e-1rb5              \ngitlab-sidekiq-all-in-1-5fdc8f5868-8fnxl    1\/1     Running     1          1d   10.0.1.9    gke-jx-dbi-default-pool-01891a7e-2g7j              \ngitlab-task-runner-5cb689799-pzz5r          1\/1     Running     0          1d   10.0.1.12   gke-jx-dbi-default-pool-01891a7e-2g7j              \ngitlab-unicorn-9f9bf8574-cjqdh              2\/2     Running     0          1d   10.0.2.9    gke-jx-dbi-default-pool-01891a7e-1rb5              \ngitlab-unicorn-9f9bf8574-mfqrn              2\/2     Running     0          1d   10.0.0.11   gke-jx-dbi-default-pool-01891a7e-715p              <\/pre>\n<p>Services:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">kubectl get svc -n gitlab\nNAME                       TYPE        CLUSTER-IP     EXTERNAL-IP   PORT(S)             AGE\ngitlab-gitaly              ClusterIP   None                   8075\/TCP,9236\/TCP   1d\ngitlab-gitlab-exporter     ClusterIP   10.3.254.216           9168\/TCP            1d\ngitlab-gitlab-shell        ClusterIP   10.3.242.235           22\/TCP              1d\ngitlab-minio-svc           ClusterIP   10.3.244.99            9000\/TCP            1d\ngitlab-postgresql          ClusterIP   10.3.240.220           5432\/TCP            1d\ngitlab-prometheus-server   ClusterIP   10.3.255.170           80\/TCP              1d\ngitlab-redis               ClusterIP   10.3.240.239           6379\/TCP,9121\/TCP   1d\ngitlab-registry            ClusterIP   10.3.247.123           5000\/TCP            1d\ngitlab-unicorn             ClusterIP   10.3.253.173           8080\/TCP,8181\/TCP   1d<\/pre>\n<p>Ingress resources: <\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">kubectl get ing -n gitlab\nNAME              HOSTS                          ADDRESS          PORTS     AGE\ngitlab-minio      gitlab-minio.xip.io            35.225.196.151   80, 443   1d\ngitlab-registry   gitlab-registry.xip.io         35.225.196.151   80, 443   1d\ngitlab-unicorn    gitlab.35.225.196.151.xip.io   35.225.196.151   80, 443   1d<\/pre>\n<h3>Connect to GitLab Web UI<\/h3>\n<p>Once your GitLab instance is up and running, log int to it as follows:<\/p>\n<p>1. Get the URL for your GitLab server:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">export GITLAB_HOSTNAME=$(kuexport GITLAB_HOSTNAME=$(kubectl get ingresses.extensions gitlab-unicorn \\\n    -o jsonpath='{.spec.rules[0].host}')\necho \"Your GitLab URL is: https:\/\/${GITLAB_HOSTNAME}\"\n\nYour GitLab URL is: https:\/\/gitlab.35.225.196.151.xip.io<\/pre>\n<p>2. Get the root password:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">kubectl get secret gitlab-gkubectl get secret gitlab-gitlab-initial-root-password \\\n    -o go-template='{{.data.password}}' | base64 -d &amp;&amp; echo\nfZHnoz0H5p4exjBbUCqHvB13JIvIwepOOgolCtaS8XhdXbeL0akUJT6ZtViksnYF<\/pre>\n<p>Visit the GitLab URL in your browser from step 1 and log in as the root user with the password from step 2. Below the screenshot from the login page.<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/GitLab_UI.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/GitLab_UI.png\" alt=\"\" width=\"150\" height=\"150\" class=\"aligncenter size-thumbnail wp-image-44945\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Over the last years GitLab became one of the most popular and powerful open source git source code platform. From pure source code repository to a DevOps platform, it&#8217;s interesting to see how GitLab has evolved and this is reflected in the technological choices made by the technical teams. GitLab can be deployed on Cloud [&hellip;]<\/p>\n","protected":false},"author":109,"featured_media":14861,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1320,1504,1522],"tags":[],"type_dbi":[],"class_list":["post-14860","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-devops","category-docker","category-kubernetes"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Deploy GitLab on Kubernetes using Helm - dbi Blog<\/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:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deploy GitLab on Kubernetes using Helm\" \/>\n<meta property=\"og:description\" content=\"Over the last years GitLab became one of the most popular and powerful open source git source code platform. From pure source code repository to a DevOps platform, it&#8217;s interesting to see how GitLab has evolved and this is reflected in the technological choices made by the technical teams. GitLab can be deployed on Cloud [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-11-10T10:29:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/gitlab.png\" \/>\n\t<meta property=\"og:image:width\" content=\"700\" \/>\n\t<meta property=\"og:image:height\" content=\"700\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"DevOps\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DevOps\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/\"},\"author\":{\"name\":\"DevOps\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/4cd1b5f8a3de93f05a16ab8d7d2b7735\"},\"headline\":\"Deploy GitLab on Kubernetes using Helm\",\"datePublished\":\"2020-11-10T10:29:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/\"},\"wordCount\":332,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/gitlab.png\",\"articleSection\":[\"DevOps\",\"Docker\",\"Kubernetes\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/\",\"name\":\"Deploy GitLab on Kubernetes using Helm - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/gitlab.png\",\"datePublished\":\"2020-11-10T10:29:47+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/4cd1b5f8a3de93f05a16ab8d7d2b7735\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/gitlab.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/gitlab.png\",\"width\":700,\"height\":700},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Deploy GitLab on Kubernetes using Helm\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/4cd1b5f8a3de93f05a16ab8d7d2b7735\",\"name\":\"DevOps\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/cdd2dd7441774355062c0f0f68612296b059cd1e2ff6c7af0b15dba0ed64a85f?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cdd2dd7441774355062c0f0f68612296b059cd1e2ff6c7af0b15dba0ed64a85f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cdd2dd7441774355062c0f0f68612296b059cd1e2ff6c7af0b15dba0ed64a85f?s=96&d=mm&r=g\",\"caption\":\"DevOps\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/devops\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Deploy GitLab on Kubernetes using Helm - dbi 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:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/","og_locale":"en_US","og_type":"article","og_title":"Deploy GitLab on Kubernetes using Helm","og_description":"Over the last years GitLab became one of the most popular and powerful open source git source code platform. From pure source code repository to a DevOps platform, it&#8217;s interesting to see how GitLab has evolved and this is reflected in the technological choices made by the technical teams. GitLab can be deployed on Cloud [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/","og_site_name":"dbi Blog","article_published_time":"2020-11-10T10:29:47+00:00","og_image":[{"width":700,"height":700,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/gitlab.png","type":"image\/png"}],"author":"DevOps","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DevOps","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/"},"author":{"name":"DevOps","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/4cd1b5f8a3de93f05a16ab8d7d2b7735"},"headline":"Deploy GitLab on Kubernetes using Helm","datePublished":"2020-11-10T10:29:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/"},"wordCount":332,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/gitlab.png","articleSection":["DevOps","Docker","Kubernetes"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/","url":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/","name":"Deploy GitLab on Kubernetes using Helm - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/gitlab.png","datePublished":"2020-11-10T10:29:47+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/4cd1b5f8a3de93f05a16ab8d7d2b7735"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/gitlab.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/gitlab.png","width":700,"height":700},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/deploy-gitlab-on-kubernetes-using-helm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Deploy GitLab on Kubernetes using Helm"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/4cd1b5f8a3de93f05a16ab8d7d2b7735","name":"DevOps","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/cdd2dd7441774355062c0f0f68612296b059cd1e2ff6c7af0b15dba0ed64a85f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/cdd2dd7441774355062c0f0f68612296b059cd1e2ff6c7af0b15dba0ed64a85f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cdd2dd7441774355062c0f0f68612296b059cd1e2ff6c7af0b15dba0ed64a85f?s=96&d=mm&r=g","caption":"DevOps"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/devops\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/14860","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/109"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=14860"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/14860\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/14861"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=14860"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=14860"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=14860"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=14860"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}