setup-gcloud | GitHub Action for installing and configuring the gcloud CLI | GCP library

 by   google-github-actions TypeScript Version: v1.1.1 License: Apache-2.0

kandi X-RAY | setup-gcloud Summary

kandi X-RAY | setup-gcloud Summary

setup-gcloud is a TypeScript library typically used in Cloud, GCP applications. setup-gcloud has no vulnerabilities, it has a Permissive License and it has medium support. However setup-gcloud has 1 bugs. You can download it from GitHub.

Configures the Google Cloud SDK in the GitHub Actions environment. The Google Cloud SDK includes both the gcloud and gsutil binaries.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              setup-gcloud has a medium active ecosystem.
              It has 1528 star(s) with 556 fork(s). There are 67 watchers for this library.
              There were 2 major release(s) in the last 12 months.
              There are 7 open issues and 154 have been closed. On average issues are closed in 81 days. There are 1 open pull requests and 0 closed requests.
              It has a neutral sentiment in the developer community.
              The latest version of setup-gcloud is v1.1.1

            kandi-Quality Quality

              setup-gcloud has 1 bugs (0 blocker, 0 critical, 1 major, 0 minor) and 1 code smells.

            kandi-Security Security

              setup-gcloud has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
              setup-gcloud code analysis shows 0 unresolved vulnerabilities.
              There are 0 security hotspots that need review.

            kandi-License License

              setup-gcloud is licensed under the Apache-2.0 License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              setup-gcloud releases are available to install and integrate.
              Installation instructions are not available. Examples and code snippets are available.

            Top functions reviewed by kandi - BETA

            kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
            Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of setup-gcloud
            Get all kandi verified functions for this library.

            setup-gcloud Key Features

            No Key Features are available at this moment for setup-gcloud.

            setup-gcloud Examples and Code Snippets

            No Code Snippets are available at this moment for setup-gcloud.

            Community Discussions

            QUESTION

            GCP workload identity federation - Github provider - 'Unable to acquire impersonated credentials'
            Asked 2022-Apr-07 at 13:15

            I've followed these instructions to the letter to allow me to use the short lived token authentication method to access gcloud resources from our github actions workflow.

            I've created the service account, workload identity pool and github provider pool using the exact instructions above, but it doesn't appear that the auth step is getting the correct token (or any token at all). The GCP service account has the correct IAM permissions.

            On the gcloud compute instances list step, I'm receiving the error:

            ...

            ANSWER

            Answered 2022-Apr-07 at 13:15

            So I later found out what this was. Despite running:

            Source https://stackoverflow.com/questions/71781063

            QUESTION

            Github Actions Error on "Run google-github-actions/setup-gcloud@master" . How to resolve this?
            Asked 2022-Mar-23 at 20:13

            I am using Github actions to deploy my application to Google cloud and it gave me following error -

            ...

            ANSWER

            Answered 2022-Mar-23 at 20:13

            That 3rd party action is moving away from the convention of using a branch named master.

            Instead of:

            Source https://stackoverflow.com/questions/71578595

            QUESTION

            github workflow build and deploy to staging error
            Asked 2022-Mar-02 at 03:49

            i work on a project and want to make a github workflow , so it can deplay to staging automatically.

            this is the workflow code :

            ...

            ANSWER

            Answered 2022-Mar-02 at 03:49
            Module not found: Error: Can't resolve '../../../dist/@core/components/feather-icon/FeatherIcon.vue' in 'pages/Artisan/detail'
            

            Source https://stackoverflow.com/questions/71316136

            QUESTION

            Github Actions Failing
            Asked 2022-Feb-25 at 02:08

            Github Actions were working in my repository till yesterday. I didnt make any changes in .github/workflows/dev.yml file or in DockerFile.

            But, suddenly in recent pushes, my Github Actions fail with the error

            Setup, Build, Publish, and Deploy

            ...

            ANSWER

            Answered 2021-Jul-27 at 13:24

            I fixed it by changing uses value to

            • uses: google-github-actions/setup-gcloud@master

            Source https://stackoverflow.com/questions/68516559

            QUESTION

            Google artifact regitsry NPM + github action
            Asked 2022-Feb-11 at 13:26

            I'm trying to publish a npm package on GAR (Google Artifact Registry) through github using google-github-actions/auth@v0 and google-artifactregistry-auth

            For the authentication to google from github here is what I did to use the Federation Workload Identity:

            ...

            ANSWER

            Answered 2022-Feb-11 at 12:44

            I finally find out !!! BUT I'm not sure in term of security if there is any risk or not so if anyone can advice I'll edit the answer !

            What is changing but I'm not sure in term of security is here :

            Source https://stackoverflow.com/questions/71076548

            QUESTION

            gcloud builds submit of Django website results in error "does not have storage.objects.get access"
            Asked 2021-Oct-24 at 11:00

            I'm trying to deploy my Django website with Cloud Run, as described in Google Cloud Platform's documentation, but I get the error Error 403: 934957811880@cloudbuild.gserviceaccount.com does not have storage.objects.get access to the Google Cloud Storage object., forbidden when running the command gcloud builds submit --config cloudmigrate.yaml --substitutions _INSTANCE_NAME=trouwfeestwebsite-db,_REGION=europe-west6.

            The full output of the command is: (the error is at the bottom)

            ...

            ANSWER

            Answered 2021-Oct-24 at 11:00

            The following solved my problem.

            1. DazWilkin was right in saying:

              it's incorrectly|unable to reference the bucket

              (comment upvote for that, thanks!!). In my secret (configured on Secret Manager; or alternatively you can put this in a .env file at project root folder level and making sure you don't exclude that file for deployment in a .gcloudignore file then), I now have set:

              GS_BUCKET_NAME=trouwfeestwebsite_sasa-trouw-bucket (project ID + underscore + storage bucket ID)

              instead of GS_BUCKET_NAME=sasa-trouw-bucket

              Whereas the tutorial in fact stated I had to set the first, I had set the latter since I found the underscore splitting weird, nowhere in the tutorial had I seen something similar, I thought it was an error in the tutorial.

              Adapting the GS_BUCKET_NAME changed the error of gcloud builds submit to:

            Source https://stackoverflow.com/questions/69691389

            QUESTION

            GitHub -> GCP, use gcloud commands inside shell script
            Asked 2021-May-27 at 06:38

            I have a workflow in GitHub that will execute a shell script, and inside this script I need to use gsutil

            In my workflow yml-file I have the following steps:

            ...

            ANSWER

            Answered 2021-May-26 at 00:51

            The problem seemed to be that the environment variables were not inherited when running with sudo. There are many ways to work around this, but I was able to confirm that it would run with sudo -E. Of course, if you don't need to run with sudo, you should remove it, but I guess it's necessary.

            (The reproduction code was easy for me to reproduce it. Thanks)

            Source https://stackoverflow.com/questions/67687525

            QUESTION

            Vuejs to docker container in Github Actions
            Asked 2020-Oct-03 at 13:39

            I'm trying to find out how to best containerize my Vuejs app and then upload it to Google Container Registry.

            I've hacked and slashed some stuff together but I don't think it's right, my container gets pushed to GCR but it doesn't work.

            ...

            ANSWER

            Answered 2020-Oct-02 at 14:27

            The error you are getting is because you aren't listening for incoming HTTP requests in your code or you're listening for incoming requests on the wrong port.

            As you can see documented in the Cloud Run container runtime, your container must listen for incoming HTTP requests on the port that is defined by Cloud Run and provided in the $PORT environment variable.

            If this fails, the health check will fail to, and it would switch to an error state and the traffic will not be routed to the correct PORT.

            I would post an example for Node.js and as I can see you do not have specified anything related to the port:

            Source https://stackoverflow.com/questions/64169578

            QUESTION

            Github Actions - GCloud app deploy app.yaml - Bucket is requester pays bucket but no user project provided
            Asked 2020-Sep-29 at 21:25

            i have a Github actions with Gcloud, this setup worked well, after 3 months (no changes) i ran another Deployment/Action but now there is a message:

            Bucket is requester pays bucket but no user project provided.

            What is the cause of this error?

            I repeat, this Action worked well and no changes were made, just ran again after 3 months and failed.

            My current Actions yaml is:

            ...

            ANSWER

            Answered 2020-Sep-29 at 21:25

            As the link I shared in my comment says, the error you are getting is because the Requester pays is enabled in the bucket you are using to deploy. I tried at my end enabling this feature, using the below command, and I got the same error as you.

            Source https://stackoverflow.com/questions/63945383

            QUESTION

            How to pull a Docker image in Github actions for a compute engine VM?
            Asked 2020-Jun-16 at 21:23

            Using GH actions I'm building and pushing an image to my docker repository. How can this be pulled on a Google compute engine after having completed setup-gcloud:

            ...

            ANSWER

            Answered 2020-Jun-16 at 03:04

            You could install Docker Engine on several Linux Platforms and on macOS and Windows10 through Docker Desktop.

            The command "docker pull" pulls image by default from Docker Hub. You could also pull the images from your desired repository by specifying the path of repository.

            You need to install Docker Compose so that you could run the command "docker-compose up" which starts compose and runs your entire app.

            Source https://stackoverflow.com/questions/62398458

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install setup-gcloud

            You can download it from GitHub.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/google-github-actions/setup-gcloud.git

          • CLI

            gh repo clone google-github-actions/setup-gcloud

          • sshUrl

            git@github.com:google-github-actions/setup-gcloud.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link

            Explore Related Topics

            Consider Popular GCP Libraries

            microservices-demo

            by GoogleCloudPlatform

            awesome-kubernetes

            by ramitsurana

            go-cloud

            by google

            infracost

            by infracost

            python-docs-samples

            by GoogleCloudPlatform

            Try Top Libraries by google-github-actions

            release-please-action

            by google-github-actionsJavaScript

            auth

            by google-github-actionsTypeScript

            deploy-cloudrun

            by google-github-actionsTypeScript

            deploy-cloud-functions

            by google-github-actionsTypeScript

            deploy-appengine

            by google-github-actionsTypeScript