1
0
mirror of https://github.com/google/nomulus synced 2026-01-05 04:56:03 +00:00

Let nomulus tool connect to sandbox GKE by default (#2674)

This commit is contained in:
Lai Jiang
2025-02-16 13:10:03 -05:00
committed by GitHub
parent 95831bc8b7
commit eb978ebbd5
6 changed files with 20 additions and 6 deletions

View File

@@ -44,7 +44,10 @@ final class RegistryCli implements CommandRunner {
private static final ImmutableSet<RegistryToolEnvironment> DEFAULT_GKE_ENVIRONMENTS =
ImmutableSet.of(
RegistryToolEnvironment.ALPHA, RegistryToolEnvironment.CRASH, RegistryToolEnvironment.QA);
RegistryToolEnvironment.ALPHA,
RegistryToolEnvironment.CRASH,
RegistryToolEnvironment.QA,
RegistryToolEnvironment.SANDBOX);
// The environment parameter is parsed twice: once here, and once with {@link
// RegistryToolEnvironment#parseFromArgs} in the {@link RegistryTool#main} function.