Advertisement
Guest User

Untitled

a guest
Jun 14th, 2021
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. ---
  2. # Kayobe global configuration.
  3.  
  4. ###############################################################################
  5. # Local path configuration (Ansible control host).
  6.  
  7. # Path to Kayobe configuration directory on Ansible control host, with an
  8. # environment path appended if kayobe_environment is set.
  9. kayobe_config_path: /home/tony/WSL/kayobe-wallaby2/config/kayobe/etc/kayobe
  10.  
  11. # Name of Kayobe environment to use. Default is $KAYOBE_ENVIRONMENT, or an
  12. # empty string if $KAYOBE_ENVIRONMENT is not set. Can also be set via the
  13. # --environment argument when invoking kayobe.
  14. #kayobe_environment:
  15.  
  16. # Path to Kayobe configuration directory on Ansible control host with an
  17. # environment path appended if kayobe_environment is set.
  18. #kayobe_env_config_path:
  19.  
  20. ###############################################################################
  21. # Remote path configuration (seed, seed-hypervisor and overcloud hosts).
  22.  
  23. # Base path for kayobe state on remote hosts.
  24. #base_path:
  25.  
  26. # Path in which to store configuration on remote hosts.
  27. #config_path:
  28.  
  29. # Path in which to cache downloaded images on remote hosts.
  30. #image_cache_path:
  31.  
  32. # Path on which to checkout source code repositories on remote hosts.
  33. #source_checkout_path:
  34.  
  35. # Path on which to create python virtualenvs on remote hosts.
  36. #virtualenv_path:
  37.  
  38. ###############################################################################
  39. # User configuration.
  40.  
  41. # User with which to access remote hosts. This user will be created if it does
  42. # not exist.
  43. kayobe_ansible_user: "cv-user"
  44.  
  45. ###############################################################################
  46. # OS distribution.
  47.  
  48. # OS distribution name. Valid options are "centos", "ubuntu". Default is
  49. # "centos".
  50. os_distribution: "ubuntu"
  51.  
  52. # OS release. Valid options are "8-stream" when os_distribution is "centos", or
  53. # "focal" when os_distribution is "ubuntu".
  54. os_release: "focal"
  55.  
  56. ###############################################################################
  57. # Dummy variable to allow Ansible to accept this file.
  58. workaround_ansible_issue_8743: yes
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement