Foreman架构的引入10-hostgroup如何转换为本地的fact

在Foreman上可以根据业务逻辑设置多个主机组(Host Groups),并且可以将不同的节点加入到不同的主机组,这样在每次操作“puppet run”的时候,只需要在搜索按钮里搜索对应的主机组即可找到里面包含的所有节点,如下图所示

Foreman安装

但是,foreman目前在puppet run上对mcollective的集成度很低,基本就是只能运行一条命令。那么如果要在shell终端上通过mco命令去对这些自定义的Host Groups进行操作应该如何做呢。答案是转换为facter。

自定义facter有四种方式,如下:http://kisspuppet.com/2014/03/30/puppet_learning_base10/

这里介绍第三种方式将Foreman上设置的主机组(Host Groups)转换为每个节点自己的facter

1、首先创建主机组

Foreman安装

2、查看节点的主机组信息

其实相当于自定义了一个外部变量,变量名叫hostgroup,值为节点加入的组名称

Foreman安装

Foreman安装

3、编写一个fact模块

模块的功能就是将Foreman上的变量“hostgroup”落地到每个节点的/etc/facter/facts.d/${hostname}.txt文件中,内容为fact的标准格式。

  1. #模块结构
  2. [root@puppetmaster162 modules]# tree fact
  3. fact
  4. ├── files
  5. ├── manifests
  6. ├── config.pp
  7. ├── fact.pp
  8. ├── init.pp
  9. └── params.pp
  10. └── templates
  11. └── hostgroup.erb
  12. 3 directories, 5 files
  13. #模块主配置文件init.pp
  14. [root@puppetmaster162 modules]# cat fact/manifests/init.pp
  15. class fact {
  16. tag("puppet_env")
  17. require fact::params
  18. $hostgroup_erb = $fact::params::hostgroup_erb
  19. include fact::config
  20. include fact::facter
  21. }
  22. #创建目录以及文件
  23. [root@puppetmaster162 modules]# cat fact/manifests/config.pp
  24. class fact::config{
  25. file { '/etc/facter' :
  26. ensure => directory,
  27. owner => 'root',
  28. group => 'root',
  29. mode => '0644',
  30. }
  31. file { '/etc/facter/facts.d' :
  32. ensure => directory,
  33. owner => 'root',
  34. group => 'root',
  35. mode => '0644',
  36. require => File['/etc/facter']
  37. }
  38. file{ "/etc/facter/facts.d/$hostname.txt":
  39. owner => "root",
  40. group => "root",
  41. mode => 0400,
  42. content => template($fact::hostgroup_erb),
  43. require => File['/etc/facter/facts.d'],
  44. }
  45. }
  46. #定义变量
  47. [root@puppetmaster162 modules]# cat fact/manifests/params.pp
  48. class fact::params{
  49. $hostgroup_erb = 'fact/hostgroup.erb'
  50. }
  51. #定义fact模板(原因可参考http://kisspuppet.com/2013/11/10/mcollective-middleware/)
  52. [root@puppetmaster162 manifests]# cat fact.pp
  53. class fact::facter{
  54. file{"/etc/mcollective/facts.yaml":
  55. owner => root,
  56. group => root,
  57. mode => 0440,
  58. loglevel => debug, # reduce noise in Puppet reports
  59. content => inline_template('<%= scope.to_hash.reject { |k,v| k.to_s =~ /(uptime.*|path|timestamp|free|.*password.*|.*psk.*|.*key)/ }.to_yaml %>'),
  60. }
  61. }
  62. #设置文件模板
  63. [root@puppetmaster162 modules]# cat fact/templates/hostgroup.erb
  64. hostgroup=<%= @hostgroup %>
  65. foreman_env=<%= @foreman_env %>

4、Foreman上管理主机组和模块fact

先导入类,然后在主机组里进行关联即可,由于fact模块是针对所有主机的,建议关联到1级主机组,加入的节点会自动继承。关联完成后的效果如下

Foreman安装

Foreman安装

5、在Foreman上对两个节点执行“puppet run”操作

Foreman安装

6、查看facter信息是否生成

  1. [root@foreman163 ~]# facter hostgroup
  2. prd
  3. [root@puppetmaster162 ~]# facter hostgroup
  4. prd/kisspuppet

7、通过mco命令结合fact进行过滤查看

  1. [root@puppetmaster162 ~]# mco ping -F hostgroup=prd
  2. foreman163.kisspuppet.com time=98.55 ms
  3. ---- ping statistics ----
  4. 1 replies max: 98.55 min: 98.55 avg: 98.55
  5. [root@puppetmaster162 ~]# mco ping -F hostgroup=prd/kisspuppet
  6. puppetmaster162.kisspuppet.com time=94.14 ms
  7. ---- ping statistics ----
  8. 1 replies max: 94.14 min: 94.14 avg: 94.14
  9. [root@puppetmaster162 ~]# mco puppet -v runonce -F hostgroup=prd/kisspuppet
  10. Discovering hosts using the mc method for 2 second(s) .... 1
  11. * [ ============================================================> ] 1 / 1
  12. puppetmaster162.kisspuppet.com : OK
  13. {:summary=> "Started a Puppet run using the 'puppet agent --test --color=false --splay --splaylimit 30' command"}
  14. ---- rpc stats ----
  15. Nodes: 1 / 1
  16. Pass / Fail: 1 / 0
  17. Start Time: Thu Dec 18 15:13:09 +0800 2014
  18. Discovery Time: 2004.07ms
  19. Agent Time: 85.19ms
  20. Total Time: 2089.26ms

注:以上方式只是提供了一种思路,更多的方式还需要根据具体的实际环境而改变,总之一点,fact很强大,看你怎么用。