Versions Compared

Key

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

...

You can confirm the status of the EdgeX microservices using the kubectl get pod command on the master node. (EdgeX micro-service containers are grouped into one Kubernetes "pod" per node.)

admin@master:~$ kubectl get pod
NAME READY STATUS RESTARTS AGE
edgex-edge1-57859dcdff-k8j6g 20/20 Running 16 1m31s
edgex-edge2-5678d8fbbf-q988v 20/20 Running 16 1m26s

...

Confirming Node and Service Status

The kubectl command can be used to check the status of most cluster components. kubectl get node will show the health of the master and edge nodes, and kubectl get pod will show the overall status of the EdgeX services. The kubectl describe pod pod-name command can be used to get a more detailed report on the status of a particular pod.

Accessing Logs

Maintenance

...