• Skip to main content

Uly.me

cloud engineer

  • Home
  • About
  • Search

gcp

GCP Backend Services Health Status

February 14, 2023

Here’s how to get health status of a GCP Load Balancer Backend Services.

For all load balancers except target pool.

gcloud compute backend-services get-health BACKEND_SERVICE_NAME \
--region us-central1 \
--project project-id

gcloud compute backend-services get-health BACKEND_SERVICE_NAME \ --region us-central1 \ --project project-id

For target pool load balancers, use this command.

gcloud compute target-pools get-health TARGET_POOL_NAME \
--region us-central1 \
--project project-id

gcloud compute target-pools get-health TARGET_POOL_NAME \ --region us-central1 \ --project project-id

Filed Under: Cloud Tagged With: backend-service, gcp, health, load balancer, status

GCP BMS List LUNS in Volume

February 11, 2023

Here’s how to list the luns for a particular volume.

gcloud bms volumes luns list --project project-id --region us-central1 --volume at-xxxxxxx-volxxx

gcloud bms volumes luns list --project project-id --region us-central1 --volume at-xxxxxxx-volxxx

Filed Under: Cloud Tagged With: bms, gcp, list, luns, volume

GCP BMS Describe Instances

February 8, 2023

Here’s how to describe a Bare Metal Server (BMS). The output display storage LUNS and network information.

gcloud bms instances describe INSTANCE --project PROJECT-ID --region us-central1

gcloud bms instances describe INSTANCE --project PROJECT-ID --region us-central1

Filed Under: Cloud Tagged With: bms, describe, gcp, instances

GCP BMS Describe Volume

February 8, 2023

Here’s how to describe a Bare Metal Server (BMS) volume within a project.

gcloud bms volumes describe at-xxxxxxx-vol001-data --project project_id --region us-central1

gcloud bms volumes describe at-xxxxxxx-vol001-data --project project_id --region us-central1

Filed Under: Cloud Tagged With: bms, describe, gcp, volume

GCP BMS List Volumes

February 8, 2023

Here’s how to list all your Bare Metal Servers (BMS) volumes within a project.

gcloud bms volumes list --project PROJECT_ID --region us-central1

gcloud bms volumes list --project PROJECT_ID --region us-central1

Filed Under: Cloud Tagged With: bms, gcp, list, volumes

  • Go to page 1
  • Go to page 2
  • Go to page 3
  • Interim pages omitted …
  • Go to page 26
  • Go to Next Page »
  • Home
  • About
  • Search

Copyright © 2023