Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs-file-copy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"workbench.colorTheme": "Default Dark Modern",
"chat.disableAIFeatures": true
"chat.disableAIFeatures": true,
"python.defaultInterpreterPath": "__PYTHON_PATH__"
}
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions workloads/dev-workspace-vscode/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down