-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvalues.yaml
47 lines (47 loc) · 1.16 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
gitlab-runner:
gitlabUrl: https://gitlab.com
rbac:
create: true
rules:
- apiGroups:
- ""
resources:
- pods
- pods/exec
- pods/logs
- pods/attach
- secrets
- configmaps
verbs:
- get
- list
- watch
- create
- patch
- delete
- update
# To create runners able to deploy anything into the cluster, not very useful with GitOps
# - apiGroups: ["*"]
# resources: ["*"]
# verbs: ["*"]
clusterWideAccess: false
runners:
secret: gitlab-runner-registration-token
# The environment variable is needed for kaniko to work
# https://github.com/GoogleContainerTools/kaniko/issues/1542#issuecomment-853929795
config: |
listen_address = ":9252"
[[runners]]
environment = ["container=docker"]
[runners.kubernetes]
image = "ubuntu:16.04"
[runners.feature_flags]
FF_SCRIPT_SECTIONS = true
executor: kubernetes
tags: "homelab"
metrics:
enabled: true
serviceMonitor:
enabled: true
service:
enabled: true