google-github-actions / get-gke-credentials

A GitHub Action that configure authentication to a GKE cluster.
https://cloud.google.com/gke
Apache License 2.0
100 stars 41 forks source link

v1 failed with the caller does not have permission #260

Closed avalero closed 1 year ago

avalero commented 1 year ago

TL;DR

Running the example of the tutorial fails with: google-github-actions/get-gke-credentials failed with: the caller does not have permission

Expected behavior

It should get te credentials

Observed behavior

It outputs the error: google-github-actions/get-gke-credentials failed with: the caller does not have permission

Action YAML

name: front at prod

on:
  workflow_dispatch:
  release:
    types:
      - created

# Environment variables available to all jobs and steps in this workflow
env:
  GKE_PROJECT: ${{ secrets.GKE_PROJECT }}
  GKE_EMAIL: ${{ secrets.GKE_EMAIL }}
  GKE_IDENTITY_PROVDER: ${{ secrets.GKE_IDENTITY_PROVIDER }}
  GITHUB_SHA: ${{ github.sha }}
  GITHUB_REF: ${{ github.ref }}
  GKE_ZONE: europe-west1
  GKE_CLUSTER: ****
  IMAGE: *****
  REGISTRY_HOSTNAME: eu.gcr.io
  DEPLOYMENT_NAME: front
  NAMESPACE: prod
  SERVICE: *****

jobs:
  frontend:
    permissions:
      contents: 'read'
      id-token: 'write'
    name: Setup, Build, Publish, and Deploy frontend at prod
    runs-on: ubuntu-latest
    steps:
      # Checkout
      - name: Checkout
        uses: actions/checkout@v3

      # Setup gcloud CLI

      - id: "auth"
        name: 'Authenticate to Google Cloud'
        uses: 'google-github-actions/auth@v1'
        with:
          service_account: ${{ secrets.GKE_EMAIL }}
          workload_identity_provider: ${{ secrets.GKE_IDENTITY_PROVIDER }}
      - id: 'get-credentials'
        uses: 'google-github-actions/get-gke-credentials@v1'
        with:
          cluster_name: $GKE_CLUSTER
          location: $GKE_ZONE

      # Configure docker to use the gcloud command-line tool as a credential helper
      - name: Configure docker
        run: |
          # Set up docker to authenticate
          # via gcloud command-line tool.
          gcloud auth configure-docker
      #Copy env.dev
      - name: Copy env -> .env
        run: cp ./packages/frontend/.env.$NAMESPACE ./packages/frontend/.env
        shell: bash
        continue-on-error: true

      # Build the Docker image
      - name: Build Frontend App
        run: |
          docker build -f ./packages/frontend/Dockerfile -t $REGISTRY_HOSTNAME/$GKE_PROJECT/$IMAGE:$DEPLOYMENT_NAME-$GITHUB_SHA .
      # Push the Docker image to Google Container Registry
      - name: Publish
        run: |
          docker push $REGISTRY_HOSTNAME/$GKE_PROJECT/$IMAGE:$DEPLOYMENT_NAME-$GITHUB_SHA
      - name: "Deploy to Cloud Run"
        uses: "google-github-actions/deploy-cloudrun@v0"
        with:
          project_id: ${{ secrets.GKE_PROJECT }}
          service: "${{ env.SERVICE }}"
          image: "${{ env.REGISTRY_HOSTNAME  }}/${{ env.GKE_PROJECT }}/${{ env.IMAGE }}:${{ env.DEPLOYMENT_NAME }}-${{ env.GITHUB_SHA }}"
          region: "${{ env.GKE_ZONE }}"
          env_vars: 'SHA="${{ env.GITHUB_SHA }}"'

      # Google chat notification
      - name: Google Chat Notification
        uses: Co-qn/google-chat-notification@releases/v1
        with:
          name: Bitbloq PROD - Frontend build
          url: ${{ secrets.GOOGLE_CHAT_WEBHOOK }}
          status: ${{ job.status }}
        if: always()

### Log output

