config.yaml 506 B

12345678910111213141516
  1. {% macro config(values) -%}
  2. {# A default config file that users will need to edit #}
  3. # It will be updated automatically on every start based on the configuration
  4. name: {{ values.fscrawler.job_name }}
  5. elasticsearch:
  6. username: elastic
  7. password: <password>
  8. nodes:
  9. - url: http://<node_ip>:<port>
  10. {%- if values.network.rest_port.bind_mode != '' %}
  11. rest:
  12. url: http://0.0.0.0:{{ values.network.rest_port.port_number }}/fscrawler
  13. # Optionally
  14. # enable_cors: true/false
  15. {%- endif %}
  16. {%- endmacro %}