mirror of
https://github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin.git
synced 2026-07-21 11:38:59 +02:00
🐛 Update documentation that help avoid a bug in traefik chart (#135)
* 🐛 Update documentation that help avoid a bug in traefik chart * 🚨 Fix lint and remove comment
This commit is contained in:
@@ -11,6 +11,19 @@ Install Docker Desktop
|
|||||||
In settings, click on `Kubernetes` menu, and click `Enable Kubernetes`, then `Apply and Restart`.
|
In settings, click on `Kubernetes` menu, and click `Enable Kubernetes`, then `Apply and Restart`.
|
||||||
In case of any issue, you can reset the cluster from this menu and the button `Reset Kubernetes Cluster`.
|
In case of any issue, you can reset the cluster from this menu and the button `Reset Kubernetes Cluster`.
|
||||||
|
|
||||||
|
|
||||||
|
##### Install Kubernetes on Minikube
|
||||||
|
|
||||||
|
Install Minikube
|
||||||
|
|
||||||
|
```bash
|
||||||
|
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
|
||||||
|
&& chmod +x minikube
|
||||||
|
sudo mkdir -p /usr/local/bin/
|
||||||
|
sudo install minikube /usr/local/bin/
|
||||||
|
minikube start
|
||||||
|
```
|
||||||
|
|
||||||
##### Install Traefik
|
##### Install Traefik
|
||||||
|
|
||||||
[getting-started/install-traefik/#use-the-helm-chart](https://doc.traefik.io/traefik/getting-started/install-traefik/#use-the-helm-chart)
|
[getting-started/install-traefik/#use-the-helm-chart](https://doc.traefik.io/traefik/getting-started/install-traefik/#use-the-helm-chart)
|
||||||
@@ -19,11 +32,13 @@ In case of any issue, you can reset the cluster from this menu and the button `R
|
|||||||
helm repo add traefik https://traefik.github.io/charts
|
helm repo add traefik https://traefik.github.io/charts
|
||||||
helm repo update
|
helm repo update
|
||||||
kubectl create ns traefik
|
kubectl create ns traefik
|
||||||
helm upgrade --install --namespace=traefik \
|
helm upgrade --version v26.1.0 --install --namespace=traefik \
|
||||||
--values=./traefik/values.yml \
|
--values=./traefik/values.yml \
|
||||||
traefik traefik/traefik
|
traefik traefik/traefik
|
||||||
```
|
```
|
||||||
|
|
||||||
|
_A [bug](https://github.com/traefik/traefik-helm-chart/commit/e7ce1b410c858642069033305eb6362f26689f16) has been fixed in chart 26.1.0 that could prevent plugin to be loaded_
|
||||||
|
|
||||||
#### View the Traefik dashboard
|
#### View the Traefik dashboard
|
||||||
|
|
||||||
> Port forward the dashboard:
|
> Port forward the dashboard:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
image:
|
image:
|
||||||
tag: v1.5.2
|
tag: v1.6.0
|
||||||
|
|
||||||
agent:
|
agent:
|
||||||
acquisition:
|
acquisition:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
image:
|
image:
|
||||||
tag: v2.10.4
|
tag: v2.11
|
||||||
|
|
||||||
logs:
|
logs:
|
||||||
general:
|
general:
|
||||||
@@ -12,8 +12,6 @@ logs:
|
|||||||
|
|
||||||
experimental:
|
experimental:
|
||||||
plugins:
|
plugins:
|
||||||
enabled: true
|
bouncer:
|
||||||
|
moduleName: "github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin"
|
||||||
additionalArguments:
|
version: "v1.2.0"
|
||||||
- "--experimental.plugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin"
|
|
||||||
- "--experimental.plugins.bouncer.version=v1.1.13"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user