A local Kubernetes cluster.
- kubectl
- kustomize v5+
- kind
Create
make cluster-createDelete
make cluster-deletePause
make cluster-pauseUnpause
make cluster-unpauseCreate & Test
make dashboard-apply # See localhost:8443Delete
make dashboard-deleteCreate & Test
make grafana-apply # See localhost:3000Delete
make grafana-deleteCreate & Test
make postgres-apply
psql -h 0.0.0.0 -U postgres -c "\\l" # default password is "pass"Delete
make postgres-deleteCreate & Test
make redis-apply
redis-cli -c infoDelete
make redis-deleteCreate & Test
make scylla-apply
cqlshDelete
make scylla-deletekubectl get
kubectl get deployment
kubectl get pod
kubectl get pv
kubectl get pvckubectl describe
kubectl describe pod redis-xxxxxkubectl logs
kubectl logs postgres-xxxxxkubectl exec
kubectl exec -it postgres-xxxxx -- /bin/bash