Skip to Content
Certified Kubernetes Application Developer (CKAD) Study Guide
book

Certified Kubernetes Application Developer (CKAD) Study Guide

by Benjamin Muschko
February 2021
Intermediate to advanced
188 pages
4h 23m
English
O'Reilly Media, Inc.
Content preview from Certified Kubernetes Application Developer (CKAD) Study Guide

Answers to Review Questions

Chapter 2, Core Concepts

  1. You can either use the imperative approach or the declarative approach. First, we’ll look at creating the namespace with the imperative approach:

    $ kubectl create namespace ckad
    

    Create the Pod:

    $ kubectl run nginx --image=nginx:1.17.10 --port=80 --namespace=ckad
    

    Alternatively, you can use the declarative approach. Create a new YAML file called ckad-namespace.yaml with the following contents:

    apiVersion: v1
    kind: Namespace
    metadata:
      name: ckad

    Create the namespace from the YAML file:

    $ kubectl create -f ckad-namespace.yaml
    

    Create a new YAML file called nginx-pod.yaml with the following contents:

    apiVersion: v1
    kind: Pod
    metadata:
      name: nginx
    spec:
      containers:
      - name: nginx
        image: nginx:1.17.10
        ports:
        - containerPort: 80

    Create the Pod from the YAML file:

    $ kubectl create -f nginx-pod.yaml --namespace=ckad
    
  2. You can use the command-line option -o wide to retrieve the IP address of the Pod:

    $ kubectl get pod nginx --namespace=ckad -o wide
    

    The same information is available if you query for the Pod details:

    $ kubectl describe pod nginx --namespace=ckad | grep IP:
    
  3. You can use the command-line options --rm and -it to start a temporary Pod. The following command assumes that the IP address of the Pod named nginx is 10.1.0.66:

    $ kubectl run busybox --image=busybox --restart=Never --rm -it -n ckad \
      -- wget -O- 10.1.0.66:80
    
  4. To download the logs, use a simple logs command:

    $ kubectl logs nginx --namespace=ckad ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Certified Kubernetes Application Developer (CKAD) Study Guide, 2nd Edition

Certified Kubernetes Application Developer (CKAD) Study Guide, 2nd Edition

Benjamin Muschko

Publisher Resources

ISBN: 9781492083726Errata Page