What are the basic Kubernetes commands I need to know to use Saagie?

Action Command Line

Locate the <namespace>

kubectl get namespaces

Locate the <pod_name> (replacing <namespace>)

kubectl -n <namespace> get pods

Retrieve <container_name> (replacing <deployment_name>)

Retrieves all the information about the deployment, including the names of the containers.
kubectl describe deployment <deployment_name>

Locate your <deployment_name>

kubectl -n <namespace> get deployments

Locate the <statefulset_name>

kubectl -n <namespace> get statefulset

Locate the <pvc_name> (replacing <namespace>)

kubectl -n <namespace> get pvc