Skip to content

Instantly share code, notes, and snippets.

View bobleujr's full-sized avatar
™️

Paulo G T bobleujr

™️
  • Quebec City, QC, Canada
View GitHub Profile

Keybase proof

I hereby claim:

  • I am bobleujr on github.
  • I am paulogtabarro (https://keybase.io/paulogtabarro) on keybase.
  • I have a public key ASATC6bYIVXGDrFzILYfvpsZ0Gf9D6o1vUj7fbHvDEK6vwo

To claim this, I am signing this object:

@bobleujr
bobleujr / controller.json
Created November 4, 2022 13:29
ARC - runner 1
[{
"textPayload": "2022-11-04T12:55:37Z\tDEBUG\tactions-runner-controller.runner\tRunner appears to have been registered and running.\t{\"runner\": \"github/runner-hm75v-jxknf\", \"podCreationTimestamp\": \"2022-11-03 22:18:31 +0000 UTC\"}",
"insertId": "kxn1hjobfkrrqspj",
"resource": {
"type": "k8s_container",
"labels": {
"namespace_name": "github",
"cluster_name": "cluster1-sandbox-1",
"location": "us-central1-c",
"container_name": "manager",
@bobleujr
bobleujr / gist:ef8284df6e2fb841dec430f4a9f19037
Created June 1, 2023 18:23
Connect to GCP's Artifact Registry via Github Actions

If you're also about to migrate from Container Registry into Artifact Registry and has to adapt your Github Actions pipelines to do so, the migration itself is very simple

  steps:
      ...
      - id: 'auth'
        uses: 'google-github-actions/auth@v1'
        with:
          # if you're using a .json for a service account
          credentials_json: '${{ secrets.your-service-account-json }}'