Created
September 9, 2018 23:16
-
-
Save demchenkoe/7b59cec715fab7e75eb4b5a36aa5af63 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
helm upgrade --install gitlab gitlab/gitlab \ | |
--namespace gitlab \ | |
--timeout 600 \ | |
--set nginx-ingress.enabled=false \ | |
--set global.ingress.class=nginx \ | |
--set global.hosts.domain=example.com \ | |
--set global.hosts.externalIP=10.10.10.10 \ | |
--set [email protected] \ | |
--set certmanager.install=true \ | |
--set gitlab.migrations.image.repository=registry.gitlab.com/gitlab-org/build/cng/gitlab-rails-ce \ | |
--set gitlab.sidekiq.image.repository=registry.gitlab.com/gitlab-org/build/cng/gitlab-sidekiq-ce \ | |
--set gitlab.unicorn.image.repository=registry.gitlab.com/gitlab-org/build/cng/gitlab-unicorn-ce \ | |
--set gitlab.unicorn.workhorse.image=registry.gitlab.com/gitlab-org/build/cng/gitlab-workhorse-ce \ | |
--set gitlab.task-runner.image.repository=registry.gitlab.com/gitlab-org/build/cng/gitlab-task-runner-ce |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment