Skip to content

Commit

Permalink
Revert to rclone 1.66 in jenkins controller
Browse files Browse the repository at this point in the history
Using rclone 1.68.2 from nixos 24.11 results in 308 redirect error in
pipelines when archiving target images.

Signed-off-by: Joonas Rautiola <[email protected]>
  • Loading branch information
joinemm committed Dec 9, 2024
1 parent 459ddf4 commit 844ec2c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions hosts/azure/jenkins-controller/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ let
s = client.get_secret(secret_name)
print(s.value)
'';
rclone = pkgs.callPackage ../../../pkgs/rclone { };
old-pkgs = (import inputs.nixpkgs-24-05 { inherit (pkgs) system; });
rclone = old-pkgs.callPackage ../../../pkgs/rclone { };
in
{
imports = [
Expand Down Expand Up @@ -107,7 +108,7 @@ in
# Needs to be an overlay so that it propagates to service.jenkins.jobBuilder
nixpkgs.overlays = [
(_: _: {
inherit ((import inputs.nixpkgs-24-05 { inherit (pkgs) system; })) jenkins-job-builder;
inherit (old-pkgs) jenkins-job-builder;
})
];

Expand Down

0 comments on commit 844ec2c

Please sign in to comment.