Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chrismuellner/home-ops
home lab managed by flux
https://github.com/chrismuellner/home-ops
flux gitops
Last synced: about 1 month ago
JSON representation
home lab managed by flux
- Host: GitHub
- URL: https://github.com/chrismuellner/home-ops
- Owner: chrismuellner
- License: mit
- Created: 2022-05-22T15:37:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-14T07:51:56.000Z (8 months ago)
- Last Synced: 2024-04-14T07:59:30.295Z (8 months ago)
- Topics: flux, gitops
- Homepage:
- Size: 911 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# home ops
Single-node k3s cluster.
Thanks to k8s@home maintainers:
- https://github.com/onedr0p/flux-cluster-template
- https://github.com/bjw-s/home-ops## Prerequisites
- Storage
- `tv` (Sonarr) folder in `media` pvc
- `movie` (Radarr) folder in `media` pvc## Bootstrap
1. Install Flux
```sh
kubectl apply --kustomize ./bootstrap
```2. Create secret with age private key ([sealed secrets](https://fluxcd.io/flux/guides/mozilla-sops/#encrypting-secrets-using-age))
```sh
cat age.agekey |
kubectl create secret generic sops-age \
--namespace=flux-system \
--from-file=age.agekey=/dev/stdin
```3. Start Flux reconciliation
```sh
kubectl apply --kustomize ./clusters/lnz/config
```