Skip to content

Commit 918e094

Browse files
Fix r4 in redame
1 parent f2b737b commit 918e094

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

charts/ontoserver-extras/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ The `ontoserver` chart is intentionally unaware of Varnish — it routes traffic
7878

7979
When both charts are sources in the same ArgoCD Application, both are reconciled together. Set `backendServiceNameOverride` in your ontoserver values file and ArgoCD will keep both in sync — no manual intervention needed after the initial setup.
8080

81+
The examples below assume both charts share the same Helm release name inside the ArgoCD Application, so generated resource names use that single release prefix.
82+
8183
```yaml
8284
# ArgoCD Application
8385
spec:
@@ -105,7 +107,7 @@ varnish:
105107
enabled: true
106108
opentelemetry:
107109
enabled: true
108-
collectorEndpoint: http://ontoserver-r4-otel-collector:9411
110+
collectorEndpoint: http://<release-name>-otel-collector:9411
109111

110112
collector:
111113
enabled: true
@@ -117,7 +119,7 @@ collector:
117119
# ontoserver values.yaml — route Gateway/Ingress through Varnish
118120
ontoserver:
119121
gateway:
120-
backendServiceNameOverride: ontoserver-r4-varnish-service
122+
backendServiceNameOverride: <release-name>-varnish-service
121123
```
122124
123125
### Plain Helm install
@@ -131,7 +133,7 @@ helm install ontoserver-r4 ./charts/ontoserver -f values.yaml
131133
# 2. Install the extras chart (deploys Varnish and its service)
132134
helm install ontoserver-r4-extras ./charts/ontoserver-extras -f extras-values.yaml
133135
134-
# 3. Now upgrade the main chart to route traffic through Varnish
136+
# 3. Now upgrade the main chart to route traffic through the extras release's Varnish service
135137
helm upgrade ontoserver-r4 ./charts/ontoserver -f values.yaml \
136138
--set ontoserver.gateway.backendServiceNameOverride=ontoserver-r4-extras-varnish-service
137139
```

0 commit comments

Comments
 (0)