uptime-kuma is working

This commit is contained in:
Waylon Walker 2023-11-11 07:31:42 -06:00
parent 23f5a98b3c
commit 9558e187ab
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
4 changed files with 2134 additions and 0 deletions

14
status/justfile Normal file
View file

@ -0,0 +1,14 @@
default: convert deploy viz
create-ns:
kubectl create ns status
convert:
kompose convert -o deployment.yaml -n status
deploy:
kubectl apply -f deployment.yaml
viz:
k8sviz -n status --kubeconfig $KUBECONFIG -t png -o status-k8s.png
restart:
kubectl rollout restart -n status deployment/status
delete:
kubectl delete all --all -n status --timeout=0s