On Thu, Sep 20, 2012 at 3:37 PM, Garrett Honeycutt wrote:
No need at all to use a different puppet master, you could just use
environments[1]. When you want to test a system again a different
environment, staging in this example, you can run `puppet agent -t
--environment=staging`.
No need at all to use a different puppet master, you could just use
environments[1]. When you want to test a system again a different
environment, staging in this example, you can run `puppet agent -t
--environment=staging`.
all my templates and put hiera variables for everything.
Hiera[2] is meant to solve this. You might have staging.yaml and
production.yaml that specify values for mysql_innodb_buffer_pool_size.
In your code you could have
$innodb_buffer_pool_size = hiera('mysql_innodb_buffer_pool_size')
and then use <%= innodb_buffer_pool_size %> in a template for your my.cnf.
Can one call hiera() from within the ERB templates?production.yaml that specify values for mysql_innodb_buffer_pool_size.
In your code you could have
$innodb_buffer_pool_size = hiera('mysql_innodb_buffer_pool_size')
and then use <%= innodb_buffer_pool_size %> in a template for your my.cnf.
- Gonzalo
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.