Recap Core Concepts Flashcards
What are parts of the Open Container Initiative?
- imagespec: specifications on how an image should be build
- runtimespec: how any container runtime should be build
What is the tool ‘ctr’?
- CLI
- comes with containerD
- made for debugging containerD
- only supports limited set of features
What is ‘nerdctl’?
- CLI
- provides a Docker-like CLI for containerD
- very similiar to Docker commands
- supports most of the options docker offers
- supports: Lazy Pulling, encrypted container images, …
What is ‘crictl’?
- CLI for CRI compatible container runtimes
- command line utility used to interact with the CRI compatible runtime
- installed separately
- comes from Kubernetes perspective
- works across different runtimes
- used to inspect and debug container runtimes
Name a few ‘crictl’ commands
- crictl
- crictl pull busybox : pulls an image
- crictl images : list existing images
- crictl ps -a : list containers
- crictl exec -i -t 3e024dd50a72.. ls : run a command inside a container, with same options (-i for staying open, even when not attached, -t for allocating a pseudo -tty)
- crictl logs < container-id>
- crictl pods
- crictl inspect …
- crictl attach …
How are endpoints handled with crictl?
- users are encouraged to manually manage endpoints for interaction
- ‘crictl –runtime-endpoint’
- ‘crictl –image-endpoint
- or by setting the environment variables
In a ‘kubectl delete’ command, how do you terminate multiple pods?
- by chaining htem together with space
‘kubectl delete pod new-pod-1 new-pod-2 new-pod-3’
Name a few options for the Output format flag for commands
‘kubectl [command] [TYPE] [NAME] -o < output-format>’
-o json -> JSON formatted API object
-o name -> print only resource name
-o wide -> plain text with additional information
-o yaml -> yaml formatted api object
What is the default namespace and when is it created?
‘Default’-namespace
- created when the cluster is the first time set up
What is the namespace called, that is used for internal purposes, such as thos required by networking solution, DNS service etc
kube-system
- created at cluster-startup
What is the namespace called with resources that should be made available to all users?
kube-public
Which namespaces are created with cluster-startup?
kube-system
default
kube-public
What can be set for namespaces?
- own set of policies, who can do what
- quota of resources, that is allowed to use
How would it be possible to connect a container from one namespace to a container in a different namespace?
- by appending the namespace to the application name
‘db-service’
->
‘db-service.dev.svc.cluster.local’
-> possible, because when service is created, a DNS entry is created automatically in this format
‘cluster.local’ is the default domain name of kubernetes cluster
‘svc’ is subdomain of service
‘dev’ is the namespace
‘db-service’ is the service name
How is a dns-entry for a service name structured?
SERVICE-NAME.NAMESPACE.svc.cluster.local
How can you specify the namespace in a kubectl command?
‘kubectl get pods –namespace=kube-system’
or ‘-n’ in short for namespace
How does a yaml file look with the namespace definition included?
apiVersion: kind: metadata: name: xxx namespace: dev labels: spec:
How do you create a new namespace?
Like any other object, yaml
apiVersion: v1 kind: Namespace metadata: name: dev
OR
‘kubectl create namespace name’
How do we switch to a different namespace?
‘kubectl config set-context $(kubectl config current-context) –namespace=dev’
(kubectl config current-context) -> identifies the current context and then sets it
How can we see the pods from all namespaces?
‘kubectl get pods –all-namespaces’
How do we limit the resources used in a namespace?
- using a resource quota
- yaml-definition file
apiVersion: v1 kind: ResourceQuota metadata: name: compute-quota namespace: dev spec: hard: pods: "10" requests.cpu: "4" requests.memory: 5Gi limits.cpu: "10" limits.memory: 10Gi
What does the addition ‘-A’ do to a command?
- covers all the namespaces
kubectl get pods -A
equals
kubectl get pods –all-namespaces
What is command to create a deployment with a certain image and number of replicas?
kubectl create deployment nginx-deployment –image=nginx –replicas=4
How can you generate from the cl a yaml file for a deployment
kubectl create deployment nginx-deployment –image=nginx –replicas=4 -o yaml > deployment-definition.yaml
How can you expose a pod with a service via cl?
kubectl expose pod nginx –port=6379 –name=nginx-service –type=NodePort
The NodePort then needs to be specified after generating the yaml or service
What is important about the order of creating services and pods?
- when creating pods, services that should be connected should be created beforehand
- when a pod is created, the environment variables are being set, including the service only if it was created before the pod
How do you create a pod with certain labels?
kubectl run nginx –image=nginx –labels=”tier:frontend, env=prod”
How can you specify the container port for a pod you want to deploy via the cl?
kubectl run custom-nginx –image=nginx –port=8080
What does ‘kubectl config view | grep namespace’ do?
Shows the namespace entry in the current context
How can we expose a service and create a pod in one command?
kubectl run redis –image=redis –port=80 –expose=true