Forrest logo
back to context overview

kubectl-get

List of commands for kubectl-get:

  • kubectl-get:tldr:173b2 kubectl-get: Get deployments in a specified namespace.
    $ kubectl get deployments -n ${namespace}
    try on your machine
    explain this command
  • kubectl-get:tldr:4d08c kubectl-get: Get services in a specified namespace.
    $ kubectl get services -n ${namespace}
    try on your machine
    explain this command
  • kubectl-get:tldr:78a9f kubectl-get: Get pods in a specified namespace.
    $ kubectl get pods -n ${namespace}
    try on your machine
    explain this command
  • kubectl-get:tldr:877b9 kubectl-get: Get all resources in a specified namespace.
    $ kubectl get all -n ${namespace}
    try on your machine
    explain this command
  • kubectl-get:tldr:8f97f kubectl-get: Get all namespaces in the current cluster.
    $ kubectl get namespaces
    try on your machine
    explain this command
  • kubectl-get:tldr:ab6ae kubectl-get: Get nodes in a specified namespace.
    $ kubectl get nodes -n ${namespace}
    try on your machine
    explain this command
  • kubectl-get:tldr:d66df kubectl-get: Get Kubernetes objects defined in a YAML manifest.
    $ kubectl get -f ${path-to-manifest-yaml}
    try on your machine
    explain this command
back to context overview