|
33 | 33 | # Kubernetes secret name containing tls.crt and tls.key |
34 | 34 | secretName: "" |
35 | 35 |
|
| 36 | +# ============================================================ |
| 37 | +# Gateway API (HTTPRoutes only) |
| 38 | +# ============================================================ |
| 39 | +# |
| 40 | +# This chart does NOT create a Gateway. It expects one to already exist |
| 41 | +# (e.g. the shared `theia-shared-gateway` in the `gateway-system` namespace) |
| 42 | +# with listeners configured for the hostnames below. |
| 43 | +# |
| 44 | +# Before installing with gateway.enabled=true, the cluster operator must: |
| 45 | +# 1. Add a listener per hostname on the shared Gateway, each with a TLS cert. |
| 46 | +# 2. Point DNS for those hostnames at the shared Gateway's load balancer IP. |
| 47 | + |
| 48 | +gateway: |
| 49 | + # -- Render HTTPRoute resources. Disable to skip all Gateway API wiring. |
| 50 | + enabled: false |
| 51 | + |
| 52 | + # -- Environment base host. Hostnames default to: |
| 53 | + # cache.<baseHost> and repo.<baseHost> |
| 54 | + # e.g. baseHost: test2.theia-test.artemis.cit.tum.de |
| 55 | + baseHost: "" |
| 56 | + |
| 57 | + # -- parentRefs for the HTTPRoutes. Each route attaches to one listener |
| 58 | + # on the shared Gateway via `sectionName`. The listener's hostname on |
| 59 | + # the Gateway must match the route's effective hostname. |
| 60 | + # Example: |
| 61 | + # cache: |
| 62 | + # - name: theia-shared-gateway |
| 63 | + # namespace: gateway-system |
| 64 | + # sectionName: test2-cache |
| 65 | + # repo: |
| 66 | + # - name: theia-shared-gateway |
| 67 | + # namespace: gateway-system |
| 68 | + # sectionName: test2-repo |
| 69 | + parentRefs: |
| 70 | + cache: [] |
| 71 | + repo: [] |
| 72 | + |
| 73 | + # -- Optional explicit hostname overrides. Leave empty to derive from baseHost. |
| 74 | + cache: |
| 75 | + hostname: "" |
| 76 | + repo: |
| 77 | + hostname: "" |
| 78 | + |
36 | 79 | resources: |
37 | 80 | requests: |
38 | 81 | memory: "256Mi" |
@@ -70,6 +113,10 @@ monitoring: |
70 | 113 | reposilite: |
71 | 114 | enabled: true |
72 | 115 |
|
| 116 | + # Override the full name of the Reposilite release (controls the service name). |
| 117 | + # The HTTPRoute backend ref uses this same value. |
| 118 | + fullnameOverride: "eduide-shared-cache-reposilite" |
| 119 | + |
73 | 120 | # Admin access token for Reposilite management |
74 | 121 | adminToken: "changeme" |
75 | 122 |
|
|
0 commit comments