具有不同配置的 gcloud 多个终端处于活动状态

gcloud multiple terminals with different configuration active

我在不同的环境中工作 暂存和生产。通常我需要在两种环境中同时做一些事情。每个环境都是一个 gcloud 配置。所以我总是在配置之间跳转。

我想在不同的终端激活不同的配置,有什么办法吗?

当我运行以下命令时,它会影响所有终端,有什么办法只影响当前终端吗?

gcloud config configurations activate <config-name>

任何解决方法也很有用

谢谢

根据gcloud help

GLOBAL FLAGS
     ...
     --configuration=CONFIGURATION
        The configuration to use for this command invocation. For more
        information on how to use configurations, run: gcloud topic
        configurations. You can also use the [CLOUDSDK_ACTIVE_CONFIG_NAME]
        environment variable to set the equivalent of this flag for a terminal
        session.

您可以 运行 在一个终端

export CLOUDSDK_ACTIVE_CONFIG_NAME=config-name1

并在另一个航站楼

export CLOUDSDK_ACTIVE_CONFIG_NAME=config-name2

希望有用。