| // Copyright 2025 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| // Only build this if local is not used |
| //go:build !local |
| |
| // Package site contains site local constants for the shivas |
| package site |
| |
| const localDefault = false |
| |
| // localDevEnv is the local dev environment. |
| var localDevEnv = Environment{ |
| // TODO(gregorynisbet): remove once stable version moves to UFS. |
| AdminService: "skylab-staging-bot-fleet.appspot.com", |
| InventoryService: "0.0.0.0:8082", |
| UnifiedFleetService: "127.0.0.1:8800", |
| SwarmingService: "https://chromium-swarm-dev.appspot.com/", |
| // TODO(crbug/1128496): remove when fixed |
| SwarmingServiceAccount: "skylab-admin-task@chromeos-service-accounts-dev.iam.gserviceaccount.com", |
| LogdogService: "luci-logdog-dev.appspot.com", |
| QueenService: "drone-queen-dev.appspot.com", |
| } |
| |
| // devEnv is the environment for the dev cloud project. |
| var devEnv = Environment{ |
| // TODO(gregorynisbet): remove once stable version moves to UFS. |
| AdminService: "skylab-staging-bot-fleet.appspot.com", |
| InventoryService: "cros-lab-inventory-dev.appspot.com", |
| UnifiedFleetService: "ufs.api.cr.dev", |
| SwarmingService: "https://chromium-swarm-dev.appspot.com/", |
| // TODO(crbug/1128496): remove when fixed |
| SwarmingServiceAccount: "skylab-admin-task@chromeos-service-accounts-dev.iam.gserviceaccount.com", |
| LogdogService: "luci-logdog-dev.appspot.com", |
| QueenService: "drone-queen-dev.appspot.com", |
| } |
| |
| // prodEnv is the prod environment. |
| var prodEnv = Environment{ |
| // TODO(gregorynisbet): remove once stable version moves to UFS. |
| AdminService: "chromeos-skylab-bot-fleet.appspot.com", |
| InventoryService: "cros-lab-inventory.appspot.com", |
| UnifiedFleetService: "ufs.api.cr.dev", |
| SwarmingService: "https://chromeos-swarming.appspot.com/", |
| // TODO(crbug/1128496): remove when fixed |
| SwarmingServiceAccount: "skylab-admin-task@chromeos-service-accounts.iam.gserviceaccount.com", |
| LogdogService: "luci-logdog.appspot.com", |
| QueenService: "drone-queen-prod.appspot.com", |
| } |