# See question 1.1 from the article entitled "Practice Exam for Certified Kubernetes Application Developer (CKAD) Certification". # # https://matthewpalmer.net/kubernetes-app-developer/articles/ckad-practice-exam.html # # Answered in the article entitled "Answers to Five Kubernetes CKAD Questions (2020)" here: # # https://thospfuller.com/2020/11/09/answers_to_five_kubernetes_ckad_questions_2020/ # apiVersion: v1 kind: Pod metadata: name: pod-a labels: role: myrole spec: containers: - name: web image: kubegoldenguide/simple-http-server ports: - name: web containerPort: 80 protocol: TCP