```text
Run google-github-actions/get-gke-credentials@v1
Extracted project ID "***" from $GCLOUD_PROJECT
Error: google-github-actions/get-gke-credentials failed with: the caller does not have permission

Additional information

service accounts has these permissions

Cloud Run Admin GKE Hub Viewer Kubernetes Engine Admin Kubernetes Engine Cluster Viewer Service Account Token Creator Service Account User Storage Admin Storage Object Admin

sethvargo commented 1 year ago

Hi @avalero - please post the debug logs

avalero commented 1 year ago
2022-12-13T16:10:17.1968773Z Requested labels: ubuntu-latest
2022-12-13T16:10:17.1968830Z Job defined at: Bitbloq/bitbloq3/.github/workflows/front_prod.yml@refs/heads/master
2022-12-13T16:10:17.1968855Z Waiting for a runner to pick up this job...
2022-12-13T16:10:17.3386713Z Job is waiting for a hosted runner to come online.
2022-12-13T16:10:20.8857662Z Job is about to start running on the hosted runner: Hosted Agent (hosted)
2022-12-13T16:10:23.4716748Z Current runner version: '2.299.1'
2022-12-13T16:10:23.4746225Z ##[group]Operating System
2022-12-13T16:10:23.4746856Z Ubuntu
2022-12-13T16:10:23.4747194Z 22.04.1
2022-12-13T16:10:23.4747575Z LTS
2022-12-13T16:10:23.4747936Z ##[endgroup]
2022-12-13T16:10:23.4748312Z ##[group]Runner Image
2022-12-13T16:10:23.4748714Z Image: ubuntu-22.04
2022-12-13T16:10:23.4749121Z Version: 20221212.1
2022-12-13T16:10:23.4749717Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20221212.1/images/linux/Ubuntu2204-Readme.md
2022-12-13T16:10:23.4750726Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20221212.1
2022-12-13T16:10:23.4751250Z ##[endgroup]
2022-12-13T16:10:23.4751724Z ##[group]Runner Image Provisioner
2022-12-13T16:10:23.4752111Z 2.0.91.1
2022-12-13T16:10:23.4752471Z ##[endgroup]
2022-12-13T16:10:23.4753260Z ##[group]GITHUB_TOKEN Permissions
2022-12-13T16:10:23.4753945Z Contents: read
2022-12-13T16:10:23.4754318Z Metadata: read
2022-12-13T16:10:23.4754896Z ##[endgroup]
2022-12-13T16:10:23.4758648Z Secret source: Actions
2022-12-13T16:10:23.4759219Z Prepare workflow directory
2022-12-13T16:10:23.5921583Z Prepare all required actions
2022-12-13T16:10:23.6106990Z Getting action download info
2022-12-13T16:10:23.8856094Z Download action repository 'actions/checkout@v3' (SHA:755da8c3cf115ac066823e79a1e1788f8940201b)
2022-12-13T16:10:24.5758314Z Download action repository 'google-github-actions/auth@v1' (SHA:ef5d53e30bbcd8d0836f4288f5e50ff3e086997d)
2022-12-13T16:10:25.0084912Z Download action repository 'google-github-actions/get-gke-credentials@v1' (SHA:ef10cc0013c465a6ea0b8e36c24064576ec25f87)
2022-12-13T16:10:25.6051182Z Download action repository 'google-github-actions/deploy-cloudrun@v0' (SHA:5081b8db809e5800ddffa3c692d71da0cb670a34)
2022-12-13T16:10:26.0936347Z Download action repository 'Co-qn/google-chat-notification@releases/v1' (SHA:b9227d9daa4638c9782a5bd16c4abb86268127a1)
2022-12-13T16:10:26.8248830Z ##[group]Run actions/checkout@v3
2022-12-13T16:10:26.8249164Z with:
2022-12-13T16:10:26.8249414Z   repository: Bitbloq/bitbloq3
2022-12-13T16:10:26.8250000Z   token: ***
2022-12-13T16:10:26.8250234Z   ssh-strict: true
2022-12-13T16:10:26.8250491Z   persist-credentials: true
2022-12-13T16:10:26.8250741Z   clean: true
2022-12-13T16:10:26.8250968Z   fetch-depth: 1
2022-12-13T16:10:26.8251188Z   lfs: false
2022-12-13T16:10:26.8251407Z   submodules: false
2022-12-13T16:10:26.8251658Z   set-safe-directory: true
2022-12-13T16:10:26.8251896Z env:
2022-12-13T16:10:26.8252167Z   GKE_PROJECT: ***
2022-12-13T16:10:26.8252502Z   GKE_EMAIL: ***
2022-12-13T16:10:26.8252928Z   GKE_IDENTITY_PROVDER: ***
2022-12-13T16:10:26.8253226Z   GITHUB_SHA: 4f27647b87ad77800417a4e00e9bdb48aef38d95
2022-12-13T16:10:26.8253513Z   GITHUB_REF: refs/heads/master
2022-12-13T16:10:26.8253767Z   GKE_ZONE: europe-west1
2022-12-13T16:10:26.8254097Z   GKE_CLUSTER: bitbloq-cluster
2022-12-13T16:10:26.8254404Z   IMAGE: bitbloq-release
2022-12-13T16:10:26.8254656Z   REGISTRY_HOSTNAME: eu.gcr.io
2022-12-13T16:10:26.8254912Z   DEPLOYMENT_NAME: front
2022-12-13T16:10:26.8255150Z   NAMESPACE: prod
2022-12-13T16:10:26.8255388Z   SERVICE: bitbloq-front
2022-12-13T16:10:26.8255632Z ##[endgroup]
2022-12-13T16:10:27.1608824Z Syncing repository: Bitbloq/bitbloq3
2022-12-13T16:10:27.1610560Z ##[group]Getting Git version info
2022-12-13T16:10:27.1611137Z Working directory is '/home/runner/work/bitbloq3/bitbloq3'
2022-12-13T16:10:27.1611690Z [command]/usr/bin/git version
2022-12-13T16:10:27.1779013Z git version 2.38.2
2022-12-13T16:10:27.1810289Z ##[endgroup]
2022-12-13T16:10:27.1834374Z Temporarily overriding HOME='/home/runner/work/_temp/948962c8-7ab3-4eb6-97f1-ea271cb4ed98' before making global git config changes
2022-12-13T16:10:27.1834923Z Adding repository directory to the temporary git global config as a safe directory
2022-12-13T16:10:27.1835495Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/bitbloq3/bitbloq3
2022-12-13T16:10:27.1886550Z Deleting the contents of '/home/runner/work/bitbloq3/bitbloq3'
2022-12-13T16:10:27.1890857Z ##[group]Initializing the repository
2022-12-13T16:10:27.1894357Z [command]/usr/bin/git init /home/runner/work/bitbloq3/bitbloq3
2022-12-13T16:10:27.2013723Z hint: Using 'master' as the name for the initial branch. This default branch name
2022-12-13T16:10:27.2014540Z hint: is subject to change. To configure the initial branch name to use in all
2022-12-13T16:10:27.2016322Z hint: of your new repositories, which will suppress this warning, call:
2022-12-13T16:10:27.2016993Z hint: 
2022-12-13T16:10:27.2017748Z hint:  git config --global init.defaultBranch <name>
2022-12-13T16:10:27.2018230Z hint: 
2022-12-13T16:10:27.2018839Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2022-12-13T16:10:27.2019460Z hint: 'development'. The just-created branch can be renamed via this command:
2022-12-13T16:10:27.2019874Z hint: 
2022-12-13T16:10:27.2021090Z hint:  git branch -m <name>
2022-12-13T16:10:27.2044511Z Initialized empty Git repository in /home/runner/work/bitbloq3/bitbloq3/.git/
2022-12-13T16:10:27.2055017Z [command]/usr/bin/git remote add origin https://github.com/Bitbloq/bitbloq3
2022-12-13T16:10:27.2099148Z ##[endgroup]
2022-12-13T16:10:27.2099956Z ##[group]Disabling automatic garbage collection
2022-12-13T16:10:27.2103222Z [command]/usr/bin/git config --local gc.auto 0
2022-12-13T16:10:27.2136043Z ##[endgroup]
2022-12-13T16:10:27.2136886Z ##[group]Setting up auth
2022-12-13T16:10:27.2144426Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-12-13T16:10:27.2179778Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2022-12-13T16:10:27.2601997Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2022-12-13T16:10:27.2639044Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2022-12-13T16:10:27.2866169Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2022-12-13T16:10:27.2906712Z ##[endgroup]
2022-12-13T16:10:27.2907586Z ##[group]Fetching the repository
2022-12-13T16:10:27.2915901Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +4f27647b87ad77800417a4e00e9bdb48aef38d95:refs/remotes/origin/master
2022-12-13T16:10:27.7350208Z remote: Enumerating objects: 1905, done.        
2022-12-13T16:10:27.7354104Z remote: Counting objects:   0% (1/1905)        
2022-12-13T16:10:27.7354801Z remote: Counting objects:   1% (20/1905)        
2022-12-13T16:10:27.7355361Z remote: Counting objects:   2% (39/1905)        
2022-12-13T16:10:27.7355906Z remote: Counting objects:   3% (58/1905)        
2022-12-13T16:10:27.7356442Z remote: Counting objects:   4% (77/1905)        
2022-12-13T16:10:27.7356974Z remote: Counting objects:   5% (96/1905)        
2022-12-13T16:10:27.7357504Z remote: Counting objects:   6% (115/1905)        
2022-12-13T16:10:27.7358048Z remote: Counting objects:   7% (134/1905)        
2022-12-13T16:10:27.7359216Z remote: Counting objects:   8% (153/1905)        
2022-12-13T16:10:27.7359648Z remote: Counting objects:   9% (172/1905)        
2022-12-13T16:10:27.7360547Z remote: Counting objects:  10% (191/1905)        
2022-12-13T16:10:27.7360918Z remote: Counting objects:  11% (210/1905)        
2022-12-13T16:10:27.7361467Z remote: Counting objects:  12% (229/1905)        
2022-12-13T16:10:27.7362070Z remote: Counting objects:  13% (248/1905)        
2022-12-13T16:10:27.7362612Z remote: Counting objects:  14% (267/1905)        
2022-12-13T16:10:27.7363164Z remote: Counting objects:  15% (286/1905)        
2022-12-13T16:10:27.7363641Z remote: Counting objects:  16% (305/1905)        
2022-12-13T16:10:27.7364242Z remote: Counting objects:  17% (324/1905)        
2022-12-13T16:10:27.7364857Z remote: Counting objects:  18% (343/1905)        
2022-12-13T16:10:27.7365356Z remote: Counting objects:  19% (362/1905)        
2022-12-13T16:10:27.7453531Z remote: Counting objects:  20% (381/1905)        
2022-12-13T16:10:27.7454248Z remote: Counting objects:  21% (401/1905)        
2022-12-13T16:10:27.7454674Z remote: Counting objects:  22% (420/1905)        
2022-12-13T16:10:27.7455193Z remote: Counting objects:  23% (439/1905)        
2022-12-13T16:10:27.7455743Z remote: Counting objects:  24% (458/1905)        
2022-12-13T16:10:27.7456163Z remote: Counting objects:  25% (477/1905)        
2022-12-13T16:10:27.7456738Z remote: Counting objects:  26% (496/1905)        
2022-12-13T16:10:27.7457391Z remote: Counting objects:  27% (515/1905)        
2022-12-13T16:10:27.7457836Z remote: Counting objects:  28% (534/1905)        
2022-12-13T16:10:27.7458362Z remote: Counting objects:  29% (553/1905)        
2022-12-13T16:10:27.7458978Z remote: Counting objects:  30% (572/1905)        
2022-12-13T16:10:27.7460208Z remote: Counting objects:  31% (591/1905)        
2022-12-13T16:10:27.7460662Z remote: Counting objects:  32% (610/1905)        
2022-12-13T16:10:27.7461236Z remote: Counting objects:  33% (629/1905)        
2022-12-13T16:10:27.7462216Z remote: Counting objects:  34% (648/1905)        
2022-12-13T16:10:27.7462623Z remote: Counting objects:  35% (667/1905)        
2022-12-13T16:10:27.7465976Z remote: Counting objects:  36% (686/1905)        
2022-12-13T16:10:27.7466646Z remote: Counting objects:  37% (705/1905)        
2022-12-13T16:10:27.7467433Z remote: Counting objects:  38% (724/1905)        
2022-12-13T16:10:27.7467936Z remote: Counting objects:  39% (743/1905)        
2022-12-13T16:10:27.7468486Z remote: Counting objects:  40% (762/1905)        
2022-12-13T16:10:27.7469058Z remote: Counting objects:  41% (782/1905)        
2022-12-13T16:10:27.7469693Z remote: Counting objects:  42% (801/1905)        
2022-12-13T16:10:27.7470072Z remote: Counting objects:  43% (820/1905)        
2022-12-13T16:10:27.7470795Z remote: Counting objects:  44% (839/1905)        
2022-12-13T16:10:27.7471360Z remote: Counting objects:  45% (858/1905)        
2022-12-13T16:10:27.7471879Z remote: Counting objects:  46% (877/1905)        
2022-12-13T16:10:27.7472408Z remote: Counting objects:  47% (896/1905)        
2022-12-13T16:10:27.7472989Z remote: Counting objects:  48% (915/1905)        
2022-12-13T16:10:27.7473501Z remote: Counting objects:  49% (934/1905)        
2022-12-13T16:10:27.7474052Z remote: Counting objects:  50% (953/1905)        
2022-12-13T16:10:27.7474602Z remote: Counting objects:  51% (972/1905)        
2022-12-13T16:10:27.7475133Z remote: Counting objects:  52% (991/1905)        
2022-12-13T16:10:27.7475664Z remote: Counting objects:  53% (1010/1905)        
2022-12-13T16:10:27.7476174Z remote: Counting objects:  54% (1029/1905)        
2022-12-13T16:10:27.7476711Z remote: Counting objects:  55% (1048/1905)        
2022-12-13T16:10:27.7477205Z remote: Counting objects:  56% (1067/1905)        
2022-12-13T16:10:27.7477763Z remote: Counting objects:  57% (1086/1905)        
2022-12-13T16:10:27.7478282Z remote: Counting objects:  58% (1105/1905)        
2022-12-13T16:10:27.7478804Z remote: Counting objects:  59% (1124/1905)        
2022-12-13T16:10:27.7479328Z remote: Counting objects:  60% (1143/1905)        
2022-12-13T16:10:27.7479860Z remote: Counting objects:  61% (1163/1905)        
2022-12-13T16:10:27.7480445Z remote: Counting objects:  62% (1182/1905)        
2022-12-13T16:10:27.7480969Z remote: Counting objects:  63% (1201/1905)        
2022-12-13T16:10:27.7481486Z remote: Counting objects:  64% (1220/1905)        
2022-12-13T16:10:27.7482033Z remote: Counting objects:  65% (1239/1905)        
2022-12-13T16:10:27.7482536Z remote: Counting objects:  66% (1258/1905)        
2022-12-13T16:10:27.7483049Z remote: Counting objects:  67% (1277/1905)        
2022-12-13T16:10:27.7483603Z remote: Counting objects:  68% (1296/1905)        
2022-12-13T16:10:27.7484128Z remote: Counting objects:  69% (1315/1905)        
2022-12-13T16:10:27.7484679Z remote: Counting objects:  70% (1334/1905)        
2022-12-13T16:10:27.7485238Z remote: Counting objects:  71% (1353/1905)        
2022-12-13T16:10:27.7485771Z remote: Counting objects:  72% (1372/1905)        
2022-12-13T16:10:27.7486293Z remote: Counting objects:  73% (1391/1905)        
2022-12-13T16:10:27.7486883Z remote: Counting objects:  74% (1410/1905)        
2022-12-13T16:10:27.7487403Z remote: Counting objects:  75% (1429/1905)        
2022-12-13T16:10:27.7487925Z remote: Counting objects:  76% (1448/1905)        
2022-12-13T16:10:27.7488473Z remote: Counting objects:  77% (1467/1905)        
2022-12-13T16:10:27.7488986Z remote: Counting objects:  78% (1486/1905)        
2022-12-13T16:10:27.7489506Z remote: Counting objects:  79% (1505/1905)        
2022-12-13T16:10:27.7493168Z remote: Counting objects:  80% (1524/1905)        
2022-12-13T16:10:27.7493572Z remote: Counting objects:  81% (1544/1905)        
2022-12-13T16:10:27.7494041Z remote: Counting objects:  82% (1563/1905)        
2022-12-13T16:10:27.7494577Z remote: Counting objects:  83% (1582/1905)        
2022-12-13T16:10:27.7495115Z remote: Counting objects:  84% (1601/1905)        
2022-12-13T16:10:27.7495708Z remote: Counting objects:  85% (1620/1905)        
2022-12-13T16:10:27.7496239Z remote: Counting objects:  86% (1639/1905)        
2022-12-13T16:10:27.7496768Z remote: Counting objects:  87% (1658/1905)        
2022-12-13T16:10:27.7497295Z remote: Counting objects:  88% (1677/1905)        
2022-12-13T16:10:27.7497832Z remote: Counting objects:  89% (1696/1905)        
2022-12-13T16:10:27.7498374Z remote: Counting objects:  90% (1715/1905)        
2022-12-13T16:10:27.7498900Z remote: Counting objects:  91% (1734/1905)        
2022-12-13T16:10:27.7499428Z remote: Counting objects:  92% (1753/1905)        
2022-12-13T16:10:27.7500224Z remote: Counting objects:  93% (1772/1905)        
2022-12-13T16:10:27.7501101Z remote: Counting objects:  94% (1791/1905)        
2022-12-13T16:10:27.7501656Z remote: Counting objects:  95% (1810/1905)        
2022-12-13T16:10:27.7502262Z remote: Counting objects:  96% (1829/1905)        
2022-12-13T16:10:27.7502959Z remote: Counting objects:  97% (1848/1905)        
2022-12-13T16:10:27.7503582Z remote: Counting objects:  98% (1867/1905)        
2022-12-13T16:10:27.7504194Z remote: Counting objects:  99% (1886/1905)        
2022-12-13T16:10:27.7504813Z remote: Counting objects: 100% (1905/1905)        
2022-12-13T16:10:27.7505560Z remote: Counting objects: 100% (1905/1905), done.        
2022-12-13T16:10:27.7506199Z remote: Compressing objects:   0% (1/1681)        
2022-12-13T16:10:27.7506855Z remote: Compressing objects:   1% (17/1681)        
2022-12-13T16:10:27.7507536Z remote: Compressing objects:   2% (34/1681)        
2022-12-13T16:10:27.7508177Z remote: Compressing objects:   3% (51/1681)        
2022-12-13T16:10:27.7508806Z remote: Compressing objects:   4% (68/1681)        
2022-12-13T16:10:27.7509430Z remote: Compressing objects:   5% (85/1681)        
2022-12-13T16:10:27.7547418Z remote: Compressing objects:   6% (101/1681)        
2022-12-13T16:10:27.7613741Z remote: Compressing objects:   7% (118/1681)        
2022-12-13T16:10:27.7650801Z remote: Compressing objects:   8% (135/1681)        
2022-12-13T16:10:27.7680572Z remote: Compressing objects:   9% (152/1681)        
2022-12-13T16:10:27.7777229Z remote: Compressing objects:  10% (169/1681)        
2022-12-13T16:10:27.7777940Z remote: Compressing objects:  11% (185/1681)        
2022-12-13T16:10:27.7778424Z remote: Compressing objects:  12% (202/1681)        
2022-12-13T16:10:27.7858162Z remote: Compressing objects:  13% (219/1681)        
2022-12-13T16:10:27.7872723Z remote: Compressing objects:  14% (236/1681)        
2022-12-13T16:10:27.7902331Z remote: Compressing objects:  15% (253/1681)        
2022-12-13T16:10:27.7925071Z remote: Compressing objects:  16% (269/1681)        
2022-12-13T16:10:27.7982932Z remote: Compressing objects:  17% (286/1681)        
2022-12-13T16:10:27.8037533Z remote: Compressing objects:  18% (303/1681)        
2022-12-13T16:10:27.8066396Z remote: Compressing objects:  19% (320/1681)        
2022-12-13T16:10:27.8125661Z remote: Compressing objects:  20% (337/1681)        
2022-12-13T16:10:27.8145728Z remote: Compressing objects:  21% (354/1681)        
2022-12-13T16:10:27.8179774Z remote: Compressing objects:  22% (370/1681)        
2022-12-13T16:10:27.8227849Z remote: Compressing objects:  23% (387/1681)        
2022-12-13T16:10:27.8247483Z remote: Compressing objects:  24% (404/1681)        
2022-12-13T16:10:27.8289919Z remote: Compressing objects:  25% (421/1681)        
2022-12-13T16:10:27.8332402Z remote: Compressing objects:  26% (438/1681)        
2022-12-13T16:10:27.8368671Z remote: Compressing objects:  27% (454/1681)        
2022-12-13T16:10:27.8393998Z remote: Compressing objects:  28% (471/1681)        
2022-12-13T16:10:27.8406644Z remote: Compressing objects:  29% (488/1681)        
2022-12-13T16:10:27.8413046Z remote: Compressing objects:  30% (505/1681)        
2022-12-13T16:10:27.8440255Z remote: Compressing objects:  31% (522/1681)        
2022-12-13T16:10:27.8457117Z remote: Compressing objects:  32% (538/1681)        
2022-12-13T16:10:27.8486718Z remote: Compressing objects:  33% (555/1681)        
2022-12-13T16:10:27.8513498Z remote: Compressing objects:  34% (572/1681)        
2022-12-13T16:10:27.8522848Z remote: Compressing objects:  35% (589/1681)        
2022-12-13T16:10:27.8575544Z remote: Compressing objects:  36% (606/1681)        
2022-12-13T16:10:27.8614900Z remote: Compressing objects:  37% (622/1681)        
2022-12-13T16:10:27.8655726Z remote: Compressing objects:  38% (639/1681)        
2022-12-13T16:10:27.8716823Z remote: Compressing objects:  39% (656/1681)        
2022-12-13T16:10:27.8728089Z remote: Compressing objects:  40% (673/1681)        
2022-12-13T16:10:27.8745328Z remote: Compressing objects:  41% (690/1681)        
2022-12-13T16:10:27.8769904Z remote: Compressing objects:  42% (707/1681)        
2022-12-13T16:10:27.8813522Z remote: Compressing objects:  43% (723/1681)        
2022-12-13T16:10:27.8854020Z remote: Compressing objects:  44% (740/1681)        
2022-12-13T16:10:27.8857342Z remote: Compressing objects:  45% (757/1681)        
2022-12-13T16:10:27.9237069Z remote: Compressing objects:  46% (774/1681)        
2022-12-13T16:10:27.9357590Z remote: Compressing objects:  47% (791/1681)        
2022-12-13T16:10:27.9383857Z remote: Compressing objects:  48% (807/1681)        
2022-12-13T16:10:27.9388187Z remote: Compressing objects:  49% (824/1681)        
2022-12-13T16:10:27.9408411Z remote: Compressing objects:  50% (841/1681)        
2022-12-13T16:10:27.9409556Z remote: Compressing objects:  51% (858/1681)        
2022-12-13T16:10:27.9410313Z remote: Compressing objects:  52% (875/1681)        
2022-12-13T16:10:27.9410712Z remote: Compressing objects:  53% (891/1681)        
2022-12-13T16:10:27.9417659Z remote: Compressing objects:  54% (908/1681)        
2022-12-13T16:10:27.9429224Z remote: Compressing objects:  55% (925/1681)        
2022-12-13T16:10:27.9438657Z remote: Compressing objects:  56% (942/1681)        
2022-12-13T16:10:27.9446745Z remote: Compressing objects:  57% (959/1681)        
2022-12-13T16:10:27.9450697Z remote: Compressing objects:  58% (975/1681)        
2022-12-13T16:10:27.9465361Z remote: Compressing objects:  59% (992/1681)        
2022-12-13T16:10:27.9487571Z remote: Compressing objects:  60% (1009/1681)        
2022-12-13T16:10:27.9487996Z remote: Compressing objects:  61% (1026/1681)        
2022-12-13T16:10:27.9488383Z remote: Compressing objects:  62% (1043/1681)        
2022-12-13T16:10:27.9498778Z remote: Compressing objects:  63% (1060/1681)        
2022-12-13T16:10:27.9504015Z remote: Compressing objects:  64% (1076/1681)        
2022-12-13T16:10:27.9558489Z remote: Compressing objects:  65% (1093/1681)        
2022-12-13T16:10:27.9598030Z remote: Compressing objects:  66% (1110/1681)        
2022-12-13T16:10:27.9607412Z remote: Compressing objects:  67% (1127/1681)        
2022-12-13T16:10:27.9609090Z remote: Compressing objects:  68% (1144/1681)        
2022-12-13T16:10:27.9609516Z remote: Compressing objects:  69% (1160/1681)        
2022-12-13T16:10:27.9618949Z remote: Compressing objects:  70% (1177/1681)        
2022-12-13T16:10:27.9619415Z remote: Compressing objects:  71% (1194/1681)        
2022-12-13T16:10:27.9619818Z remote: Compressing objects:  72% (1211/1681)        
2022-12-13T16:10:27.9620204Z remote: Compressing objects:  73% (1228/1681)        
2022-12-13T16:10:27.9640167Z remote: Compressing objects:  74% (1244/1681)        
2022-12-13T16:10:27.9640840Z remote: Compressing objects:  75% (1261/1681)        
2022-12-13T16:10:27.9641370Z remote: Compressing objects:  76% (1278/1681)        
2022-12-13T16:10:27.9641756Z remote: Compressing objects:  77% (1295/1681)        
2022-12-13T16:10:27.9648425Z remote: Compressing objects:  78% (1312/1681)        
2022-12-13T16:10:28.0148233Z remote: Compressing objects:  79% (1328/1681)        
2022-12-13T16:10:28.0163527Z remote: Compressing objects:  80% (1345/1681)        
2022-12-13T16:10:28.0223330Z remote: Compressing objects:  81% (1362/1681)        
2022-12-13T16:10:28.0231229Z remote: Compressing objects:  82% (1379/1681)        
2022-12-13T16:10:28.0251239Z remote: Compressing objects:  83% (1396/1681)        
2022-12-13T16:10:28.0285792Z remote: Compressing objects:  84% (1413/1681)        
2022-12-13T16:10:28.0287105Z remote: Compressing objects:  85% (1429/1681)        
2022-12-13T16:10:28.0287513Z remote: Compressing objects:  86% (1446/1681)        
2022-12-13T16:10:28.0287924Z remote: Compressing objects:  87% (1463/1681)        
2022-12-13T16:10:28.0292364Z remote: Compressing objects:  88% (1480/1681)        
2022-12-13T16:10:28.0293169Z remote: Compressing objects:  89% (1497/1681)        
2022-12-13T16:10:28.0298216Z remote: Compressing objects:  90% (1513/1681)        
2022-12-13T16:10:28.0299525Z remote: Compressing objects:  91% (1530/1681)        
2022-12-13T16:10:28.0300771Z remote: Compressing objects:  92% (1547/1681)        
2022-12-13T16:10:28.0304667Z remote: Compressing objects:  93% (1564/1681)        
2022-12-13T16:10:28.0312303Z remote: Compressing objects:  94% (1581/1681)        
2022-12-13T16:10:28.0312693Z remote: Compressing objects:  95% (1597/1681)        
2022-12-13T16:10:28.0313401Z remote: Compressing objects:  96% (1614/1681)        
2022-12-13T16:10:28.0313904Z remote: Compressing objects:  97% (1631/1681)        
2022-12-13T16:10:28.0316493Z remote: Compressing objects:  98% (1648/1681)        
2022-12-13T16:10:28.0319851Z remote: Compressing objects:  99% (1665/1681)        
2022-12-13T16:10:28.0320351Z remote: Compressing objects: 100% (1681/1681)        
2022-12-13T16:10:28.0320773Z remote: Compressing objects: 100% (1681/1681), done.        
2022-12-13T16:10:28.0371888Z Receiving objects:   0% (1/1905)
2022-12-13T16:10:28.1811456Z Receiving objects:   1% (20/1905)
2022-12-13T16:10:28.1928275Z Receiving objects:   2% (39/1905)
2022-12-13T16:10:28.1978510Z Receiving objects:   3% (58/1905)
2022-12-13T16:10:28.1996477Z Receiving objects:   4% (77/1905)
2022-12-13T16:10:28.2006511Z Receiving objects:   5% (96/1905)
2022-12-13T16:10:28.2012649Z Receiving objects:   6% (115/1905)
2022-12-13T16:10:28.2018100Z Receiving objects:   7% (134/1905)
2022-12-13T16:10:28.2022970Z Receiving objects:   8% (153/1905)
2022-12-13T16:10:28.2026640Z Receiving objects:   9% (172/1905)
2022-12-13T16:10:28.2083883Z Receiving objects:  10% (191/1905)
2022-12-13T16:10:28.2087366Z Receiving objects:  11% (210/1905)
2022-12-13T16:10:28.2099243Z Receiving objects:  12% (229/1905)
2022-12-13T16:10:28.2104647Z Receiving objects:  13% (248/1905)
2022-12-13T16:10:28.2111449Z Receiving objects:  14% (267/1905)
2022-12-13T16:10:28.2119475Z Receiving objects:  15% (286/1905)
2022-12-13T16:10:28.2138269Z Receiving objects:  16% (305/1905)
2022-12-13T16:10:28.2143128Z Receiving objects:  17% (324/1905)
2022-12-13T16:10:28.2148497Z Receiving objects:  18% (343/1905)
2022-12-13T16:10:28.2162751Z Receiving objects:  19% (362/1905)
2022-12-13T16:10:28.2181385Z Receiving objects:  20% (381/1905)
2022-12-13T16:10:28.2227780Z Receiving objects:  21% (401/1905)
2022-12-13T16:10:28.2236420Z Receiving objects:  22% (420/1905)
2022-12-13T16:10:28.2243824Z Receiving objects:  23% (439/1905)
2022-12-13T16:10:28.2257276Z Receiving objects:  24% (458/1905)
2022-12-13T16:10:28.2267716Z Receiving objects:  25% (477/1905)
2022-12-13T16:10:28.2276848Z Receiving objects:  26% (496/1905)
2022-12-13T16:10:28.2292267Z Receiving objects:  27% (515/1905)
2022-12-13T16:10:28.2359435Z Receiving objects:  28% (534/1905)
2022-12-13T16:10:28.2359813Z Receiving objects:  29% (553/1905)
2022-12-13T16:10:28.2360173Z Receiving objects:  30% (572/1905)
2022-12-13T16:10:28.2360602Z Receiving objects:  31% (591/1905)
2022-12-13T16:10:28.2360948Z Receiving objects:  32% (610/1905)
2022-12-13T16:10:28.2361286Z Receiving objects:  33% (629/1905)
2022-12-13T16:10:28.2361635Z Receiving objects:  34% (648/1905)
2022-12-13T16:10:28.2361998Z Receiving objects:  35% (667/1905)
2022-12-13T16:10:28.2362352Z Receiving objects:  36% (686/1905)
2022-12-13T16:10:28.2364876Z Receiving objects:  37% (705/1905)
2022-12-13T16:10:28.2392394Z Receiving objects:  38% (724/1905)
2022-12-13T16:10:28.2528438Z Receiving objects:  39% (743/1905)
2022-12-13T16:10:28.5596188Z Receiving objects:  40% (762/1905)
2022-12-13T16:10:28.5607320Z Receiving objects:  41% (782/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.5623407Z Receiving objects:  42% (801/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.5677242Z Receiving objects:  43% (820/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.5690590Z Receiving objects:  44% (839/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.5705009Z Receiving objects:  45% (858/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.5720961Z Receiving objects:  46% (877/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.5735464Z Receiving objects:  47% (896/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.5825731Z Receiving objects:  48% (915/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.5884222Z Receiving objects:  49% (934/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.5907853Z Receiving objects:  50% (953/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.5955942Z Receiving objects:  51% (972/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.5968182Z Receiving objects:  52% (991/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6031403Z Receiving objects:  53% (1010/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6040374Z Receiving objects:  54% (1029/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6046056Z Receiving objects:  55% (1048/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6054303Z Receiving objects:  56% (1067/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6065176Z Receiving objects:  57% (1086/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6074045Z Receiving objects:  58% (1105/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6092676Z Receiving objects:  59% (1124/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6101442Z Receiving objects:  60% (1143/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6107580Z Receiving objects:  61% (1163/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6133443Z Receiving objects:  62% (1182/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6151550Z Receiving objects:  63% (1201/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6163331Z Receiving objects:  64% (1220/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6177443Z Receiving objects:  65% (1239/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6218501Z Receiving objects:  66% (1258/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6329877Z Receiving objects:  67% (1277/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6332100Z Receiving objects:  68% (1296/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6338421Z Receiving objects:  69% (1315/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6343312Z Receiving objects:  70% (1334/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6348676Z Receiving objects:  71% (1353/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6351805Z Receiving objects:  72% (1372/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6356796Z Receiving objects:  73% (1391/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6359490Z Receiving objects:  74% (1410/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6362458Z Receiving objects:  75% (1429/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6394306Z Receiving objects:  76% (1448/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6403401Z Receiving objects:  77% (1467/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6411619Z Receiving objects:  78% (1486/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6417321Z Receiving objects:  79% (1505/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6424798Z Receiving objects:  80% (1524/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6436650Z Receiving objects:  81% (1544/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6443483Z Receiving objects:  82% (1563/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6448880Z Receiving objects:  83% (1582/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6453424Z Receiving objects:  84% (1601/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6457528Z Receiving objects:  85% (1620/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6465784Z Receiving objects:  86% (1639/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6584509Z Receiving objects:  87% (1658/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6636237Z Receiving objects:  88% (1677/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6636571Z Receiving objects:  89% (1696/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6636884Z Receiving objects:  90% (1715/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6637189Z Receiving objects:  91% (1734/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6637487Z Receiving objects:  92% (1753/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6637787Z Receiving objects:  93% (1772/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6638336Z Receiving objects:  94% (1791/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6638671Z Receiving objects:  95% (1810/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6638971Z Receiving objects:  96% (1829/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6639272Z Receiving objects:  97% (1848/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6639567Z Receiving objects:  98% (1867/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6916291Z Receiving objects:  99% (1886/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6917055Z remote: Total 1905 (delta 263), reused 999 (delta 145), pack-reused 0        
2022-12-13T16:10:28.6932509Z Receiving objects: 100% (1905/1905), 9.73 MiB | 19.44 MiB/s
2022-12-13T16:10:28.6932896Z Receiving objects: 100% (1905/1905), 13.02 MiB | 19.84 MiB/s, done.
2022-12-13T16:10:28.6936922Z Resolving deltas:   0% (0/263)
2022-12-13T16:10:28.6938275Z Resolving deltas:   1% (3/263)
2022-12-13T16:10:28.6939179Z Resolving deltas:   2% (6/263)
2022-12-13T16:10:28.6939515Z Resolving deltas:   3% (8/263)
2022-12-13T16:10:28.6940411Z Resolving deltas:   4% (11/263)
2022-12-13T16:10:28.6941814Z Resolving deltas:   5% (14/263)
2022-12-13T16:10:28.6944236Z Resolving deltas:   6% (16/263)
2022-12-13T16:10:28.6946057Z Resolving deltas:   7% (19/263)
2022-12-13T16:10:28.6946360Z Resolving deltas:   8% (22/263)
2022-12-13T16:10:28.6946656Z Resolving deltas:   9% (24/263)
2022-12-13T16:10:28.6946948Z Resolving deltas:  10% (27/263)
2022-12-13T16:10:28.6947240Z Resolving deltas:  11% (29/263)
2022-12-13T16:10:28.6947532Z Resolving deltas:  12% (32/263)
2022-12-13T16:10:28.6947825Z Resolving deltas:  13% (35/263)
2022-12-13T16:10:28.6948536Z Resolving deltas:  14% (37/263)
2022-12-13T16:10:28.6948829Z Resolving deltas:  15% (40/263)
2022-12-13T16:10:28.6952833Z Resolving deltas:  16% (43/263)
2022-12-13T16:10:28.6956131Z Resolving deltas:  17% (45/263)
2022-12-13T16:10:28.6959821Z Resolving deltas:  18% (48/263)
2022-12-13T16:10:28.6977074Z Resolving deltas:  19% (50/263)
2022-12-13T16:10:28.6982093Z Resolving deltas:  20% (53/263)
2022-12-13T16:10:28.6982573Z Resolving deltas:  21% (56/263)
2022-12-13T16:10:28.6984188Z Resolving deltas:  22% (58/263)
2022-12-13T16:10:28.6984674Z Resolving deltas:  23% (61/263)
2022-12-13T16:10:28.6985881Z Resolving deltas:  24% (64/263)
2022-12-13T16:10:28.6989578Z Resolving deltas:  25% (66/263)
2022-12-13T16:10:28.6993656Z Resolving deltas:  26% (69/263)
2022-12-13T16:10:28.6994148Z Resolving deltas:  27% (72/263)
2022-12-13T16:10:28.6995841Z Resolving deltas:  28% (74/263)
2022-12-13T16:10:28.6996331Z Resolving deltas:  29% (77/263)
2022-12-13T16:10:28.6998350Z Resolving deltas:  30% (79/263)
2022-12-13T16:10:28.7000180Z Resolving deltas:  31% (82/263)
2022-12-13T16:10:28.7001191Z Resolving deltas:  32% (85/263)
2022-12-13T16:10:28.7002784Z Resolving deltas:  33% (87/263)
2022-12-13T16:10:28.7003255Z Resolving deltas:  34% (90/263)
2022-12-13T16:10:28.7005687Z Resolving deltas:  35% (93/263)
2022-12-13T16:10:28.7007648Z Resolving deltas:  36% (95/263)
2022-12-13T16:10:28.7008695Z Resolving deltas:  37% (98/263)
2022-12-13T16:10:28.7011137Z Resolving deltas:  38% (100/263)
2022-12-13T16:10:28.7012370Z Resolving deltas:  39% (103/263)
2022-12-13T16:10:28.7013905Z Resolving deltas:  40% (106/263)
2022-12-13T16:10:28.7014386Z Resolving deltas:  41% (108/263)
2022-12-13T16:10:28.7014997Z Resolving deltas:  42% (111/263)
2022-12-13T16:10:28.7015407Z Resolving deltas:  43% (114/263)
2022-12-13T16:10:28.7016567Z Resolving deltas:  44% (116/263)
2022-12-13T16:10:28.7016996Z Resolving deltas:  45% (119/263)
2022-12-13T16:10:28.7018209Z Resolving deltas:  46% (121/263)
2022-12-13T16:10:28.7018670Z Resolving deltas:  47% (124/263)
2022-12-13T16:10:28.7148672Z Resolving deltas:  48% (127/263)
2022-12-13T16:10:28.7151096Z Resolving deltas:  49% (129/263)
2022-12-13T16:10:28.7152689Z Resolving deltas:  50% (132/263)
2022-12-13T16:10:28.7153413Z Resolving deltas:  51% (135/263)
2022-12-13T16:10:28.7154453Z Resolving deltas:  52% (137/263)
2022-12-13T16:10:28.7155924Z Resolving deltas:  53% (140/263)
2022-12-13T16:10:28.7157623Z Resolving deltas:  54% (143/263)
2022-12-13T16:10:28.7158810Z Resolving deltas:  55% (145/263)
2022-12-13T16:10:28.7159258Z Resolving deltas:  56% (148/263)
2022-12-13T16:10:28.7160430Z Resolving deltas:  57% (150/263)
2022-12-13T16:10:28.7160892Z Resolving deltas:  58% (153/263)
2022-12-13T16:10:28.7162469Z Resolving deltas:  59% (156/263)
2022-12-13T16:10:28.7162954Z Resolving deltas:  60% (158/263)
2022-12-13T16:10:28.7164079Z Resolving deltas:  61% (161/263)
2022-12-13T16:10:28.7164562Z Resolving deltas:  62% (164/263)
2022-12-13T16:10:28.7165753Z Resolving deltas:  63% (166/263)
2022-12-13T16:10:28.7166180Z Resolving deltas:  64% (169/263)
2022-12-13T16:10:28.7168213Z Resolving deltas:  65% (171/263)
2022-12-13T16:10:28.7169472Z Resolving deltas:  66% (174/263)
2022-12-13T16:10:28.7170646Z Resolving deltas:  67% (177/263)
2022-12-13T16:10:28.7171633Z Resolving deltas:  68% (179/263)
2022-12-13T16:10:28.7188033Z Resolving deltas:  69% (182/263)
2022-12-13T16:10:28.7190853Z Resolving deltas:  70% (185/263)
2022-12-13T16:10:28.7191406Z Resolving deltas:  71% (187/263)
2022-12-13T16:10:28.7192702Z Resolving deltas:  72% (190/263)
2022-12-13T16:10:28.7195094Z Resolving deltas:  73% (192/263)
2022-12-13T16:10:28.7196339Z Resolving deltas:  74% (195/263)
2022-12-13T16:10:28.7197934Z Resolving deltas:  75% (198/263)
2022-12-13T16:10:28.7198387Z Resolving deltas:  76% (200/263)
2022-12-13T16:10:28.7200257Z Resolving deltas:  77% (203/263)
2022-12-13T16:10:28.7200701Z Resolving deltas:  78% (206/263)
2022-12-13T16:10:28.7201823Z Resolving deltas:  79% (208/263)
2022-12-13T16:10:28.7202260Z Resolving deltas:  80% (211/263)
2022-12-13T16:10:28.7203744Z Resolving deltas:  81% (214/263)
2022-12-13T16:10:28.7204174Z Resolving deltas:  82% (216/263)
2022-12-13T16:10:28.7205372Z Resolving deltas:  83% (219/263)
2022-12-13T16:10:28.7205809Z Resolving deltas:  84% (221/263)
2022-12-13T16:10:28.7207295Z Resolving deltas:  85% (224/263)
2022-12-13T16:10:28.7207738Z Resolving deltas:  86% (227/263)
2022-12-13T16:10:28.7208340Z Resolving deltas:  87% (229/263)
2022-12-13T16:10:28.7209904Z Resolving deltas:  88% (232/263)
2022-12-13T16:10:28.7210603Z Resolving deltas:  89% (235/263)
2022-12-13T16:10:28.7211537Z Resolving deltas:  90% (237/263)
2022-12-13T16:10:28.7213052Z Resolving deltas:  91% (240/263)
2022-12-13T16:10:28.7213986Z Resolving deltas:  92% (242/263)
2022-12-13T16:10:28.7215126Z Resolving deltas:  93% (245/263)
2022-12-13T16:10:28.7215555Z Resolving deltas:  94% (248/263)
2022-12-13T16:10:28.7216197Z Resolving deltas:  95% (250/263)
2022-12-13T16:10:28.7216607Z Resolving deltas:  96% (253/263)
2022-12-13T16:10:28.7220510Z Resolving deltas:  97% (256/263)
2022-12-13T16:10:28.7393196Z Resolving deltas:  98% (258/263)
2022-12-13T16:10:28.7473915Z Resolving deltas:  99% (261/263)
2022-12-13T16:10:28.7474481Z Resolving deltas: 100% (263/263)
2022-12-13T16:10:28.7475141Z Resolving deltas: 100% (263/263), done.
2022-12-13T16:10:28.7786181Z From https://github.com/Bitbloq/bitbloq3
2022-12-13T16:10:28.7787130Z  * [new ref]         4f27647b87ad77800417a4e00e9bdb48aef38d95 -> origin/master
2022-12-13T16:10:28.7809247Z ##[endgroup]
2022-12-13T16:10:28.7810004Z ##[group]Determining the checkout info
2022-12-13T16:10:28.7810844Z ##[endgroup]
2022-12-13T16:10:28.7811459Z ##[group]Checking out the ref
2022-12-13T16:10:28.7815956Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
2022-12-13T16:10:29.0638394Z Reset branch 'master'
2022-12-13T16:10:29.0640064Z branch 'master' set up to track 'origin/master'.
2022-12-13T16:10:29.0667307Z ##[endgroup]
2022-12-13T16:10:29.0708774Z [command]/usr/bin/git log -1 --format='%H'
2022-12-13T16:10:29.0745596Z '4f27647b87ad77800417a4e00e9bdb48aef38d95'
2022-12-13T16:10:29.1074496Z ##[group]Run google-github-actions/auth@v1
2022-12-13T16:10:29.1074794Z with:
2022-12-13T16:10:29.1075456Z   service_account: ***
2022-12-13T16:10:29.1075895Z   workload_identity_provider: ***
2022-12-13T16:10:29.1076175Z   create_credentials_file: true
2022-12-13T16:10:29.1076457Z   export_environment_variables: true
2022-12-13T16:10:29.1076741Z   cleanup_credentials: true
2022-12-13T16:10:29.1077004Z   access_token_lifetime: 3600s
2022-12-13T16:10:29.1077352Z   access_token_scopes: https://www.googleapis.com/auth/cloud-platform
2022-12-13T16:10:29.1077665Z   retries: 0
2022-12-13T16:10:29.1077901Z   id_token_include_email: false
2022-12-13T16:10:29.1078131Z env:
2022-12-13T16:10:29.1078367Z   GKE_PROJECT: ***
2022-12-13T16:10:29.1078691Z   GKE_EMAIL: ***
2022-12-13T16:10:29.1079085Z   GKE_IDENTITY_PROVDER: ***
2022-12-13T16:10:29.1079390Z   GITHUB_SHA: 4f27647b87ad77800417a4e00e9bdb48aef38d95
2022-12-13T16:10:29.1079676Z   GITHUB_REF: refs/heads/master
2022-12-13T16:10:29.1079955Z   GKE_ZONE: europe-west1
2022-12-13T16:10:29.1080224Z   GKE_CLUSTER: bitbloq-cluster
2022-12-13T16:10:29.1080478Z   IMAGE: bitbloq-release
2022-12-13T16:10:29.1080731Z   REGISTRY_HOSTNAME: eu.gcr.io
2022-12-13T16:10:29.1080985Z   DEPLOYMENT_NAME: front
2022-12-13T16:10:29.1081220Z   NAMESPACE: prod
2022-12-13T16:10:29.1081455Z   SERVICE: bitbloq-front
2022-12-13T16:10:29.1081689Z ##[endgroup]
2022-12-13T16:10:29.2942056Z Created credentials file at "/home/runner/work/bitbloq3/bitbloq3/gha-creds-6940f3e7423b137b.json"
2022-12-13T16:10:29.3061466Z ##[group]Run google-github-actions/get-gke-credentials@v1
2022-12-13T16:10:29.3061786Z with:
2022-12-13T16:10:29.3062014Z   cluster_name: $GKE_CLUSTER
2022-12-13T16:10:29.3062267Z   location: $GKE_ZONE
2022-12-13T16:10:29.3062518Z   use_auth_provider: false
2022-12-13T16:10:29.3062777Z   use_internal_ip: false
2022-12-13T16:10:29.3063035Z   use_connect_gateway: false
2022-12-13T16:10:29.3063266Z env:
2022-12-13T16:10:29.3063554Z   GKE_PROJECT: ***
2022-12-13T16:10:29.3063912Z   GKE_EMAIL: ***
2022-12-13T16:10:29.3064322Z   GKE_IDENTITY_PROVDER: ***
2022-12-13T16:10:29.3064625Z   GITHUB_SHA: 4f27647b87ad77800417a4e00e9bdb48aef38d95
2022-12-13T16:10:29.3064921Z   GITHUB_REF: refs/heads/master
2022-12-13T16:10:29.3065187Z   GKE_ZONE: europe-west1
2022-12-13T16:10:29.3065451Z   GKE_CLUSTER: bitbloq-cluster
2022-12-13T16:10:29.3065842Z   IMAGE: bitbloq-release
2022-12-13T16:10:29.3066103Z   REGISTRY_HOSTNAME: eu.gcr.io
2022-12-13T16:10:29.3066380Z   DEPLOYMENT_NAME: front
2022-12-13T16:10:29.3066643Z   NAMESPACE: prod
2022-12-13T16:10:29.3066906Z   SERVICE: bitbloq-front
2022-12-13T16:10:29.3067296Z   CLOUDSDK_AUTH_CREDENTIAL_FILE_OVERRIDE: /home/runner/work/bitbloq3/bitbloq3/gha-creds-6940f3e7423b137b.json
2022-12-13T16:10:29.3067789Z   GOOGLE_APPLICATION_CREDENTIALS: /home/runner/work/bitbloq3/bitbloq3/gha-creds-6940f3e7423b137b.json
2022-12-13T16:10:29.3068253Z   GOOGLE_GHA_CREDS_PATH: /home/runner/work/bitbloq3/bitbloq3/gha-creds-6940f3e7423b137b.json
2022-12-13T16:10:29.3068621Z   CLOUDSDK_CORE_PROJECT: ***
2022-12-13T16:10:29.3068904Z   CLOUDSDK_PROJECT: ***
2022-12-13T16:10:29.3069189Z   GCLOUD_PROJECT: ***
2022-12-13T16:10:29.3069465Z   GCP_PROJECT: ***
2022-12-13T16:10:29.3070039Z   GOOGLE_CLOUD_PROJECT: ***
2022-12-13T16:10:29.3070459Z ##[endgroup]
2022-12-13T16:10:29.4245599Z Extracted project ID "***" from $GCLOUD_PROJECT
2022-12-13T16:10:29.8225734Z ##[error]google-github-actions/get-gke-credentials failed with: the caller does not have permission
2022-12-13T16:10:29.8300782Z ##[group]Run Co-qn/google-chat-notification@releases/v1
2022-12-13T16:10:29.8301088Z with:
2022-12-13T16:10:29.8301339Z   name: Bitbloq PROD - Frontend build
2022-12-13T16:10:29.8302027Z   url: ***
2022-12-13T16:10:29.8302244Z   status: failure
2022-12-13T16:10:29.8302459Z env:
2022-12-13T16:10:29.8302711Z   GKE_PROJECT: ***
2022-12-13T16:10:29.8303045Z   GKE_EMAIL: ***
2022-12-13T16:10:29.8303452Z   GKE_IDENTITY_PROVDER: ***
2022-12-13T16:10:29.8303749Z   GITHUB_SHA: 4f27647b87ad77800417a4e00e9bdb48aef38d95
2022-12-13T16:10:29.8304041Z   GITHUB_REF: refs/heads/master
2022-12-13T16:10:29.8304312Z   GKE_ZONE: europe-west1
2022-12-13T16:10:29.8304573Z   GKE_CLUSTER: bitbloq-cluster
2022-12-13T16:10:29.8304833Z   IMAGE: bitbloq-release
2022-12-13T16:10:29.8305090Z   REGISTRY_HOSTNAME: eu.gcr.io
2022-12-13T16:10:29.8305350Z   DEPLOYMENT_NAME: front
2022-12-13T16:10:29.8305603Z   NAMESPACE: prod
2022-12-13T16:10:29.8305844Z   SERVICE: bitbloq-front
2022-12-13T16:10:29.8306259Z   CLOUDSDK_AUTH_CREDENTIAL_FILE_OVERRIDE: /home/runner/work/bitbloq3/bitbloq3/gha-creds-6940f3e7423b137b.json
2022-12-13T16:10:29.8306748Z   GOOGLE_APPLICATION_CREDENTIALS: /home/runner/work/bitbloq3/bitbloq3/gha-creds-6940f3e7423b137b.json
2022-12-13T16:10:29.8307204Z   GOOGLE_GHA_CREDS_PATH: /home/runner/work/bitbloq3/bitbloq3/gha-creds-6940f3e7423b137b.json
2022-12-13T16:10:29.8307571Z   CLOUDSDK_CORE_PROJECT: ***
2022-12-13T16:10:29.8307852Z   CLOUDSDK_PROJECT: ***
2022-12-13T16:10:29.8308128Z   GCLOUD_PROJECT: ***
2022-12-13T16:10:29.8308384Z   GCP_PROJECT: ***
2022-12-13T16:10:29.8308700Z   GOOGLE_CLOUD_PROJECT: ***
2022-12-13T16:10:29.8308941Z ##[endgroup]
2022-12-13T16:10:30.5890450Z Sent message.
2022-12-13T16:10:30.6022800Z Post job cleanup.
2022-12-13T16:10:30.6752414Z Removed exported credentials at "/home/runner/work/bitbloq3/bitbloq3/gha-creds-6940f3e7423b137b.json".
2022-12-13T16:10:30.6856685Z Post job cleanup.
2022-12-13T16:10:30.8152691Z [command]/usr/bin/git version
2022-12-13T16:10:30.8204378Z git version 2.38.2
2022-12-13T16:10:30.8260077Z Temporarily overriding HOME='/home/runner/work/_temp/5011d54c-625b-4f7f-a6da-be2f046efc09' before making global git config changes
2022-12-13T16:10:30.8264179Z Adding repository directory to the temporary git global config as a safe directory
2022-12-13T16:10:30.8271979Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/bitbloq3/bitbloq3
2022-12-13T16:10:30.8318492Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-12-13T16:10:30.8360132Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2022-12-13T16:10:30.8610862Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2022-12-13T16:10:30.8648355Z http.https://github.com/.extraheader
2022-12-13T16:10:30.8649237Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2022-12-13T16:10:30.8676129Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2022-12-13T16:10:30.9118168Z Cleaning up orphan processes
sethvargo commented 1 year ago

Hi @avalero - are you sure that's the correct cluster name and location? What happens if you run gcloud container clusters get-credentials locally with the same authentication?

avalero commented 1 year ago

Hello @sethvargo , I have found the problem, the repo name is case sensitive, while going the github url is not. Changing the repo case (to the correct value) it works. Sorry and thankyou for your time.