cpln delete
Overview
The cpln delete command serves as the opposite of the CLI apply command. While the apply
command creates and updates resources, the delete
command deletes resources. Both the apply
and the delete
commands accept the same options.
Using the CLI
The FILE_NAME
is the path for the file and it can be either a JSON or YAML file containing the resource metadata.
To delete an Identity, a Volume Set or a Workload resource you need to specify a GVC in one of the following methods.
-
Specify a
gvc
within your cpln profile. This will add thegvc
to the session context of the profile and will be refered to as the defaultgvc
when executing any future command including thecpln delete
command. -
Specify a
--gvc
flag to thedelete
command. This will pass thegvc
as an option and will override the defaultgvc
that is defined in the session context of the profile. -
Specify a
gvc
property in the resource definition in the file you wish to run the delete command against.YAML
Click here to view the CLI reference page for the delete
command.
Delete an Applied K8s File
The CLI has the ability to convert K8s resources into Control Plane resources. By passing the --k8s true
option to the delete
command, the K8s resources will be converted and deleted.
The delete
command will use the logic of the CLI convert command and then delete the resources defined in the output.
Delete from Standard Input
In case you would like to pass Control Plane resources through stdin
(Standard Input) and delete them, use the following command.
Using the Console
The console has the ability to upload a JSON or YAML file or accept a resource definition in JSON or YAML as input. The functionality is the same as using the CLI. Click the cpln apply
button in the upper right corner of the console. A modal will be displayed containing the upload instructions. Enable the Use as Delete
switch in order to delete a resource.
The cpln apply modal provides the ability to specify in which org
and gvc
a resource will be deleted. The default is your currently selected org
and gvc
.
A file or an input containing an Identity, a Volume Set or a Workload resource will be deleted in the scope of the specified gvc
in the cpln apply modal. In case a gvc
is defined within a resource, the resource will be deleted in the scope of that gvc
.
Multiple Resources
To delete multiple resources, specify a JSON array or YAML’s separated with ---
.