Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Fix for Multi-Attach error PVC" #1270

Merged
merged 1 commit into from
Mar 8, 2024
Merged
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 ods_ci/tests/Resources/Files/llm/download_model_in_pvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: ${model_name}-claim
spec:
accessModes:
- ReadWriteMany
- ReadWriteOnce
volumeMode: Filesystem
resources:
requests:
Expand All @@ -24,7 +24,7 @@ spec:
restartPolicy: Never
initContainers:
- name: fix-volume-permissions
image: quay.io/quay/busybox@sha256:92f3298bf80a1ba949140d77987f5de081f010337880cd771f7e7fc928f8c74d
image: quay.io/quay/busybox@sha256:92f3298bf80a1ba949140d77987f5de081f010337880cd771f7e7fc928f8c74d
command: ["sh"]
args: ["-c", "mkdir -p /mnt/models/${model_path} && chmod -R 777 /mnt/models"]
volumeMounts:
Expand Down
Loading