mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-22 15:14:31 +07:00
feat(scripts): add script to show homelab status
This commit is contained in:
parent
c64842743b
commit
210cc1efa0
@ -14,4 +14,10 @@ Build the lab:
|
||||
make
|
||||
```
|
||||
|
||||
Yes it's that simple! Continue to the next section to update your DNS before you can access the home page at <https://home.example.com>.
|
||||
Yes it's that simple! Check the status using the following command:
|
||||
|
||||
```sh
|
||||
./scripts/get-status
|
||||
```
|
||||
|
||||
While waiting for all services to become healthy, continue to the next section to update your DNS.
|
||||
|
@ -1,5 +1,6 @@
|
||||
# DNS setup
|
||||
|
||||
Before you can access the home page at <https://home.example.com>, you'll need to update your DNS config.
|
||||
Because everyone DNS setup are different, DNS automation is not in the scope of the project.
|
||||
|
||||
Some options for DNS config (choose one):
|
||||
|
7
scripts/get-status
Executable file
7
scripts/get-status
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
export KUBECONFIG=./metal/kubeconfig.yaml
|
||||
|
||||
kubectl get applicationsets --namespace argocd
|
||||
kubectl get applications --namespace argocd
|
||||
kubectl get ingress --all-namespaces
|
Loading…
Reference in New Issue
Block a user