mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-10 02:37:11 +00:00
Use the "single-dash" version of nfd command line flags in deployment files and e2e-tests. No impact in functionality, just aligns with documentation and other parts of the codebase.
25 lines
496 B
YAML
25 lines
496 B
YAML
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: nfd-master
|
|
labels:
|
|
app: nfd
|
|
spec:
|
|
completions: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nfd-prune
|
|
spec:
|
|
serviceAccount: nfd-master
|
|
tolerations: []
|
|
containers:
|
|
- name: nfd-master
|
|
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
|
|
imagePullPolicy: Always
|
|
command:
|
|
- "nfd-master"
|
|
args:
|
|
- "-prune"
|
|
restartPolicy: Never
|
|
|