Delete a configmap itself from Kubernetes

12/12/2019

I am trying to delete a configmap from a k8s namespace .. i created the configmap using the command below

kubectl -n namespacename create -f configmap.yaml

checking the k8s cheat sheet https://kubernetes.io/docs/reference/kubectl/cheatsheet/ i didn't find anything related .. kindly advise how to do that ?

-- Hany Habib
configmap
kubectl
kubernetes

4 Answers

12/12/2019

To delete configmap using configmap name:

# kubectl delete configmap  <configmap-name>  -n  <namespace-name> 
$ kubectl delete configmap    my-cofigmap     -n   namespacename 

To delete configmap using configmap yaml file:

# kubectl delete -f <file-directory> -n <namespace-name>
$ kubectl delete -f  configmap.yaml  -n  namespacename
-- Kamol Hasan
Source: StackOverflow

12/12/2019

Easiest way if you created the ConfigMap with a YAML file is to delete it by referencing the YAML file as well:

kubectl delete -n <namespacename> -f configmap.yaml
-- weibeld
Source: StackOverflow

12/12/2019

You can delete a configMap by it's name. If you are unsure you can check the configMaps within a namespace by using:

kubectl get configmap -n namespacename

once you have them you can run a delete command:

kubectl delete configmap <configmapname> -n namespacename

-- Fermin
Source: StackOverflow

12/12/2019

Should work this way:

kubectl delete configmap <configmap-name> -n <namespace-name>

Your configmap's name should be defined in your configmap.yaml file.

-- Tommy Brettschneider
Source: StackOverflow