-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalues.yaml
More file actions
2050 lines (1745 loc) · 62.2 KB
/
values.yaml
File metadata and controls
2050 lines (1745 loc) · 62.2 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
hub: false
domain: writemy.codes
cluster:
name: k8s
domain: cluster.local
gateway:
name: main-gw
namespace: core-prod
sectionName: https-myloginspace
datacenter: dc1
region: yxl
artifact-hub:
enabled: true
# Artifact Hub Chart default configuration values
# Enable dynamic resource name prefix
#
# Enabling the dynamic resource name prefix ensures that the resources are named dynamically based on the Helm
# installation's name. This allows multiple installations of this chart in a single Kubernetes namespace. The prefix
# can be defined by using the `fullnameOverride`.
dynamicResourceNamePrefixEnabled: true
# Overwrites the installation's fullname generation (used for the dynamic resource name prefix)
fullnameOverride: artifacthub-prod
# Enable restricted HTTP client
#
# Artifact Hub makes external HTTP requests for several purposes, like getting repositories metadata, dispatching
# webhooks, etc. When this option is enabled, requests to the private network space as well as to some other special
# addresses won't be allowed.
restrictedHTTPClient: false
# Logging configuration
log:
# Log level
# Options: "trace", "debug", "info", "warn", "error", "fatal", "panic"
level: panic
# Enable pretty logging
pretty: false
# Database configuration
db:
host: 'psql.mylogin.space'
port: '5432'
database: <path:CORE0_SITE1/data/ArtifactHub/Database#Database>
user: <path:CORE0_SITE1/data/ArtifactHub/Database#Username>
password: <path:CORE0_SITE1/data/ArtifactHub/Database#Password>
sslmode: prefer
# Email configuration
email:
# From name used in emails
fromName: ""
# From address used in emails. This field is required if you want to enable email sending in Artifact Hub
from: bots@mylogin.space
# Reply-to address used in emails
replyTo: bots@mylogin.space
# SMTP server configuration
smtp:
# Authentication mechanism
# Options: "login", "plain"
auth: plain
# SMTP host. This field is required if you want to enable email sending in Artifact Hub
host: mail.mylogin.space
# SMTP port. This field is required if you want to enable email sending in Artifact Hub
port: 587
username: ""
password: ""
# Credentials
creds:
# Docker registry username
dockerUsername: <path:CORE0_SITE1/data/ArtifactHub/Docker#Username>
# Docker registry password
dockerPassword: <path:CORE0_SITE1/data/ArtifactHub/Docker#Password>
# Images configuration
images:
# Images store
# Options: "pg"
store: pg
# Events configuration
events:
# Enable repository scanning errors events
scanningErrors: false
# Enable repository tracking errors events
trackingErrors: true
# Database migrator configuration
dbMigrator:
job:
image:
# Database migrator image repository (without the tag)
repository: artifacthub/db-migrator
# Limits the lifetime of the job after it has finished execution
ttlSecondsAfterFinished: null
securityContext: {}
resources: {}
# If you do want to specify resources, uncomment the following
# lines and adjust them as necessary.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# Load demo user and sample repositories
loadSampleData: false
# Directory path where the configuration files should be mounted
configDir: "/home/db-migrator/.cfg"
# Hub configuration
hub:
ingress:
enabled: false
service:
type: ClusterIP
port: 80
# Service account for Artifact Hub to use
serviceAccount:
# Enable creation of ServiceAccount for Artifact Hub pod
create: true
# Allows auto mount of ServiceAccountToken on the serviceAccount created
automountServiceAccountToken: true
# Create and bind role for service account
rbac:
# Enable creation and binding of role
create: true
deploy:
readinessGates: []
livenessProbe:
httpGet:
path: /api/v1/packages/stats
port: 8000
initialDelaySeconds: 60
periodSeconds: 30
replicaCount: 1
image:
# Hub image repository (without the tag)
repository: artifacthub/hub
securityContext: {}
resources:
requests:
cpu: 15m
memory: 127M
limits:
cpu: 15m
memory: 127M
initContainers:
checkDbMigrator:
image:
repository: bitnamilegacy/kubectl
# tag: 1.21
resources: {}
# If you do want to specify resources, uncomment the following
# lines and adjust them as necessary.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
checkDbIsReady:
resources: {}
# If you do want to specify resources, uncomment the following
# lines and adjust them as necessary.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# Optionally specify extra list of additional labels for the hub deployment
extraDeploymentLabels: {}
# Optionally specify extra list of additional labels for hub pods
extraPodLabels: {}
# Optionally specify extra list of additional volumes for the hub deployment
extraVolumes: []
# Optionally specify extra list of additional volume mounts for the hub deployment
extraVolumeMounts: []
server:
# Allow adding private repositories to the Hub
allowPrivateRepositories: true
# Allow new Users to Sign Up
allowUserSignUp: true
# Cache directory path. If set, the cache directory for the Helm client will be explicitly set (otherwise
# defaults to $HOME/.cache), and the directory will be mounted as ephemeral volume (emptyDir)
cacheDir: ""
# Directory path where the configuration files should be mounted
configDir: "/home/hub/.cfg"
# Banners configuration file url
bannersURL: ""
# Hub server base url
baseURL: ""
# Hub server shutdown timeout
shutdownTimeout: 10s
# Message of the day. The message of the day will be displayed in a banner on the top of the Artifact Hub UI
motd: ""
# Message of the day severity. The color used for the banner will be based on the severity selected
# Options: "info", "warning", "error"
motdSeverity: info
basicAuth:
# Enable Hub basic auth
enabled: false
# Hub basic auth username
username: hub
# Hub basic auth password
password: changeme
cookie:
# Hub cookie hash key
hashKey: default-unsafe-key
# Enable Hub secure cookies
secure: false
csrf:
# CSRF authentication key
authKey: default-unsafe-key
# CSRF secure cookie
secure: false
oauth:
github:
# Enable GitHub OAuth
enabled: false
google:
# Enable Google oauth
enabled: false
oidc:
# Enable OIDC
enabled: true
# OpenID connect issuer url
issuerURL: https://idp.mylogin.space/application/o/k0s-dc1/
# OpenID connect oauth client id
clientID: <path:CORE0_SITE1/data/ArtifactHub/OIDC#ClientID>
# OpenID connect oauth client secret
clientSecret: <path:CORE0_SITE1/data/ArtifactHub/OIDC#ClientSecret>
# OpenID connect oauth redirect url
redirectURL: https://artifacthub.int.mylogin.space/oauth/oidc/callback
# OpenID connect oauth scopes
scopes:
- openid
- profile
- email
# Skip email verified check
skipEmailVerifiedCheck: true
# X-Forwarded-For IP index
xffIndex: 0
analytics:
# Google Analytics tracking id
gaTrackingID: ""
# Scanner configuration
scanner:
enabled: false
cronjob:
image:
# Scanner image repository (without the tag)
repository: artifacthub/scanner
securityContext: {}
resources: {}
# If you do want to specify resources, uncomment the following
# lines and adjust them as necessary.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# Optionally specify extra list of additional labels for the scanner cronjob
extraCronJobLabels: {}
# Optionally specify extra list of additional labels for the jobs spawned by the scanner cronjob
extraJobLabels: {}
# Optionally specify extra list of additional volumes for the scanner cronjob
extraVolumes: []
# Optionally specify extra list of additional volume mounts for the scanner cronjob
extraVolumeMounts: []
# Number of snapshots to process concurrently
concurrency: 3
# Trivy server url. Defaults to the Trivy service's internal URL
trivyURL: ""
# Cache directory path. If set, the cache directory for the Trivy client will be explicitly set (otherwise defaults
# to $HOME/.cache), and the directory will be mounted as ephemeral volume (emptyDir)
cacheDir: ""
# Directory path where the configuration files should be mounted
configDir: "/home/scanner/.cfg"
# Tracker configuration
tracker:
cronjob:
image:
# Tracker image repository (without the tag)
repository: artifacthub/tracker
securityContext: {}
resources: {}
# If you do want to specify resources, uncomment the following
# lines and adjust them as necessary.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# Optionally specify extra list of additional labels for the tracker cronjob
extraCronJobLabels: {}
# Optionally specify extra list of additional labels for the Jobs spawned by the tracker cronjob
extraJobLabels: {}
# Optionally specify extra list of additional volumes for the tracker cronjob
extraVolumes: []
# Optionally specify extra list of additional volume mounts for the tracker cronjob
extraVolumeMounts: []
# Cache directory path. If set, the cache directory for the Helm client will be explicitly set (otherwise defaults
# to $HOME/.cache), and the directory will be mounted as ephemeral volume (emptyDir)
cacheDir: ""
# Directory path where the configuration files should be mounted
configDir: "/home/tracker/.cfg"
# Number of repositories to process concurrently
concurrency: 5
# Maximum duration for the tracking of a single repository
repositoryTimeout: 12h
# Repositories names to process ([] = all)
repositoriesNames: []
# Repositories kinds to process ([] = all)
repositoriesKinds: []
# Bypass digest check. Use this option to force already indexed packages to be reprocessed (use with caution)
bypassDigestCheck: false
# Trivy configuration
trivy:
enabled: false
deploy:
image: aquasec/trivy:0.43.1
securityContext: {}
resources: {}
# If you do want to specify resources, uncomment the following
# lines and adjust them as necessary.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# Optionally specify extra list of additional labels for the trivy deployment
extraDeploymentLabels: {}
# Optionally specify extra list of additional labels for trivy pods
extraPodLabels: {}
# Optionally specify extra list of additional volumes for the trivy deployment
extraVolumes: []
# Optionally specify extra list of additional volume mounts for the trivy deployment
extraVolumeMounts: []
persistence:
enabled: false
size: 10Gi
# Values for postgresql chart dependency
postgresql:
enabled: false
image:
repository: artifacthub/postgres
tag: latest
persistence:
mountPath: /data
postgresqlUsername: postgres
postgresqlPassword: postgres
postgresqlDatabase: hub
postgresqlDataDir: /data/pgdata
# Extra objects to deploy (value evaluated as a template)
extraDeploy: []
gitlab:
enabled: true
## The global properties are used to configure multiple charts at once.
## https://docs.gitlab.com/charts/charts/globals
global:
priorityClassName: 'system-cluster-critical'
## Supplemental Pod labels. Will not be used for selectors.
pod:
labels:
logs: loki-myloginspace
## https://docs.gitlab.com/charts/installation/deployment#deploy-the-community-edition
edition: ce
monitoring:
enabled: true
## https://docs.gitlab.com/charts/charts/globals#application-resource
application:
create: false
links: []
allowClusterRoles: true
## https://docs.gitlab.com/charts/charts/globals#configure-host-settings
hosts:
domain: git.writemy.codes
https: true
## https://docs.gitlab.com/charts/charts/globals#configure-ingress-settings
ingress:
enabled: false
configureCertmanager: false
## https://docs.gitlab.com/charts/charts/globals#configure-postgresql-settings
psql:
host: psql-int.mylogin.space
load_balancing:
hosts:
- psql.mylogin.space
- psql-int-rep.mylogin.space
database: gl-core
username: gl-core
keepalives: 1
keepalivesIdle: 5
keepalivesInterval: 3
keepalivesCount: 3
tcpUserTimeout: 13000
connectTimeout: 10
preparedStatements: false
password:
useSecret: true
secret: gitlab-user
key: password
## https://docs.gitlab.com/charts/charts/globals#configure-gitaly-settings
gitaly:
enabled: true
authToken: {}
# secret:
# key:
# serviceName:
internal:
names: [default]
external: []
service:
name: gitaly
type: ClusterIP
externalPort: 8075
internalPort: 8075
tls:
externalPort: 8076
internalPort: 8076
tls:
enabled: false
# secretName:
## https://docs.gitlab.com/charts/charts/globals#configure-redis-settings
redis:
auth:
enabled: false
host: redis.mylogin.space
database: 130
port: 6379
praefect:
enabled: true
replaceInternalGitaly: true
authToken: {}
autoMigrate: true
psql:
host: psql.mylogin.space
port: 5432
dbName: gl-repos
user: gl-praefect
dbSecret:
secret: gl-praefect-creds
key: password
virtualStorages:
- name: default
gitalyReplicas: 3
maxUnavailable: 1
service:
type: ClusterIP
externalPort: 8075
internalPort: 8075
tls:
externalPort: 8076
internalPort: 8076
tls:
enabled: false
# secretName:
## https://docs.gitlab.com/charts/charts/globals#configure-minio-settings
minio:
enabled: false
## https://docs.gitlab.com/charts/charts/globals#configure-appconfig-settings
## Rails based portions of this chart share many settings
appConfig:
## https://docs.gitlab.com/charts/charts/globals#general-application-settings
enableUsagePing: false
enableSeatLink: true
applicationSettingsCacheSeconds: 900
defaultCanCreateGroup: true
usernameChangingEnabled: true
defaultProjectsFeatures:
issues: true
mergeRequests: true
wiki: true
snippets: true
builds: true
containerRegistry: false
webhookTimeout:
maxRequestDurationSeconds:
## https://docs.gitlab.com/charts/charts/globals#cron-jobs-related-settings
cron_jobs: {}
## https://docs.gitlab.com/charts/charts/globals#content-security-policy
contentSecurityPolicy:
enabled: false
report_only: true
# directives: {}
## https://docs.gitlab.com/charts/charts/globals#lfs-artifacts-uploads-packages-external-mr-diffs-and-dependency-proxy
object_store:
enabled: false
proxy_download: false
connection:
key: connection
secret: gitlab-s3-prod
lfs:
enabled: false
proxy_download: false
bucket: 623579a1-8adc-0b12-dd3f-f24793c3a00f-imy3gs
artifacts:
enabled: false
proxy_download: false
bucket: 56c4bfd0-20f8-93d7-476f-a86435dde7df-w8qn40
uploads:
enabled: false
proxy_download: false
bucket: gitlab-uploads
packages:
enabled: false
proxy_download: false
bucket: gitlab-packages
externalDiffs:
enabled: false
proxy_download: false
bucket: 4781a816-7416-d012-9a2a-6dbe65624e17-ykv7qk
terraformState:
enabled: false
proxy_download: false
bucket: 29f1e5ee-1b9c-14da-cc79-6ebe911caa7b-p3e18b
ciSecureFiles:
enabled: false
proxy_download: false
bucket: gitlab-ci-secure-files
dependencyProxy:
enabled: false
proxy_download: false
bucket: b5085eee-d81c-6a15-4a33-6a32a2c325d0-9ejn31
backups:
bucket: gitlab-backups
tmpBucket: tmp
## https://docs.gitlab.com/charts/charts/globals#ldap
ldap:
# prevent the use of LDAP for sign-in via web.
preventSignin: false
servers:
main:
label: Authentik LDAP
host: ldap.mylogin.space
port: 636
bind_dn: cn=gl-core,ou=users,dc=ldap,dc=mylogin,dc=space
password:
secret: gitlab-user
key: password
uid: cn
base: ou=users,dc=ldap,dc=mylogin,dc=space
group_base: ou=groups,dc=ldap,dc=mylogin,dc=space
active_directory: false
attributes:
username: cn
first_name: name
last_name: lastname
name: displayName
email: mail
encryption: simple_tls
## https://docs.gitlab.com/charts/charts/globals#kas-settings
gitlab_kas:
enabled: true
secret: gitlab-kas-prod
key: kas_shared_secret
## https://docs.gitlab.com/charts/charts/globals#omniauth
omniauth:
enabled: true
autoSignInWithProvider:
syncProfileAttributes: [uid]
blockAutoCreatedUsers: true
autoLinkLdapUser: true
autoLinkSamlUser: false
autoLinkUser: []
externalProviders: []
allowBypassTwoFactor: []
allowSingleSignOn:
- openid_connect
providers:
- secret: gitlab-oidc-prod
gitlab_docs:
enabled: false
host: ""
## https://docs.gitlab.com/charts/advanced/geo/
geo:
enabled: false
registry:
replication:
enabled: false
primaryApiUrl:
## Consumes global.registry.notificationSecret
## https://docs.gitlab.com/charts/charts/gitlab/kas/
kas:
enabled: false
service:
apiExternalPort: 8153 # port for connections from the GitLab backend
## https://docs.gitlab.com/charts/charts/globals#configure-gitlab-shell
shell:
authToken:
key: shared_secret
secret: gitlab-shell-prod
hostKeys: {}
# secret:
## https://docs.gitlab.com/charts/charts/globals#tcp-proxy-protocol
tcp:
proxyProtocol: false
## Rails application secrets
## Secret created according to https://docs.gitlab.com/charts/installation/secrets#gitlab-rails-secret
## If allowing shared-secrets generation, this is OPTIONAL.
railsSecrets: {}
# secret:
## https://docs.gitlab.com/charts/charts/globals#configure-registry-settings
registry:
bucket: registry
certificate: {}
# secret:
httpSecret: {}
# secret:
# key:
notificationSecret: {}
# secret:
# key:
tls:
enabled: false
# secretName:
redis:
cache:
password: {}
# https://docs.docker.com/registry/notifications/#configuration
notifications: {}
# endpoints:
# - name: FooListener
# url: https://foolistener.com/event
# timeout: 500ms
# threshold: 10
# backoff: 1s
# headers:
# FooBar: ['1', '2']
# Authorization:
# secret: gitlab-registry-authorization-header
# SpecificPassword:
# secret: gitlab-registry-specific-password
# key: password
# events: {}
# Settings utilized by other services referencing registry:
enabled: false
host:
# port: 443
api:
protocol: http
serviceName: registry
port: 5000
tokenIssuer: gitlab-issuer
pages:
enabled: false
accessControl: false
https: # default true
externalHttp: []
externalHttps: []
artifactsServer: true
localStore:
enabled: false
objectStore:
enabled: true
bucket: gitlab-pages
# proxy_download: true
connection: {}
# secret:
# key:
## GitLab Runner
## Secret created according to https://docs.gitlab.com/charts/installation/secrets#gitlab-runner-secret
## If allowing shared-secrets generation, this is OPTIONAL.
runner:
registrationToken: {}
# secret:
## https://docs.gitlab.com/charts/charts/globals#outgoing-email
## Outgoing email server settings
smtp:
enabled: true
address: mail.mylogin.space
port: 465
tls: false
from: gl-core@mail.mylogin.space
user_name: gl-core
## https://docs.gitlab.com/charts/installation/secrets#smtp-password
password:
secret: gitlab-user
key: password
domain: mail.mylogin.space
authentication: 'login'
starttls_auto: false
openssl_verify_mode: "peer"
open_timeout: 30
read_timeout: 60
pool: false
## https://docs.gitlab.com/charts/installation/deployment#outgoing-email
## Email persona used in email sent by GitLab
email:
from: gl-core@mail.mylogin.space
display_name: GitLab
reply_to: august@mylogin.space
subject_suffix: ""
smime:
enabled: false
secretName: ""
keyName: "tls.key"
certName: "tls.crt"
## Timezone for containers.
time_zone: UTC
## https://docs.gitlab.com/charts/charts/globals#configure-workhorse-settings
## Global settings related to Workhorse
workhorse:
## https://docs.gitlab.com/charts/installation/secrets#gitlab-workhorse-secret
secret: gitlab-workhorse-prod
key: shared_secret
tls: {}
# enabled: true
## https://docs.gitlab.com/charts/charts/globals#configure-webservice
webservice:
workerTimeout: 60
extraEnv:
GITLAB_RAILS_RACK_TIMEOUT: '60'
GITLAB_RAILS_WAIT_TIMEOUT: '90'
## https://docs.gitlab.com/charts/charts/globals#custom-certificate-authorities
# configuration of certificates container & custom CA injection
certificates:
customCAs: []
gitlabBase:
image:
repository: registry.gitlab.com/gitlab-org/build/cng/gitlab-base
# Default tag is `global.gitlabVersion` or `master` if the former one is undefined.
# Charts using this image as init container support further overrides with `init.image.tag`.
# tag: master
# pullPolicy: IfNotPresent
# pullSecrets: []
## https://docs.gitlab.com/charts/charts/globals#service-accounts
serviceAccount:
enabled: true
create: true
## https://docs.gitlab.com/charts/charts/globals/#tracing
#tracing:
#connection:
# string: opentracing://jaeger?http_endpoint=http%3A%2F%2Fdc1%2Dk3s%2Dnode1%2Dcollectors%2Dalloy%2Ecore%2Dprod%2Esvc%2Ecluster%2Elocal%3A14268%2Fapi%2Ftraces&sampler=const&sampler_param=0.1
#urlTemplate: ""
zoekt:
gateway:
basicAuth: {}
indexer:
internalApi: {}
upgradeCheck:
enabled: true
installCertmanager: false
## Installation & configuration of jetstack/cert-manager
## See requirements.yaml for current version
certmanager:
installCRDs: false
nameOverride: certmanager
## https://docs.gitlab.com/charts/charts/nginx/
## https://docs.gitlab.com/charts/architecture/decisions#nginx-ingress
## Installation & configuration of charts/ingress-nginx:
nginx-ingress:
enabled: false
## Installation & configuration of stable/prometheus
## See requirements.yaml for current version
prometheus:
install: false
rbac:
create: true
alertmanager:
enabled: false
alertmanagerFiles:
alertmanager.yml: {}
kubeStateMetrics:
enabled: false
nodeExporter:
enabled: false
pushgateway:
enabled: false
server:
retention: 15d
strategy:
type: Recreate
## Configuration of Redis
## https://docs.gitlab.com/charts/architecture/decisions#redis
## https://docs.gitlab.com/charts/installation/deployment.html#redis
redis:
install: false
existingSecret: gitlab-redis-secret
existingSecretKey: redis-password
usePasswordFile: true
cluster:
enabled: false
metrics:
enabled: true
## Installation & configuration of stable/prostgresql
## See requirements.yaml for current version
postgresql:
install: false
postgresqlDatabase: gitlabhq_production
usePasswordFile: true
existingSecret: bogus
metrics:
enabled: true
## Installation & configuration charts/registry
## https://docs.gitlab.com/charts/architecture/decisions#registry
## https://docs.gitlab.com/charts/charts/registry/
registry:
enabled: false
## Automatic shared secret generation
## https://docs.gitlab.com/charts/installation/secrets
## https://docs.gitlab.com/charts/charts/shared-secrets.html
shared-secrets:
env: production
resources:
requests:
cpu: 50m
securityContext:
# in debian/alpine based images, this is `nobody:nogroup`
runAsUser: 65534
fsGroup: 65534
tolerations: []
podLabels: {}
annotations: {}
## Installation & configuration of gitlab/gitlab-runner
## See requirements.yaml for current version
gitlab-runner:
install: false
rbac:
create: true
runners:
locked: false
cache:
secretName: gitlab-s3-runner