From 0dde491ff08c17a4582715491028f6e3a1a7c50f Mon Sep 17 00:00:00 2001 From: NeilSmithDLS Date: Thu, 16 Apr 2026 13:09:38 +0100 Subject: [PATCH 1/2] minor change to UV cache location (to aid Neil's understanding) --- helm/blueapi/templates/statefulset.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/blueapi/templates/statefulset.yaml b/helm/blueapi/templates/statefulset.yaml index cf1b073e9..8f1962b6f 100644 --- a/helm/blueapi/templates/statefulset.yaml +++ b/helm/blueapi/templates/statefulset.yaml @@ -101,7 +101,7 @@ spec: cp -r /app/.venv/* /artefacts env: - name: UV_CACHE_DIR - value: {{ (.Values.worker.scratch).root }}/.uv-cache + value: {{ (.Values.worker.scratch).root }}/.uv-cache-ns volumeMounts: - name: init-config mountPath: "/config" @@ -205,7 +205,7 @@ spec: name: {{ include "blueapi.fullname" . }}-otel-config env: - name: UV_CACHE_DIR - value: {{ (.Values.worker.scratch).root }}/.uv-cache + value: {{ (.Values.worker.scratch).root }}/.uv-cache-ns {{- if .Values.debug.enabled }} - name: DEBUG_MODE value: "ON" From 2418183c86568fd9bb0c92bb13ddc93e72897a0b Mon Sep 17 00:00:00 2001 From: NeilSmithDLS Date: Wed, 22 Apr 2026 14:26:14 +0100 Subject: [PATCH 2/2] moving uv-cache folder inside /app --- helm/blueapi/templates/statefulset.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/blueapi/templates/statefulset.yaml b/helm/blueapi/templates/statefulset.yaml index 8f1962b6f..36695459b 100644 --- a/helm/blueapi/templates/statefulset.yaml +++ b/helm/blueapi/templates/statefulset.yaml @@ -101,7 +101,7 @@ spec: cp -r /app/.venv/* /artefacts env: - name: UV_CACHE_DIR - value: {{ (.Values.worker.scratch).root }}/.uv-cache-ns + value: /app/.uv-cache volumeMounts: - name: init-config mountPath: "/config" @@ -205,7 +205,7 @@ spec: name: {{ include "blueapi.fullname" . }}-otel-config env: - name: UV_CACHE_DIR - value: {{ (.Values.worker.scratch).root }}/.uv-cache-ns + value: /app/.uv-cache {{- if .Values.debug.enabled }} - name: DEBUG_MODE value: "ON"