Skip to content

Commit 12eddc3

Browse files
authored
feat: update to rclone v1.69.3+renku-1 (#890)
1 parent 1484824 commit 12eddc3

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"ghcr.io/devcontainers/features/go:1": {},
3939
"./rclone": {
4040
"rclone_repository": "https://github.com/SwissDataScienceCenter/rclone.git",
41-
"rclone_ref": "v1.69.2+renku-1"
41+
"rclone_ref": "v1.69.3+renku-1"
4242
}
4343
},
4444
"overrideFeatureInstallOrder": [

components/renku_data_services/storage/rclone_schema.autogenerated.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16480,7 +16480,7 @@
1648016480
{
1648116481
"Name": "restore",
1648216482
"Short": "Restore objects from GLACIER or INTELLIGENT-TIERING archive tier",
16483-
"Long": "This command can be used to restore one or more objects from GLACIER to normal storage \nor from INTELLIGENT-TIERING Archive Access / Deep Archive Access tier to the Frequent Access tier.\n\nUsage Examples:\n\n rclone backend restore s3:bucket/path/to/object -o priority=PRIORITY -o lifetime=DAYS\n rclone backend restore s3:bucket/path/to/directory -o priority=PRIORITY -o lifetime=DAYS\n rclone backend restore s3:bucket -o priority=PRIORITY -o lifetime=DAYS\n rclone backend restore s3:bucket/path/to/directory -o priority=PRIORITY\n\nThis flag also obeys the filters. Test first with --interactive/-i or --dry-run flags\n\n rclone --interactive backend restore --include \"*.txt\" s3:bucket/path -o priority=Standard -o lifetime=1\n\nAll the objects shown will be marked for restore, then\n\n rclone backend restore --include \"*.txt\" s3:bucket/path -o priority=Standard -o lifetime=1\n\nIt returns a list of status dictionaries with Remote and Status\nkeys. The Status will be OK if it was successful or an error message\nif not.\n\n [\n {\n \"Status\": \"OK\",\n \"Remote\": \"test.txt\"\n },\n {\n \"Status\": \"OK\",\n \"Remote\": \"test/file4.txt\"\n }\n ]\n\n",
16483+
"Long": "This command can be used to restore one or more objects from GLACIER to normal storage \nor from INTELLIGENT-TIERING Archive Access / Deep Archive Access tier to the Frequent Access tier.\n\nUsage Examples:\n\n rclone backend restore s3:bucket/path/to/ --include /object -o priority=PRIORITY -o lifetime=DAYS\n rclone backend restore s3:bucket/path/to/directory -o priority=PRIORITY -o lifetime=DAYS\n rclone backend restore s3:bucket -o priority=PRIORITY -o lifetime=DAYS\n rclone backend restore s3:bucket/path/to/directory -o priority=PRIORITY\n\nThis flag also obeys the filters. Test first with --interactive/-i or --dry-run flags\n\n rclone --interactive backend restore --include \"*.txt\" s3:bucket/path -o priority=Standard -o lifetime=1\n\nAll the objects shown will be marked for restore, then\n\n rclone backend restore --include \"*.txt\" s3:bucket/path -o priority=Standard -o lifetime=1\n\nIt returns a list of status dictionaries with Remote and Status\nkeys. The Status will be OK if it was successful or an error message\nif not.\n\n [\n {\n \"Status\": \"OK\",\n \"Remote\": \"test.txt\"\n },\n {\n \"Status\": \"OK\",\n \"Remote\": \"test/file4.txt\"\n }\n ]\n\n",
1648416484
"Opts": {
1648516485
"description": "The optional description for the job.",
1648616486
"lifetime": "Lifetime of the active copy in days, ignored for INTELLIGENT-TIERING storage",

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@
6161
devshellToolsPkgs = devshell-tools.packages.${system};
6262

6363
rclone = pkgs.rclone.overrideAttrs (old: {
64-
version = "1.69.1";
64+
version = "1.69.3";
6565
vendorHash = "sha256-Wu9d98SIENCkJYoGT/f9KN8vnYYGMN7HxhzqtkOYQ/8=";
6666
src = pkgs.fetchFromGitHub {
6767
owner = "SwissDataScienceCenter";
6868
repo = "rclone";
69-
rev = "v1.69.2+renku-1";
69+
rev = "v1.69.3+renku-1";
7070
sha256 = "sha256-aorgWwYBVVOYhMXXBDWBMXkaZi0WjnGaMoRlwXCa5w4=";
7171
};
7272
});

projects/renku_data_service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG RCLONE_IMAGE_REPOSITORY="ghcr.io/swissdatasciencecenter/rclone"
2-
ARG RCLONE_IMAGE_TAG="sha-1f5fcf2"
2+
ARG RCLONE_IMAGE_TAG="sha-9cbde11"
33
FROM ${RCLONE_IMAGE_REPOSITORY}:${RCLONE_IMAGE_TAG} AS rclone
44

55
FROM python:3.13-bookworm AS builder

0 commit comments

Comments
 (0)