forked from BigKAA/youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
my-values.yaml
66 lines (66 loc) · 1.51 KB
/
my-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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
imagePullPolicy: IfNotPresent
revisionHistoryLimit: 3
gitlabUrl: http://gitlab.kryukov.local/
terminationGracePeriodSeconds: 3600
# Количество раннеров
concurrent: 5
checkInterval: 30
logLevel: info
logFormat: json
sessionServer:
enabled: false
rbac:
create: true
rules:
- resources: ["pods", "secrets", "configmaps"]
verbs: ["get", "list", "watch", "create", "patch", "delete", "update"]
- apiGroups: [""]
resources: ["pods/exec", "pods/attach"]
verbs: ["create", "patch", "delete"]
clusterWideAccess: false
podSecurityPolicy:
enabled: false
resourceNames:
- gitlab-runner
metrics:
enabled: true
portName: metrics
port: 9252
serviceMonitor:
enabled: false
service:
enabled: false
runners:
config: |
# log_level = "debug"
[[runners]]
output_limit = 10000
[runners.kubernetes]
image = "ubuntu:22.04"
# helper_image = "if use custom helper"
[runners.cache]
Type = "s3"
Path = ""
Shared = true
[runners.cache.s3]
ServerAddress = "gitlab-minio:9000"
BucketName = "dev-runner-cache"
BucketLocation = "us-east-1"
Insecure = true
AuthenticationType = "access-key"
cache:
secretName: dev-gitlab-runner
executor: kubernetes
secret: dev-gitlab-runner
securityContext:
runAsUser: 100
# runAsGroup: 65533
fsGroup: 65533
# supplementalGroups: [65533]
resources:
limits:
memory: 256Mi
cpu: 200m
requests:
memory: 128Mi
cpu: 100m