Skip to content

Commit

Permalink
Merge #137748
Browse files Browse the repository at this point in the history
137748: roachprod: hardcode gce project for side-eye secret r=tbg a=tbg

See
https://cockroachlabs.slack.com/archives/C06KHP4PU4X/p1734533459160169.

Epic: none


Co-authored-by: Tobias Grieger <[email protected]>
  • Loading branch information
craig[bot] and tbg committed Dec 19, 2024
2 parents 4f7db86 + a8d331e commit 8e9e897
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/roachprod/install/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ var installLocalCmds = map[string]map[string]*exec.Cmd{
},
}

var sideEyeSecretCmd = exec.Command("gcloud", "secrets", "versions", "access", "latest", "--secret", "side-eye-key")
var sideEyeSecretCmd = exec.Command("gcloud",
"--project", "cockroach-ephemeral",
"secrets", "versions", "access", "latest", "--secret", "side-eye-key")

// SortedCmds TODO(peter): document
func SortedCmds() []string {
Expand Down

0 comments on commit 8e9e897

Please sign in to comment.