Deleting a container
- In the management console
, go to the folder with your container. - Go to Serverless Containers.
- In the container row, click
. - In the menu that opens, click Delete.
- In the window that opens, click Delete.
To delete a container, run this command:
yc serverless container delete --name <container_name>
Result:
done (2s)
With Terraform
Terraform is distributed under the Business Source License
For more information about the provider resources, see the relevant documentation on the Terraform
If you do not have Terraform yet, install it and configure the Yandex Cloud provider.
To delete a container created with Terraform:
-
Open the Terraform configuration file and delete the section with the container description.
Example container description in the Terraform configuration:
... resource "yandex_serverless_container" "test-container" { name = "my-container" memory = 256 service_account_id = "ajecvjv1lv01********" image { url = "cr.yandex/yc/test-image:v1" } } ...For more information about
yandex_serverless_containerproperties, see this Terraform article. -
Check the configuration using this command:
terraform validateIf the configuration is correct, you will get this message:
Success! The configuration is valid. -
Run this command:
terraform planYou will see a detailed list of resources. No changes will be made at this step. If the configuration contains any errors, Terraform will show them.
-
Apply the changes:
terraform apply -
Type
yesand press Enter to confirm the changes.
You can check the deletion of the container using the management console
yc serverless container list
To delete a container, use the delete REST API method for the Container resource or the ContainerService/Delete gRPC API call.