commit f053b447a8cd97442bb5bae2ed4b01b9af71e52f parent 97fe87783fc99d158b3a33e7336fd259ecea25fd Author: MTRNord <MTRNord@users.noreply.github.com> Date: Mon, 23 Jun 2025 18:44:19 +0200 Setup connectivity tester Signed-off-by: MTRNord <MTRNord@users.noreply.github.com> Diffstat:
| M | apps/base/matrix/connectivity-tester/deployment.yaml | | | 15 | +++++++++++---- |
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/apps/base/matrix/connectivity-tester/deployment.yaml b/apps/base/matrix/connectivity-tester/deployment.yaml @@ -37,10 +37,10 @@ spec: name: api protocol: TCP volumeMounts: - - name: configs - mountPath: "/usr/share/nginx/html/config.json" - subPath: config.json - readOnly: true + - mountPath: /tmp + name: tmp + - mountPath: /var/cache/nginx/client_temp + name: nginx-cache #livenessProbe: # httpGet: # path: /healthz @@ -72,6 +72,10 @@ spec: name: web protocol: TCP volumeMounts: + - name: configs + mountPath: "/usr/share/nginx/html/config.json" + subPath: config.json + readOnly: true - mountPath: /tmp name: tmp livenessProbe: @@ -95,3 +99,6 @@ spec: - name: tmp emptyDir: sizeLimit: 2048Mi + - name: nginx-cache + emptyDir: + sizeLimit: 2048Mi