• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/12

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

12 Cards in this Set

  • Front
  • Back

Get to running containers

kubectl exec -it [pod's name] -- bash

Run kuber manifest

Kubectl create -f [manifest]

See pods

Kubectl get pods

delete pod in kuber

kubectl delete pod [pod's name]

To see kube config

Kubectl config view

Watch pods status

kubectl get pods --watch

How to see container log in kuber

kubectl logs [pod's name] --container [container]

how to set specific name space

kubectl config set-context --current --namespace [Namespace name]

To check the status of cluster

kubectl cluster-info

How get into minikube

minikube ssh

Apply the kustomize variables

kubectl kustomize

apply kustomize config management

kubectl apply -k kustomization.yml