updated readme to add the repo_manage feature
added basic usage example for testing
This commit is contained in:
Родитель
0824addfd9
Коммит
a2d2456518
|
@ -81,6 +81,8 @@ This module is to install the MySQL tool called Orchestrator via puppet. Orchest
|
|||
|
||||
* The orchestrator deb/rpm package is available to puppet if `orchestrator::params::package_manage` is `true`.
|
||||
|
||||
* Puppet will manage the [Orchestrator Packagecloud repo](https://packagecloud.io/github/orchestrator) if `orchestrator::params::repo_manage` is `true`. *Note*: this functionality will require the [computology/packagecloud]( https://forge.puppet.com/computology/packagecloud) module dependency.
|
||||
|
||||
## Status
|
||||
Stable and in active development.
|
||||
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
node default {
|
||||
|
||||
$user = 'root'
|
||||
$password = 'root'
|
||||
|
||||
class { '::mysql::server':
|
||||
root_password => "%${password}%",
|
||||
remove_default_accounts => true,
|
||||
} ->
|
||||
class { '::orchestrator':
|
||||
config_override => {
|
||||
'MySQLOrchestratorHost' => '127.0.0.1',
|
||||
},
|
||||
}
|
||||
|
||||
}
|
Загрузка…
Ссылка в новой задаче