Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unapply a config that was applied with `apply -f`

Tags:

kubernetes

I have applied a config file like this kubectl apply -f deploy/mysql.yml

How can I unapply this specific config?

like image 239
Noitidart Avatar asked Sep 13 '19 14:09

Noitidart


People also ask

How do I delete a deployed application in SCCM?

In the Configuration Manager console, go to the Software Library workspace, expand Application Management, and select either the Applications or Application Groups node. Select the application or application group that includes the deployment you want to delete.

How do you cancel a deployment in SCCM?

In SCCM Console, go to the Software Library / Application Management / Applications. Select your deployed application. At the bottom select the Deployment tab. Right-click a deployment select Disable.

How do I remove an app from software Center?

There are two ways to uninstall software on your computer: (1) Open the Software Center, (2) select the Installed Software tab, (3) select the desired software (4) click Uninstall, and (5) follow the prompts.


1 Answers

Use kubectl delete command

kubectl delete -f deploy/mysql.yml
like image 78
Bimal Avatar answered Nov 04 '22 20:11

Bimal