| 12345678910111213141516171819202122232425262728293031323334 | apiVersion: apps/v1kind: DaemonSetmetadata:  name: netclient  labels:    app: netclientspec:  selector:    matchLabels:      app: netclient  template:    metadata:      labels:        app: netclient    spec:      hostNetwork: true      containers:      - name: netclient        image: gravitl/netclient:v0.17.1        env:        - name: TOKEN          value: "TOKEN_VALUE"        volumeMounts:        - mountPath: /etc/netclient          name: etc-netclient        securityContext:          privileged: true      volumes:      - hostPath:          # change path for every netclient deployed, e.g. /etc/netclient-1, /etc/netclient-2, etc.          # alternatively "netclient join" can be run from inside the container for new networks          path: /etc/netclient          type: DirectoryOrCreate        name: etc-netclient
 |