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

feat: Add Util funcs, updating func names, logs, configs and ensure service requirement #485

Merged
merged 10 commits into from
Jun 28, 2024
Prev Previous commit
Next Next commit
fix: url data source
  • Loading branch information
ishaansehgal99 committed Jun 27, 2024
commit e2ac6cf515bf266e15a7ee1e2dda1c4e62634eb4
2 changes: 1 addition & 1 deletion pkg/tuning/preset-tuning_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ func TestHandleURLDataSource(t *testing.T) {
},
expectedInitContainerName: "data-downloader",
expectedImage: "curlimages/curl",
expectedCommands: "filename=$(basename \"$url\" | sed 's/[?=&]/_/g')\ncurl -sSL $url -o $DATA_VOLUME_PATH/$filename",
expectedCommands: "curl -sSL $url -o $DATA_VOLUME_PATH/$filename",
expectedVolumeName: "data-volume",
expectedVolumeMountPath: utils.DefaultDataVolumePath,
},
Expand Down
Loading