CKA Exam Question 21

For this item, you will have to ssh to the nodes ik8s-master-0 and ik8s-node-0 and complete all tasks on these nodes. Ensure that you return to the base node (hostname: node-1) when you have completed this item.
Context
As an administrator of a small development team, you have been asked to set up a Kubernetes cluster to test the viability of a new application.
Task
You must use kubeadm to perform this task. Any kubeadm invocations will require the use of the
--ignore-preflight-errors=all option.
* Configure the node ik8s-master-O as a master node. .
* Join the node ik8s-node-o to the cluster.

CKA Exam Question 22

An administrator accidentally closed the commit window/screen before the commit was finished. Which two options could the administrator use to verify the progress or success of that commit task? (Choose two)
  • CKA Exam Question 23

    Create a deployment spec file that will:
    Launch 7 replicas of the nginx Image with the labelapp_runtime_stage=dev deployment name: kual00201 Save a copy of this spec file to /opt/KUAL00201/spec_deployment.yaml (or /opt/KUAL00201/spec_deployment.json).
    When you are done, clean up (delete) any new Kubernetes API object that you produced during this task.

    CKA Exam Question 24

    Create and configure the service front-end-service so it's accessible through NodePort and routes to the existing pod named front-end.

    CKA Exam Question 25

    Create a deployment as follows:
    Name: nginx-app
    Using container nginx with version 1.11.10-alpine
    The deployment should contain 3 replicas
    Next, deploy the application with new version 1.11.13-alpine, by performing a rolling update.
    Finally, rollback that update to the previous version 1.11.10-alpine.