Exercise 8.4: Domain Review

  1. Download and use the troubleshoot-review1.yaml file to create a deployment. The create command will fail. Edit the file to fix issues such that a single pod runs for at least a minute without issue. There are several things to fix

    wget https://raw.githubusercontent.com/youngwjung/lf-training/main/LFD459/v1.24.1/solutions/s_08/troubleshoot-review1.yaml
    kubectl create -f troubleshoot-review1.yaml
  2. When fixed it should look like this:

    student@cp:~$ kubectl get deploy igottrouble
    NAME          READY   UP-TO-DATE   AVAILABLE   AGE
    igottrouble   1/1     1            1           5m13s
  3. Remove any resources created during this review.

Last updated