my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
1.8 KiB

3 years ago
  1. # MicroK8s plugin
  2. This plugin provides completion and useful aliases for [MicroK8s](https://microk8s.io/).
  3. To use it, add `microk8s` to the plugins array in your zshrc file.
  4. ```zsh
  5. plugins=(... microk8s)
  6. ```
  7. ## Aliases
  8. | Alias | Command | Description |
  9. |-------|------------------|----------------------------------------------------------------------------------------------------------|
  10. | mco | microk8s.config | Shows the Kubernetes config file. |
  11. | mct | microk8s.ctr | Interact with containerd CLI. |
  12. | mdi | microk8s.disable | Disables an addon. |
  13. | me | microk8s.enable | Enables an addon. |
  14. | mh | microk8s.helm | Interact with Helm CLI. |
  15. | mis | microk8s.istio | Interact with Istio CLI. |
  16. | mk | microk8s.kubectl | Interact with Kubernetes CLI. |
  17. | msp | microk8s.stop | Stops all Kubernetes services. |
  18. | mst | microk8s.start | Starts MicroK8s after it is being stopped. |
  19. | msts | microk8s.status | Provides an overview of the MicroK8s state (running / not running) as well as the set of enabled addons. |