depot/docker-images.nix

31 lines
1 KiB
Nix
Raw Normal View History

2020-10-04 01:34:09 +00:00
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
let
depot = (import ./default.nix {});
pkgs = depot.third_party.nixpkgs;
lib = pkgs.lib;
images = {
"registry.apps.k8s.lukegb.tech/twitterchiver/archiver:latest" = depot.go.twitterchiver.archiver.dockerImage;
"registry.apps.k8s.lukegb.tech/lukegb-openshiftauth-test/example:latest" = depot.go.openshiftauth.example.dockerImage;
2020-10-04 01:34:09 +00:00
};
crane = "${depot.nix.pkgs.crane}/bin/crane";
decompress = drv: pkgs.runCommandNoCC "docker-image" {} ''
${pkgs.gzip}/bin/gunzip -c ${drv} > $out
'';
pushCommands = lib.mapAttrsToList (name: value: ''
${crane} push ${decompress value} ${name}
'') images;
authCommands = lib.mapAttrsToList (name: value: ''
${crane} auth login ${name} -u "${value.user}" -p "${value.password}"
'') depot.ops.secrets.deployer.dockerRegistryAuth;
in
pkgs.writeShellScript "push-images" ''
${lib.concatStringsSep "\n" authCommands}
${lib.concatStringsSep "\n" pushCommands}
''