apiVersion: apps/v1 kind: Deployment metadata: labels: app: nfd name: nfd-master spec: replicas: 1 selector: matchLabels: app: nfd-master template: metadata: labels: app: nfd-master spec: serviceAccount: nfd-master tolerations: [] containers: - name: nfd-master image: k8s.gcr.io/nfd/node-feature-discovery:v0.9.0 imagePullPolicy: IfNotPresent livenessProbe: exec: command: ["/usr/bin/grpc_health_probe", "-addr=:8080"] initialDelaySeconds: 10 periodSeconds: 10 readinessProbe: exec: command: ["/usr/bin/grpc_health_probe", "-addr=:8080"] initialDelaySeconds: 5 periodSeconds: 10 failureThreshold: 10 command: - "nfd-master" args: [] volumeMounts: [] volumes: []