码迷,mamicode.com
首页 > 其他好文 > 详细

saltstack之jinja,解决生产发布问题

时间:2018-07-02 11:51:00      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:for   分发   情况   工作   问题   mod   tst   file   需求   

最近换了工作,刚入职领导给我一个听着特复杂的需求,要实现自动发布:
需求是这样的:一个程序包,分发到60台机器上,每台机器有两个这样的应用,但是路径和程序名都不一样。即分发过去全部都要重命名,当我了解了环境的详细情况之后,决定采用saltstack的jinja模版的方式,如下:

{% if  grains[‘fqdn_ip4‘][0] == ‘10.1.10.86‘ %}  #先判断ip,然后set2个不同的变量
  {% set motd = [‘/opt/eth-btc-match/eth2btc‘, ‘/opt/zsc-eth-match/zsc2eth‘] %}
    {% for motdfile in motd %}  #通过for循环,取出
{{ motdfile }}:
  file.managed:
    - source: salt://match/files/CMatchModule
    - backup: minion
    {% endfor %}
{% elif  grains[‘fqdn_ip4‘][0] == ‘10.1.10.88‘ %}
  {% set motd = [‘/opt/zec-btc-match/zec2btc‘, ‘/opt/zec-eth-match/zec2eth‘] %}
    {% for motdfile in motd %}
{{ motdfile }}:
  file.managed:
    - source: salt://match/files/CMatchModule
    - backup: minion
    {% endfor %}
{% elif  grains[‘fqdn_ip4‘][0] == ‘10.1.10.89‘ %}
  {% set motd = [‘/opt/ven-btc-match/ven2btc‘, ‘/opt/ven-eth-match/ven2eth‘] %}
    {% for motdfile in motd %}
{{ motdfile }}:
  file.managed:
    - source: salt://match/files/CMatchModule
    - backup: minion  

 此处省略很多

 {% elif  grains[‘fqdn_ip4‘][0] == ‘10.1.10.217‘ %}
  {% set motd = [‘/opt/luc-eth-match/luc2eth‘, ‘/opt/sead-usdt-match/sead2usdt‘] %}
    {% for motdfile in motd %}
{{ motdfile }}:
  file.managed:
    - source: salt://match/files/CMatchModule
    - backup: minion
    {% endfor %}
{% elif  grains[‘fqdn_ip4‘][0] == ‘10.1.10.218‘ %}
  {% set motd = [‘/opt/bnb-usdt-match/bnb2usdt‘, ‘/opt/ht-usdt-match/ht2usdt‘] %}
    {% for motdfile in motd %}
{{ motdfile }}:
  file.managed:
    - source: salt://match/files/CMatchModule
    - backup: minion
    {% endfor %}
{% endif %}

saltstack之jinja,解决生产发布问题

标签:for   分发   情况   工作   问题   mod   tst   file   需求   

原文地址:http://blog.51cto.com/9682938/2134938

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!