Running on Kubernetes

    There are example manifests in k8s directory.

    $ # create new namespace
    $ kubectl create ns alvd
    $ # change current namespace
    $ kubectl config set-context $(kubectl config current-context) --namespace=alvd
    $ # deploy Servers
    $ kubectl apply -f k8s/server.yaml
    
    $ # after Servers become ready, deploy Agents
    $ kubectl apply -f k8s/agent.yaml