K8s pod connection with camera connected in same network

5/28/2020

There is a Camera which is connected in a network switch . How can we connect the application to that camera through kubernetes pod. I have a pod running which should take video ingestion from that camera. How can this be achieved through application pod.

-- vats
kubernetes

1 Answer

5/28/2020

Kubernetes is used to run containerized applications. So you should first write the application to connect to camera and package that application as docker image and then you can run it as a pod which in turn spin your container in kubernetes cluster

-- slashpai
Source: StackOverflow