uptime-kuma is working
This commit is contained in:
parent
23f5a98b3c
commit
9558e187ab
4 changed files with 2134 additions and 0 deletions
14
status/justfile
Normal file
14
status/justfile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue