docs: add Kubernetes advanced deployment

This commit is contained in:
Jonas Kaninda
2024-11-25 21:41:01 +01:00
parent d97bee06da
commit 1ef92ce80d
2 changed files with 12 additions and 3 deletions

View File

@@ -162,6 +162,12 @@ services:
- ./config:/etc/goma/ - ./config:/etc/goma/
``` ```
### 6. Kubernetes deployment
- [Kubernetes installation](https://jkaninda.github.io/goma-gateway/install/kubernetes.html)
- [Kubernetes advanced deployment using CRDs and Operator](https://jkaninda.github.io/goma-gateway/install/kuberntes-advanced.html)
## Supported Systems ## Supported Systems
- [x] Linux - [x] Linux
@@ -181,9 +187,6 @@ To run
./goma server --config config.yml ./goma server --config config.yml
``` ```
## Deployment ## Deployment
- Docker - Docker

View File

@@ -139,3 +139,9 @@ spec:
middlewares: middlewares:
- basic-middleware-sample - basic-middleware-sample
``` ```
## Uninstall
```sh
kubectl delete -f https://raw.githubusercontent.com/jkaninda/goma-operator/main/dist/install.yaml
```