An open API service indexing awesome lists of open source software.

https://github.com/jerryshell/k8s-kuma-longhorn

K8s Kuma Longhorn
https://github.com/jerryshell/k8s-kuma-longhorn

homelab k8s kubernetes kuma longhorn

Last synced: 2 days ago
JSON representation

K8s Kuma Longhorn

Awesome Lists containing this project

README

          

# K8s Kuma Longhorn

[K8s](https://kubernetes.io/) + [Kuma](https://github.com/louislam/uptime-kuma) + [Longhorn](https://longhorn.io/)

## Pre-requisites

- Install Longhorn, Ref: [K8s PostgreSQL Longhorn](https://github.com/jerryshell/k8s-postgres-longhorn)
- TLS Ingress, Ref: [K8s Traefik cert-manager DNS01 TLS](https://github.com/jerryshell/k8s-traefik-cert-manager-dns01-tls)

## Git clone

```bash
git clone https://github.com/jerryshell/k8s-kuma-longhorn.git
cd k8s-kuma-longhorn
```

## PVC + Deployment + Service

```bash
kubectl apply -f k8s/
```

## Ingress

Replace `kuma.jerryshell.eu.org` with your own domain

```bash
export HOST=kuma.jerryshell.eu.org
cat k8s/ingress/ingress.yaml | envsubst | kubectl apply -f -
```

## TLS Ingress

Replace `kuma.jerryshell.eu.org` with your own domain

```bash
export HOST=kuma.jerryshell.eu.org
cat k8s/ingress/tls-ingress.yaml | envsubst | kubectl apply -f -
```

## Delete

```bash
kubectl delete --ignore-not-found=true -f k8s/ -f k8s/ingress/
```

## LICENSE

[GNU Affero General Public License v3.0](https://choosealicense.com/licenses/agpl-3.0/)