CKA Exam Question 6

Score: 7%

Task
Create a new nginx Ingress resource as follows:
* Name: ping
* Namespace: ing-internal
* Exposing service hi on path /hi using service port 5678

CKA Exam Question 7

Score: 5%

Task
Monitor the logs of pod bar and:
* Extract log lines corresponding to error
* Write them to /opt/KUTR00101/bar

CKA Exam Question 8

Score: 4%

Task
Check to see how many nodes are ready (not including nodes tainted NoSchedule ) and write the number to
/opt/KUSC00402/kusc00402.txt

CKA Exam Question 9

Check the rollout history and make sure everything is ok after the update
  • CKA Exam Question 10

    Create a Pod with main container busybox and which executes this
    "while true; do echo 'Hi I am from Main container' >>
    /var/log/index.html; sleep 5; done" and with sidecar container
    with nginx image which exposes on port 80. Use emptyDir Volume
    and mount this volume on path /var/log for busybox and on path
    /usr/share/nginx/html for nginx container. Verify both containers
    are running.