Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[beta] component installation never ends #20

Open
jeferson-cleancloud opened this issue Jul 17, 2022 · 2 comments
Open

[beta] component installation never ends #20

jeferson-cleancloud opened this issue Jul 17, 2022 · 2 comments

Comments

@jeferson-cleancloud
Copy link

While running the following command over ADO pipeline stage:

gcloud beta billing projects link $(gcOutProjectId) --billing-account "$(gcOutBillingProjectId)"

It returns that the [beta] component installation is required. And so it starts the installation, which never ends

Pipelines - Run 20220716 4 logs (1)

@laurensknoll
Copy link
Collaborator

laurensknoll commented Jul 20, 2022

Hi @jeferson-cleancloud

Thanks for reporting this. I'm not sure why the implicit install (using a beta command, whilst it is not available) fails. I expected it was missing a --quiet-flag, but that did not matter. Interestingly, also including the --verbosity=debug-flag does not yield any output. To be continued..

As a work around, please include an explicit beta components install step.

steps:
- task: GoogleCloudSdkInstaller@0
  displayName: 'Install Google Cloud SDK 393.0.0'
  inputs:
    version: 393.0.0
- task: GcloudRunner@0
  displayName: 'gcloud components install beta'
  inputs:
    command: 'components install beta'
  enabled: false
- task: GcloudRunner@0
  displayName: 'gcloud beta projects list'
  inputs:
    command: 'beta projects list'
...

@jeferson-cleancloud
Copy link
Author

Hi @laurensknoll, thanks much for the response ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants