defaults.yaml 893 B

123456789101112131415161718192021222324252627282930313233
  1. # This configuration file is used internally
  2. # to fill default settings for on-prem Ray clusters
  3. # bootstrapped by the Ray autoscaler.
  4. # For annotated examples, see the example yamls in this directory.
  5. cluster_name: default
  6. auth: {}
  7. upscaling_speed: 1.0
  8. idle_timeout_minutes: 5
  9. docker: {}
  10. # Defaults are empty to avoid any surprise changes to on-prem cluster's state.
  11. # Refer to example yamls for examples of ray installation in setup commands.
  12. initialization_commands: []
  13. setup_commands: []
  14. head_setup_commands: []
  15. worker_setup_commands: []
  16. head_start_ray_commands:
  17. - ray stop
  18. - ulimit -c unlimited; ray start --head --port=6379 --autoscaling-config=~/ray_bootstrap_config.yaml
  19. worker_start_ray_commands:
  20. - ray stop
  21. - ray start --address=$RAY_HEAD_IP:6379
  22. file_mounts: {}
  23. cluster_synced_files: []
  24. file_mounts_sync_continuously: false
  25. rsync_exclude: []
  26. rsync_filter: []