Add nix pull-through cache secrets.

This commit is contained in:
Tom Alexander
2026-07-12 17:58:06 -04:00
parent 32080e0e01
commit 40b8742a80

View File

@@ -103,6 +103,11 @@ let
"homepage-staging" = { "homepage-staging" = {
"oauth2-env" = oauth2_env { dex_id = "homepage-staging"; }; "oauth2-env" = oauth2_env { dex_id = "homepage-staging"; };
}; };
"nix-pull-through-cache" = {
"auth" = {
"CACHE_GET_TOKEN" = (builtins.readFile "${./secrets/nix-pull-through-cache/auth/CACHE_GET_TOKEN}");
};
};
"tekton-gateway" = { "tekton-gateway" = {
"oauth2-env" = oauth2_env { dex_id = "tekton"; }; "oauth2-env" = oauth2_env { dex_id = "tekton"; };
}; };
@@ -125,6 +130,9 @@ let
"harbor-plain" = { "harbor-plain" = {
"config.json" = (builtins.readFile "${./secrets/webhook-bridge/harbor-plain/config.json}"); "config.json" = (builtins.readFile "${./secrets/webhook-bridge/harbor-plain/config.json}");
}; };
"nix-pull-through-cache" = {
"CACHE_GET_TOKEN" = (builtins.readFile "${./secrets/nix-pull-through-cache/auth/CACHE_GET_TOKEN}");
};
}; };
}; };
encrypted_secrets = ( encrypted_secrets = (