Uninstall an Odoo module (via terminal/command line) If you're just trying to uninstall a module (disable it in the database), you can run a script using Odoo’s shell: ./odoo-bin shell -d your_database_name Then, once inside the shell: module = env['ir.module.module'].search([('name', '=', 'your_module_name')]) module.button_immediate_uninstall()
Create a local development kubernetes cluster and swith between local and remote clusters $ apt install minikube # To install Minikube $ minikube delete # To reset Minikube $ minikube start --driver=docker # Start Minikube with Docker driver $ kubectl cluster-info # To display the current cluster and its IP $ kubectl config current-context # To list the default cluster minikube $kubectl config get-contexts # To list available clusters local and remote CURRENT NAME CLUSTER AUTHINFO NAMESPACE remote-cluster remote-cluster remote-cluster-admin * minikube ...