Yandex Cloud is the cloud computing platform run by Yandex, tied for #42 among cloud platforms in developer surveys at roughly 0.7% usage share. It's primarily used in Russia and neighboring markets, offering a service lineup similar to AWS or Google Cloud โ compute instances, object storage, managed databases, and ML tooling โ tailored to that region's data-residency and payment requirements. It's a fully managed, proprietary platform.
The yc CLI manages Yandex Cloud resources from your terminal, similar in shape to aws or gcloud.
# list compute instances in the current folder (project)
yc compute instance list
# create a small VM from a public image
yc compute instance create --name my-vm \
--zone ru-central1-a \
--network-interface subnet-name=default,nat-ip-version=ipv4 \
--create-boot-disk image-folder-id=standard-images,image-family=ubuntu-2204-lts
Install the CLI, initialize it with your account and default cloud/folder, then start creating resources.
# install the yc CLI (Linux/macOS)
curl -sSL https://storage.yandexcloud.net/yandexcloud-yc/install.sh | bash
# authenticate and set defaults
yc init