feat(nightscout): migrate from bare-metal LXC to k3s

This commit is contained in:
funman300
2026-05-18 13:47:52 -07:00
parent 70ab699c04
commit e4473578dc
11 changed files with 227 additions and 0 deletions
@@ -0,0 +1,18 @@
# DO NOT COMMIT THE REAL VERSION OF THIS FILE.
# apps/nightscout/nightscout-secret.yaml is gitignored — apply it manually once:
#
# cp apps/nightscout/nightscout-secret.yaml.example apps/nightscout/nightscout-secret.yaml
# # fill in real values below, then:
# kubectl apply -f apps/nightscout/nightscout-secret.yaml
# kubectl annotate secret nightscout-secret -n nightscout \
# argocd.argoproj.io/sync-options=Prune=false --overwrite
#
# API_SECRET must be at least 12 characters.
apiVersion: v1
kind: Secret
metadata:
name: nightscout-secret
namespace: nightscout
stringData:
API_SECRET: "CHANGE_ME"
MONGODB_URI: "mongodb://mongodb:27017/nightscout"