From 0f85fb88696f76791c9ab7973c3f7154e1d120ee Mon Sep 17 00:00:00 2001 From: Stan Rosenberg Date: Sun, 27 Oct 2024 15:50:40 -0400 Subject: [PATCH] roachprod: add `google_compute_engine` to `DefaultPubKeyNames` roachprod uses `DefaultPubKeyNames` to look for a public SSH key under $HOME/.ssh. Historically, folks would create an SSH keypair named `google_compute_engine`, so we add it to the list of default keys to scan. Epic: none Release note: None --- pkg/roachprod/config/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/roachprod/config/config.go b/pkg/roachprod/config/config.go index 1b09bfef19db..525e63371773 100644 --- a/pkg/roachprod/config/config.go +++ b/pkg/roachprod/config/config.go @@ -196,6 +196,7 @@ var DefaultPubKeyNames = []string{ "id_ed25519", "id_ed25519_sk", "id_dsa", + "google_compute_engine", } // SSHPublicKeyPath returns the path to the default public key expected by