Deleting a Specified DaemonSet
Function
This API is used to delete a DaemonSet resource object.
URI
DELETE /apis/apps/v1/namespaces/{namespace}/daemonsets/{name} (for clusters of v1.9 and later)
DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name} (for clusters of v1.15 and earlier)
Table 1 describes the parameters of this API.
|
Parameter |
Mandatory |
Description |
|---|---|---|
|
name |
Yes |
Name of the DaemonSet. |
|
namespace |
Yes |
Object name and auth scope, such as for teams and projects. |
|
pretty |
No |
If 'true', then the output is pretty printed. |
|
gracePeriodSeconds |
No |
The duration in seconds before the object should be deleted. Value must be a non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. |
|
orphanDependents |
No |
Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
|
propagationPolicy |
No |
Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request
Request parameters:
For the description about request parameters, see Table 2.
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
apiVersion |
Yes |
String |
apiVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. |
|
gracePeriodSeconds |
No |
Integer |
The duration in seconds before the object should be deleted. Value must be a non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. |
|
kind |
Yes |
String |
kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. |
|
orphanDependents |
No |
Boolean |
Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
|
preconditions |
No |
preconditions object |
Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned. |
|
propagationPolicy |
No |
String |
Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
uid |
No |
String |
Specifies the target UID. |
Example request:
- Deleting only the DaemonSet (the pod is not deleted):
{ "Kind": "DeleteOptions", "apiVersion": "v1", "propagationPolicy": "Orphan" } - Deleting the pod and then the DaemonSet on the frontend:
{ "kind": "DeleteOptions", "apiVersion": "v1", "propagationPolicy": "Foreground" } - Deleting the DaemonSet and then the pod on the backend:
{ "kind": "DeleteOptions", "apiVersion": "v1", "propagationPolicy": "Background" }
Response
Response parameters:
For the description about response parameters, see Table 2.
Example response:
{
"kind": "DaemonSet",
"apiVersion": "extensions/v1beta1",
"metadata": {
"name": "ds-12130306",
"namespace": "ns-12130306-s",
"selfLink": "/apis/extensions/v1beta1/namespaces/ns-12130306-s/daemonsets/ds-12130306",
"uid": "dc72a82b-dfb3-11e7-9c19-fa163e2d897b",
"resourceVersion": "419055",
"generation": 2,
"creationTimestamp": "2017-12-13T03:15:24Z",
"deletionTimestamp": "2017-12-13T03:15:55Z",
"deletionGracePeriodSeconds": 0,
"labels": {
"name": "daemonset-test"
},
"finalizers": [
"orphan"
],
"enable": true
},
"spec": {
"selector": {
"matchLabels": {
"name": "daemonset-test"
}
},
"template": {
"metadata": {
"creationTimestamp": null,
"labels": {
"name": "daemonset-test"
},
"enable": true
},
"spec": {
"containers": [
{
"name": "dscon-12130306",
"image": "172.16.5.235:20202/test/redis:latest",
"resources": {},
"terminationMessagePath": "/dev/termination-log",
"terminationMessagePolicy": "File",
"imagePullPolicy": "IfNotPresent"
}
],
"restartPolicy": "Always",
"terminationGracePeriodSeconds": 30,
"dnsPolicy": "ClusterFirst",
"securityContext": {},
"schedulerName": "default-scheduler"
}
},
"updateStrategy": {
"type": "OnDelete"
},
"templateGeneration": 1,
"revisionHistoryLimit": 10
},
"status": {
"currentNumberScheduled": 1,
"numberMisscheduled": 0,
"desiredNumberScheduled": 1,
"numberReady": 1,
"observedGeneration": 1,
"updatedNumberScheduled": 1,
"numberAvailable": 1
}
}
Status Code
Table 4 describes the status code of this API.
For the description about error status codes, see Status Code.
Last Article: Creating a DaemonSet
Next Article: Delete All DaemonSets
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.