From ae68f4ff6b20062edb016352c25dbdf64b218946 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 17 Jun 2026 10:27:16 +0000 Subject: [PATCH] =?UTF-8?q?fix(stt):=20imagePullSecret=20ghcr-pull=20pour?= =?UTF-8?q?=20l'image=20priv=C3=A9e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le Deployment référence un secret de pull ghcr-pull (ns ai) — image ghcr privée. Secret créé manuellement (même pratique que ghostfolio-secret, non versionné). Doc d'install dans stt/README.md. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_013FmcxGsyXZXogiAHQLjnZT --- k8s/apps/stt/deployment.yaml | 4 ++++ stt/README.md | 9 +++++++++ 2 files changed, 13 insertions(+) diff --git a/k8s/apps/stt/deployment.yaml b/k8s/apps/stt/deployment.yaml index 8455eb6..88c9d7c 100644 --- a/k8s/apps/stt/deployment.yaml +++ b/k8s/apps/stt/deployment.yaml @@ -13,6 +13,10 @@ spec: labels: app: stt-server spec: + # Image privée sur ghcr → secret de pull créé manuellement dans le ns ai + # (cf. README : kubectl create secret docker-registry ghcr-pull ...) + imagePullSecrets: + - name: ghcr-pull containers: - name: stt-server image: ghcr.io/alkatrazz24/funk-stt-server:latest diff --git a/stt/README.md b/stt/README.md index 87c301e..2425228 100644 --- a/stt/README.md +++ b/stt/README.md @@ -39,6 +39,15 @@ Prérequis poste : micro, Piper + voix dans `~/.local/share/piper/`, `aplay` (al Tant que ce n'est pas mergé sur `main`, le cluster ne le prend pas. 3. Le serveur joint LiteLLM (s01, hors cluster) via le Service `litellm-ext` (Endpoints manuel → `192.168.10.1:4000`). +4. **Image privée** : le Deployment référence un `imagePullSecret` `ghcr-pull`. + À créer une fois dans le ns `ai` (même pratique que `ghostfolio-secret`, non versionné) : + ```bash + kubectl create secret docker-registry ghcr-pull \ + --docker-server=ghcr.io \ + --docker-username=Alkatrazz24 \ + --docker-password= \ + -n ai + ``` ## Structure