Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Enter the following command:tail

#tail /srv/deployment/log/bootstrap.log

You should see: Installation complete, Installation Succeeded.

2. Docker Version Test:

#docker --version

Expected Output: Docker version 18.09.2, build 6247962

3. Kubernetes Cluster – check Health/validation

# kubectl get pods --all-namespaces

Expected Output: status of all the pods should be running

...

Enter the following commands:systemctl

#systemctl status --no-pager docker.service

...

#systemctl status --no-pager kubelet.service

Example

systemctl status --no-pager docker.service* docker.service - Docker Application Container Engine  

...

Enter the following commands:kubectl

#kubectl get no --no-headers | grep -v Ready

Output:  The command output shows nothing.kubectl

#kubectl get no --no-headers | wc -l

Output:  The command output shows the number of CaaS nodes.

...

Enter the following command:kubectl

#kubectl get po --no-headers --namespace=kube-system --field-selector status.phase!=Running

Output:  The command output shows nothing.

...

  • Helm is able to run a sample application:

helm list

Output:  rec  caas-infra.

Deployment Failures

...