| Giorgi Lekveishvili | 285ab62 | 2023-11-22 13:50:45 +0400 | [diff] [blame] | 1 | storageClasses: |
| 2 | default: |
| 3 | name: standard |
| 4 | shared: |
| 5 | name: shared-storage |
| 6 | |
| 7 | gitBackend: |
| 8 | resources: |
| 9 | requests: |
| 10 | cpu: 50m |
| 11 | memory: 50Mi |
| 12 | limits: |
| 13 | cpu: 50m |
| 14 | memory: 100Mi |
| 15 | |
| 16 | logging: |
| 17 | persistence: |
| 18 | enabled: false |
| 19 | |
| 20 | service: |
| 21 | type: NodePort |
| 22 | |
| 23 | ingress: |
| 24 | enabled: true |
| 25 | host: backend.gerrit |
| 26 | |
| 27 | gitGC: |
| 28 | schedule: "*/15 * * * *" |
| 29 | |
| 30 | resources: |
| 31 | requests: |
| 32 | cpu: 50m |
| 33 | memory: 100Mi |
| 34 | limits: |
| 35 | cpu: 50m |
| 36 | memory: 100Mi |
| 37 | |
| 38 | logging: |
| 39 | persistence: |
| 40 | enabled: false |
| 41 | |
| 42 | gerritReplica: |
| 43 | initializeTestSite: |
| 44 | enabled: true |
| 45 | |
| 46 | resources: |
| 47 | requests: |
| 48 | cpu: 200m |
| 49 | memory: 400Mi |
| 50 | limits: |
| 51 | cpu: 500m |
| 52 | memory: 400Mi |
| 53 | |
| 54 | persistence: |
| 55 | enabled: false |
| 56 | |
| 57 | ingress: |
| 58 | host: replica.gerrit |
| 59 | |
| 60 | config: |
| 61 | gerrit: |- |
| 62 | [gerrit] |
| 63 | basePath = git |
| 64 | serverId = gerrit-replica-1 |
| 65 | canonicalWebUrl = http://replica.gerrit |
| 66 | [index] |
| 67 | type = LUCENE |
| 68 | [auth] |
| 69 | type = DEVELOPMENT_BECOME_ANY_ACCOUNT |
| 70 | [httpd] |
| 71 | listenUrl = proxy-http://*:8080/ |
| 72 | [sshd] |
| 73 | listenAddress = off |
| 74 | [transfer] |
| 75 | timeout = 120 s |
| 76 | [user] |
| 77 | name = Gerrit Code Review |
| 78 | email = gerrit@example.com |
| 79 | anonymousCoward = Unnamed User |
| 80 | [cache] |
| 81 | directory = cache |
| 82 | [container] |
| 83 | user = gerrit |
| 84 | replica = true |
| 85 | javaHome = /usr/lib/jvm/java-11-openjdk-amd64 |
| 86 | javaOptions = -Djavax.net.ssl.trustStore=/var/gerrit/etc/keystore |
| 87 | javaOptions = -Xms300m |
| 88 | javaOptions = -Xmx300m |