Jump to content

GitLab: Difference between revisions

460 bytes added ,  28 January 2022
Line 3: Line 3:
==Kubernetes Administration==
==Kubernetes Administration==
Notes on deploying GitLab using their Helm chart.
Notes on deploying GitLab using their Helm chart.
===Setup===
To use your own PVs and PVCs,
* Create your own PVs and PVCs for gitaly, minio, postgres, and redis.
** Note that the gitaly PVC should be named <code>repo-data-gitlab-gitaly-0</code>
* Set the following values:
<pre>
minio:
  replicas: 2
  persistence:
    existingClaim: gitlab-minio
redis:
  persistence:
    existingClaim: gitlab-redis
postgresql:
  persistence:
    existingClaim: gitlab-postgres
</pre>
===Migration from Omnibus Install===


==Omnibus Administration==
==Omnibus Administration==