1
0
Fork 0

Add MicroK8s, Helm and Dokku to the documentation

This commit is contained in:
Joao Gilberto Magalhaes 2023-02-12 09:51:54 -06:00
parent 89c4799efa
commit 58bda7eef0
8 changed files with 160 additions and 67 deletions

52
docs/microk8s.md Normal file
View file

@ -0,0 +1,52 @@
# Microk8s Add-ons
Microk8s is a lightweight Kubernetes distribution that can run on a single machine. It is very easy to install and use.
You can add custom addons to your Microk8s installation.
Here are the steps to install EasyHAProxy on your Microk8s.
## Installing ByJG repository
Before install the addons, you need to add the ByJG repository to your Microk8s installation.
1. Access the microk8s host machine and run:
```shell
microk8s addons repo add byjg https://github.com/byjg/microk8s-addons.git
```
2. Check if it is installed:
```text
$ microk8s status
microk8s is running
...
addons:
...
disabled:
easyhaproxy # (byjg) EasyHAProxy can detect and configure HAProxy automatically based on ingress labels
....
```
## Installing EasyHAProxy addon
EasyHAProxy can detect and configure HAProxy automatically based on ingress labels.
Usage:
Install as a Daemonset
```shell
microk8s enable easyhaproxy
```
Install as a NodePort
```shell
microk8s enable easyhaproxy --nodeport
```
For more parameters you can refer to the [Kubernetes](kubernetes.md) page.
----
[Open source ByJG](http://opensource.byjg.com)