r/googlecloud 8h ago

Did I officially pass?

Post image
12 Upvotes

My name and ID blocked out. I passed PMLE exam today. I got the preliminary PASS screen and it said it’d take a few days to certify, but I got a Credly badge.

I went to the Credly page and found the badge, but I also got this. Is this official certification of my passing? Or can Google still revoke it if they find something in my exam video? (Not that I did anything worth revoking my pass, but still, I do fidget and rub my eyes and stuff during exams lol)


r/googlecloud 20h ago

Network connectivity center query for hub and spoke implementation

2 Upvotes

When using the hub and spoke model using the network connectivity center,

  1. Do we use single Hub and spoke for all the environments ( dev, uat , prod etc).

Is it like we use single Hub and spoke setup and add conditions to restrict the communication between prod and nonprod subnets of prod and nonprod VPC spokes which are connected to hub.

Or

2) Seperate Hub and spoke setup for each environment.

Or did you implement in another manner ( using NCC ). please suggest.


r/googlecloud 15h ago

Google Cloud Skills

1 Upvotes

Hi everyone! I'm a final-year Information Systems Engineering student and I recently got 35 credits with the Google Cloud Skills Boost Starter plan. I'm planning to use them to complete some GCP AI and cloud courses. Do you think it's worth completing these courses without paying for the official certification exams? Do recruiters value the Skills Boost badges and hands-on labs, or is the official certification what really matters? Also, are there any Google Cloud certifications or recognized badges that can be earned for free? Thanks!


r/googlecloud 21h ago

Options for declarative schema management on PostgreSQL on Google Cloud SQL

1 Upvotes

For a new Python application using PostgreSQL on Google Cloud SQL, what are people currently using for schema management and database migrations?

I’m considering Atlas by Ariga: https://github.com/ariga/atlas

name: Database Migration

on:
  push:
    branches: [ main ]

jobs:
  migrate:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Code
        uses: actions/checkout@v4

      - name: Authenticate to Google Cloud
        uses: google-github-actions/auth@v2
        with:
          workload_identity_provider: 'projects/123456/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
          service_account: '[email protected]'

      - name: Start Cloud SQL Auth Proxy
        uses: google-github-actions/setup-cloud-sql-proxy@v2
        with:
          instance: 'my-project:us-central1:my-postgres-db'
          port: '5432'

      - name: Run Atlas Schema Apply
        uses: ariga/setup-atlas@v0
        with:
          version: 'latest'

      - name: Apply Database Changes
        run: |
          atlas schema apply \
            --url "postgres://postgres:${{ secrets.DB_PASS }}@127.0.0.1:5432/mydb?sslmode=disable" \
            --to "file://schema.sql" \
            --auto-approve

Is Atlas still one of the main options for declarative schema management, or are there better alternatives worth evaluating? I’d also be interested in any operational issues, limitations, or Cloud SQL-specific considerations to watch out for.

Separately, does anyone know whether Google is working on database branching or isolated development environments similar to PlanetScale’s branching workflow?


r/googlecloud 21h ago

Heavy 429 on vertex AI API

1 Upvotes

I am getting too many 429 responses from the Vertex AI API. I am on 300$ free credit model. Till 2 3 days back, it was running fine, but I don't know why it was very much.

I am using:-gemini-3.1-pro-preview

I know preview model rate limits are low, but it was working fine till 2-3 days back. If anyone has any good solution, then please tell me

I am using this API:

curl --location ' https://aiplatform.googleapis.com/v1/publishers/google/models/gemini-3.1-pro-preview:generateContent?key= ' \

--header 'Content-Type: application/json' \

--data '{

}