mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-06 08:47:04 +00:00
The base should really have the very bare minimum. Remove all redundant (at default-value) args and move the others to the specific topologyupdater kustomize component. This also makes these settings re-usable in user-specific overlays (that are not based on topologyupdater-daemonset).
25 lines
604 B
YAML
25 lines
604 B
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
labels:
|
|
app: nfd
|
|
name: nfd-topology-updater
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: nfd-topology-updater
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nfd-topology-updater
|
|
spec:
|
|
dnsPolicy: ClusterFirstWithHostNet
|
|
serviceAccount: nfd-topology-updater
|
|
containers:
|
|
- name: nfd-topology-updater
|
|
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
|
|
imagePullPolicy: Always
|
|
command:
|
|
- "nfd-topology-updater"
|
|
args:
|
|
- "-server=nfd-master:8080"
|