You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
356 B

  1. apiVersion: v1
  2. kind: ConfigMap
  3. metadata:
  4. name: node-feature-discovery-worker-conf
  5. namespace: {{ node_feature_discovery_namespace }}
  6. data:
  7. {% if node_feature_discovery_worker_config %}
  8. nfd-worker.conf: |-
  9. {{ node_feature_discovery_worker_config | to_yaml(indent=2, width=1337) | indent(width=4) }}
  10. {% else %}
  11. nfd-worker.conf: "null"
  12. {% endif %}