-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add local gitlab at localhost:8080 (#24)
* ci: add gitlab local support * ci: add gitlab local support * ci: add gitlab local support * ci: fix e2e test
- Loading branch information
Showing
6 changed files
with
103 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
gitlab: | ||
toolbox: | ||
enabled: false | ||
gitlab-shell: | ||
enabled: false | ||
gitlab-pages: | ||
enabled: false | ||
gitlab-exporter: | ||
enabled: false | ||
kas: | ||
minReplicas: 1 | ||
webservice: | ||
minReplicas: 1 | ||
ingress: | ||
requireBasePath: false | ||
global: | ||
hosts: | ||
domain: localhost | ||
https: false | ||
gitlab: | ||
name: localhost | ||
https: false | ||
ingress: | ||
enabled: true | ||
configureCertmanager: false | ||
tls: | ||
enabled: false | ||
redis: | ||
install: false | ||
traefik: | ||
enabled: false | ||
gitlab-runner: | ||
install: false | ||
registry: | ||
enabled: false | ||
prometheus: | ||
install: false | ||
certmanager: | ||
installCRDs: false | ||
install: false | ||
|
||
nginx-ingress: | ||
controller: | ||
ingressClassResource: | ||
name: gitlab-nginx | ||
controllerValue: "k8s.io/ingress-nginx-gitlab" | ||
replicaCount: 1 | ||
minAavailable: 1 | ||
service: | ||
type: NodePort | ||
nodePorts: | ||
http: 32080 |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/sh | ||
set -o errexit | ||
|
||
if [ -z "$(helm list -n gitlab | grep gitlab)" ]; then | ||
# 8. Install gitlab | ||
helm repo add gitlab https://charts.gitlab.io/ | ||
helm upgrade --install gitlab --create-namespace -n gitlab gitlab/gitlab -f gitlab.values.yaml | ||
else | ||
echo "Gitlab release exists, skipping installation" | ||
fi |
This file contains 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
This file contains 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