### My home Kubernetes cluster :sailboat:
_... managed by Flux and serviced with RenovateBot_ :robot:
[](https://discord.gg/AvJxRMRf6H)
[](https://k3s.io/)
[](https://github.com/pre-commit/pre-commit)
[](https://github.com/renovatebot/renovate)
### Bootstrap Flux
```bash
flux bootstrap github \
--version=latest \
--owner=auricom \
--repository=home-cluster \
--path=cluster \
--personal \
--network-policy=false
```
### SOPS secret from GPG key
```bash
gpg --export-secret-keys --armor | kubectl create secret generic sops-gpg --namespace=flux-system --from-file=sops.asc=/dev/stdin
```
### Encrypt kubernetes resources with sops binary
```bash
sops --encrypt --pgp= --encrypted-regex '^(data|stringData)$' --in-place
```