-6ren">
gpt4 book ai didi

jenkins - 当jenkins重写其配置时,如何使这个ansible jenkins脚本具有幂等性?

转载 作者:行者123 更新时间:2023-12-02 09:30:14 27 4
gpt4 key购买 nike

我有一个 ansible 剧本来部署 jenkins,其中 jenkins config.xml jinja2 模板文件包含以下用于 AD 身份验证的代码片段:

<securityRealm class="hudson.plugins.active_directory.ActiveDirectorySecurityRealm" plugin="<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="b6d7d5c2dfc0d39bd2dfc4d3d5c2d9c4cff68798858f" rel="noreferrer noopener nofollow">[email protected]</a>">
<domain>{{ ldap_hostname }}/domain>
<bindName>{{ ldap_bind_user }}</bindName>
<bindPassword>{{ ldap_password }}</bindPassword>
<server>{{ ldap_hostname }}:{{ ldap_port }}</server>
<groupLookupStrategy>RECURSIVE</groupLookupStrategy>
<removeIrrelevantGroups>false</removeIrrelevantGroups>
</securityRealm>

{{ ldap_password }} 是来自保管库的明文密码。

问题是,当 jenkins 在部署 config.xml 后启动时,它会通过用密码哈希替换明文密码来重写它。 (哈希值似乎取决于目标主机,因为我们在不同的虚拟机上获得不同的哈希值)。虽然这通常是一件好事,但它使得 playbook 的每次执行都将模板操作标记为已更改。

如何使这个播放脚本幂等?

最佳答案

我真的想不出一个干净的方法来做到这一点,所以这可能会让人觉得有点折磨。

这里有几个选项,具体取决于您想要的“正确”程度。

首先,您可以简单地告诉 Ansible 您不关心是否对此文件进行任何更改,因此始终标记为未更改(绿色)。您可以在任务上使用 changed_when: False 来执行此操作。

或者,您可以说您只想在第一次运行时模板化此文件,之后它就不再由 Ansible 控制了。这种方法对于引导安装然后想要管理自己的文件的东西很有用,并且您永远不会考虑再次更改它们。为此,你可以逃避类似的事情:

- name: check if jenkins config.xml file is there
stat:
path: path/to/config.xml
register: config-xml_stat

- name: template jenkins config.xml if not already there
template:
src: path/to/config.xml.j2
dest: path/to/config.xml
when: config-xml_stat.exists == false

考虑一下您正在模板化某些内容的问题,然后积极期待特定行在 Ansible 控制之外发生变化。这里的另一个选择是将文件模板化到与 Jenkins 预期不同的文件路径(然后可以像平常一样幂等),将其与 Jenkins 正在使用的文件进行比较,然后如果除该行之外的任何内容不同复制 Jenkins 文件的顶部。您可以使用类似的东西来做到这一点:

- name: template jenkins config.xml.template
template:
src: path/to/config.xml.j2
dest: path/to/config.xml.template

# We are expecting bindPassword to have changed so we can exclude this from the diff line count
- name: diff jenkins config.xml and config.xml.template
shell: diff path/to/config.xml.template path/to/config.xml | grep -v bindPassword | wc -l
register: config-xml_diff

# Diff will also output 2 extra lines that we don't care about. If there's more lines than this then we need to retemplate the config.xml
- name: template jenkins config.xml
template:
src: path/to/config.xml.j2
dest: path/to/config.xml
when: config-xml_diff.stdout != 2

最后一个有点尴尬和笨拙,但“更正确”,因为它正在主动检查文件的更改是否超出我们的预期,如果是,则重新模板化它。

如果您决定走第三条路线,那么我建议结合检查,看看它是否存在于第二个选项中,以使其在所做的事情中更加明显。如果没有它,如果 config.xml 文件不存在,那么您的 diff 任务将输出一行(diff: config.xml: No such file or directory),这仍然意味着您的第三个任务的条件评估不错,但有点误导。

关于jenkins - 当jenkins重写其配置时,如何使这个ansible jenkins脚本具有幂等性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33891991/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com