From 13e2a53585c58db05eaaf87c4f7f9330213e3dde Mon Sep 17 00:00:00 2001 From: Jussi Elo Date: Mon, 8 Dec 2025 12:13:59 +0200 Subject: [PATCH 1/3] Fix rsync command by adding trailing slashes (#475) --- .github/workflows/docs-file-copy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-file-copy.yml b/.github/workflows/docs-file-copy.yml index fca2b37..4df5776 100644 --- a/.github/workflows/docs-file-copy.yml +++ b/.github/workflows/docs-file-copy.yml @@ -29,8 +29,8 @@ jobs: git clone https://x-access-token:${{ secrets.DOCS_REPO_TOKEN }}@github.com/silogen/AMDEnterpriseAISuiteDocs.git target_amd_docs cd target_amd_docs - rsync -av --delete --exclude='.git' ../source_docs/docs docs/ai-workloads-docs - rsync -av --delete --exclude='.git' ../source_docs/workloads docs/ai-workloads-manifests + rsync -av --delete --exclude='.git' ../source_docs/docs/ docs/ai-workloads-docs + rsync -av --delete --exclude='.git' ../source_docs/workloads/ docs/ai-workloads-manifests git add . git diff --staged --quiet || git commit -m "Update external docs from ai-workloads repo" From 429266b23590d07253e6000fbd20ebf5c24bfa1f Mon Sep 17 00:00:00 2001 From: Bo Date: Mon, 8 Dec 2025 13:21:46 +0100 Subject: [PATCH 2/3] Set python.defaultInterpreterPath dynamically (#476) --- .../dev-workspace-vscode/helm/mount/default_settings.json | 3 ++- workloads/dev-workspace-vscode/helm/values.yaml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/workloads/dev-workspace-vscode/helm/mount/default_settings.json b/workloads/dev-workspace-vscode/helm/mount/default_settings.json index d9d6f31..55080bc 100644 --- a/workloads/dev-workspace-vscode/helm/mount/default_settings.json +++ b/workloads/dev-workspace-vscode/helm/mount/default_settings.json @@ -1,4 +1,5 @@ { "workbench.colorTheme": "Default Dark Modern", - "chat.disableAIFeatures": true + "chat.disableAIFeatures": true, + "python.defaultInterpreterPath": "__PYTHON_PATH__" } diff --git a/workloads/dev-workspace-vscode/helm/values.yaml b/workloads/dev-workspace-vscode/helm/values.yaml index 58806b0..924ecc0 100644 --- a/workloads/dev-workspace-vscode/helm/values.yaml +++ b/workloads/dev-workspace-vscode/helm/values.yaml @@ -76,6 +76,7 @@ entrypoint: | # Copy default settings only if user settings don't exist (preserve user customizations) if [ ! -f "$VSCODE_USER_DIR/settings.json" ]; then cp /workload/mount/default_settings.json "$VSCODE_USER_DIR/settings.json" + sed -i "s|__PYTHON_PATH__|$(which python)|" "$VSCODE_USER_DIR/settings.json" fi # Set environment variables for code-server to use persistent directories From cd00166481dc9536cabf6d8418b08846dc5b9492 Mon Sep 17 00:00:00 2001 From: Bo Date: Mon, 8 Dec 2025 14:12:49 +0100 Subject: [PATCH 3/3] Update PVC annotation in override (#478) Co-authored-by: Mark van Heeswijk --- .../helm/overrides/dev-center/signature.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workloads/dev-workspace-vscode/helm/overrides/dev-center/signature.yaml b/workloads/dev-workspace-vscode/helm/overrides/dev-center/signature.yaml index ef37b43..d9b4234 100644 --- a/workloads/dev-workspace-vscode/helm/overrides/dev-center/signature.yaml +++ b/workloads/dev-workspace-vscode/helm/overrides/dev-center/signature.yaml @@ -7,8 +7,8 @@ metadata: workload_id: "" user_id: "" - annotations: - pvc.silogen.ai/user-pvc-size: "100Gi" +pvc_annotations: + pvc.silogen.ai/user-pvc-size: "100Gi" http_route: enabled: true