Skip to content

Commit a2d2456

Browse files
author
Matthias Crauwels
committed
updated readme to add the repo_manage feature
added basic usage example for testing
1 parent 0824add commit a2d2456

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ This module is to install the MySQL tool called Orchestrator via puppet. Orchest
8181

8282
* The orchestrator deb/rpm package is available to puppet if `orchestrator::params::package_manage` is `true`.
8383

84+
* 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.
85+
8486
## Status
8587
Stable and in active development.
8688

examples/init.pp

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
node default {
2+
3+
$user = 'root'
4+
$password = 'root'
5+
6+
class { '::mysql::server':
7+
root_password => "%${password}%",
8+
remove_default_accounts => true,
9+
} ->
10+
class { '::orchestrator':
11+
config_override => {
12+
'MySQLOrchestratorHost' => '127.0.0.1',
13+
},
14+
}
15+
16+
}

0 commit comments

Comments
 (0)