Search code examples
gitlabgoogle-kubernetes-enginegoogle-apps-marketplace

GitLab deployment from marketplace is not linked in helm


Am trying to deploy gitlab from marketplace onto GKE (Google Kubernetes Engine). The deployment is successful.

post installation i tried using 'helm list'. However there is no data returned. enter image description here


Solution

  • Yes, the links between helm and marketplace deployment is broken.

    So use plain helm install for installing the gitlab.

    below is the command i used for installing:

    helm upgrade --install gitlab gitlab/gitlab --namespace gitlab ^
      --timeout 600 ^
      --set global.hosts.domain=xxxx.com ^
      --set global.hosts.externalIP=xx.xx.xx.xx^
      --set certmanager-issuer.email=xx@xxxx.com ^
      --set global.email.from=xx@xxxx.com ^
      --set global.smtp.address=smtp.xx.xx^
      --set global.smtp.enabled=true ^
      --set global.smtp.port=xxx^
      --set global.smtp.authentication=plain ^
      --set global.smtp.starttls_auto=true ^
      --set global.smtp.user_name=xx@xxxx.com ^
      --set global.smtp.password.key=password ^
      --set global.smtp.password.secret=smtp-secret ^
      --set global.email.reply_to=xx@xxxx.com ^
      --set gitlab-runner.runners.privileged=true