Inspect network load balancer yc
Dump NLB listeners and target groups to debug routing
yc load-balancer network-load-balancer get <name> --format json | jq '.listeners,.attached_target_groups'
more yc
all 32 commands →
List L7 load balancers
yc application-load-balancer load-balancer list --format json | jq -r '.[]|[.name,.status]|@tsv'
Create public DNS zone
yc dns zone create --name myzone --zone example.com. --public-visibility
Add DNS A record
yc dns zone add-records --name myzone --record '@ 600 A 1.2.3.4'
Create VM with cloud-init
yc compute instance create --name web-1 --zone ru-central1-a --network-interface subnet-name=sub-a,nat-ip-version=ipv4 --create-boot-disk image-family=ubuntu-2204-lts,size=20 --metadata-from-file user-data=cloud-init.yaml
Create managed PostgreSQL 16 cluster
yc managed-postgresql cluster create --name <name> --environment production --postgresql-version 16 --network-name <name> --host zone-id=ru-central1-a,subnet-name=<name> --resource-preset s3-c2-m8 --disk-size 50 --disk-type network-ssd