...

Text file src/edge-infra.dev/config/pallets/sds/node-feature-discovery/base/patches/nfd-worker-patch.yaml

Documentation: edge-infra.dev/config/pallets/sds/node-feature-discovery/base/patches

     1apiVersion: apps/v1
     2kind: DaemonSet
     3metadata:
     4  name: nfd-worker
     5spec:
     6  template:
     7    spec:
     8      priorityClassName: edge-p5-non-critical-infra
     9      containers:
    10      - name: nfd-helper
    11        image: bzl://cmd/sds/nfd-helper:container_push
    12        volumeMounts:
    13        - name: ien-version
    14          mountPath: /ien-version
    15        - name: features-d
    16          mountPath: /opt/labels
    17      - name: nfd-worker
    18        image: bzl://hack/deps:node_feature_discovery_container_push
    19        resources:
    20          limits:
    21            cpu: "50m"
    22            memory: 128Mi
    23          requests:
    24            cpu: 10m
    25            memory: 16Mi
    26        securityContext:
    27      volumes:
    28      - name: features-d
    29        emptyDir: {}
    30        hostPath:
    31      - name: ien-version
    32        hostPath:
    33          type: FileOrCreate
    34          path: /ien-version
    35      imagePullSecrets:
    36      - name: edge-docker-pull-secret

View as plain text