Advertisement
Guest User

trove-guestagent.conf

a guest
Mar 6th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. /etc/trove/conf.d/trove-guestagent.conf
  2. [DEFAULT]
  3. debug = True
  4. nova_proxy_admin_user = ${GUEST_USERNAME}
  5. nova_proxy_admin_pass = O0N829R4MBfPQDARNduXxTiompAWKBJPeEeVqpqL
  6. nova_proxy_admin_tenant_name = service
  7. log_file = /var/log/trove-guestagent.log
  8. datastore_manager = ${SERVICE_TYPE}
  9.  
  10. #Dev/Test enviroment
  11. trove_auth_url = http://61.28.228.38:5000/v3
  12. command_process_timeout = 300
  13.  
  14. # ========== Configuration options for Swift ============
  15.  
  16. # The swift_url can be specified directly or fetched from Keystone catalog.
  17.  
  18. # To fetch from Keystone, comment out swift_url, and uncomment the others.
  19. # swift_url = http://10.0.0.1:8080/v1/AUTH_
  20. # Region name of this node. Default value is None.
  21. os_region_name = RegionOne
  22. # Service type to use when searching catalog.
  23. swift_service_type = object-store
  24.  
  25. # ========== Default Storage Options for backup ==========
  26.  
  27. # Default configuration for storage strategy and storage options
  28. # for backups
  29.  
  30. # For storage to Swift, use the following as defaults:
  31. storage_strategy = SwiftStorage
  32. storage_namespace = trove.common.strategies.storage.swift
  33.  
  34. # Default config options for storing backups to swift
  35. backup_swift_container = database_backups
  36. backup_use_gzip_compression = True
  37. backup_use_openssl_encryption = True
  38. backup_aes_cbc_key = "default_aes_cbc_key"
  39. backup_use_snet = False
  40. backup_chunk_size = 65536
  41. backup_segment_max_size = 2147483648
  42.  
  43. [oslo_messaging_rabbit]
  44. rabbit_host = 61.28.228.42
  45. rabbit_userid = openstack
  46. rabbit_password = IRsH34rGnfu2UF4ovVOHB02Ld9JPkMR14K3N7wd5
  47.  
  48. [mysql]
  49. # For mysql, the following are the defaults for backup, and restore:
  50. backup_strategy = InnoBackupEx
  51. backup_namespace = trove.guestagent.strategies.backup.mysql_impl
  52. restore_namespace = trove.guestagent.strategies.restore.mysql_impl
  53.  
  54. # Default configuration for mysql replication
  55. replication_strategy = MysqlBinlogReplication
  56. replication_namespace = trove.guestagent.strategies.replication.mysql_binlog
  57. #replication_user = slave_user
  58. #replication_password = slave_password
  59.  
  60. # Users to ignore for user create/list/delete operations
  61. ignore_users = os_admin, root
  62.  
  63. # Databases to ignore for db create/list/delete operations
  64. ignore_dbs = mysql, information_schema, performance_schema
  65.  
  66. [redis]
  67. # For redis, the following are the defaults for backup, and restore:
  68. backup_strategy = RedisBackup
  69. backup_namespace = trove.guestagent.strategies.backup.experimental.redis_impl
  70. restore_namespace = trove.guestagent.strategies.restore.experimental.redis_impl
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement