diff options
Diffstat (limited to 'meta-openstack/recipes-support/salt/files/cloud')
| -rw-r--r-- | meta-openstack/recipes-support/salt/files/cloud | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/meta-openstack/recipes-support/salt/files/cloud b/meta-openstack/recipes-support/salt/files/cloud new file mode 100644 index 0000000..2ea54f1 --- /dev/null +++ b/meta-openstack/recipes-support/salt/files/cloud | |||
| @@ -0,0 +1,94 @@ | |||
| 1 | # This file should normally be installed at: /etc/salt/cloud | ||
| 2 | |||
| 3 | |||
| 4 | ########################################## | ||
| 5 | ##### VM Defaults ##### | ||
| 6 | ########################################## | ||
| 7 | |||
| 8 | # Set the size of minion keys to generate, defaults to 2048 | ||
| 9 | # | ||
| 10 | #keysize: 2048 | ||
| 11 | |||
| 12 | |||
| 13 | # Set the default os being deployed. This sets which deployment script to | ||
| 14 | # apply. This argument is optional. | ||
| 15 | # | ||
| 16 | #script: bootstrap-salt | ||
| 17 | |||
| 18 | |||
| 19 | ########################################## | ||
| 20 | ##### Logging Settings ##### | ||
| 21 | ########################################## | ||
| 22 | |||
| 23 | # The location of the master log file | ||
| 24 | # | ||
| 25 | #log_file: /var/log/salt/cloud | ||
| 26 | |||
| 27 | |||
| 28 | # The level of messages to send to the console. | ||
| 29 | # One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'. | ||
| 30 | # | ||
| 31 | # Default: 'info' | ||
| 32 | # | ||
| 33 | #log_level: info | ||
| 34 | |||
| 35 | |||
| 36 | # The level of messages to send to the log file. | ||
| 37 | # One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'. | ||
| 38 | # | ||
| 39 | # Default: 'info' | ||
| 40 | # | ||
| 41 | #log_level_logfile: info | ||
| 42 | |||
| 43 | |||
| 44 | # The date and time format used in log messages. Allowed date/time formating | ||
| 45 | # can be seen here: | ||
| 46 | # | ||
| 47 | # http://docs.python.org/library/time.html#time.strftime | ||
| 48 | # | ||
| 49 | #log_datefmt: '%Y-%m-%d %H:%M:%S' | ||
| 50 | |||
| 51 | |||
| 52 | # The format of the console logging messages. Allowed formatting options can | ||
| 53 | # be seen here: | ||
| 54 | # | ||
| 55 | # http://docs.python.org/library/logging.html#logrecord-attributes | ||
| 56 | # | ||
| 57 | # Console log colors are specified by these additional formatters: | ||
| 58 | # | ||
| 59 | # %(colorlevel)s | ||
| 60 | # %(colorname)s | ||
| 61 | # %(colorprocess)s | ||
| 62 | # %(colormsg)s | ||
| 63 | # | ||
| 64 | # Since it is desirable to include the surrounding brackets, '[' and ']', in | ||
| 65 | # the coloring of the messages, these color formatters also include padding as | ||
| 66 | # well. Color LogRecord attributes are only available for console logging. | ||
| 67 | # | ||
| 68 | #log_fmt_console: '[%(levelname)-8s] %(message)s' | ||
| 69 | #log_fmt_logfile: '%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s' | ||
| 70 | |||
| 71 | |||
| 72 | # Logger levels can be used to tweak specific loggers logging levels. | ||
| 73 | # For example, if you want to have the salt library at the 'warning' level, | ||
| 74 | # but you still wish to have 'salt.modules' at the 'debug' level: | ||
| 75 | # | ||
| 76 | # log_granular_levels: | ||
| 77 | # 'salt': 'warning', | ||
| 78 | # 'salt.modules': 'debug' | ||
| 79 | # 'saltcloud': 'info' | ||
| 80 | # | ||
| 81 | #log_granular_levels: {} | ||
| 82 | |||
| 83 | |||
| 84 | ########################################## | ||
| 85 | ##### Misc Defaults ##### | ||
| 86 | ########################################## | ||
| 87 | |||
| 88 | # Whether or not to remove the accompanying SSH key from the known_hosts file | ||
| 89 | # when an instance is destroyed. | ||
| 90 | # | ||
| 91 | # Default: 'False' | ||
| 92 | # | ||
| 93 | #delete_sshkeys: False | ||
| 94 | |||
