Ansible:将带有 unicode 的列表转换为字符串列表(并比较它们)

Ansible: convert a list with unicode to a list of strings (and compare them)

我创建了一个包含所有 ansible 组主机的列表。 但是当我打印列表时,它包含 unicode 字符。 u'text' 而不是 "text" 有什么有效的方法可以 remove/convert 这个。 网上看了其他例子,没成功

使用 unicode 字符的当前(错误)输出:

ok: [server.name] => {
"msg": " [u'all', u'coaster', u'aes', u'curo, u'dert', u'tomcatdeploy', u'implus-app', u'domain-top', u'tp-general', u'cdaes01', u'dicco-acc' .....

这应该具有与以下列表相同的格式。因为我想将它们与 diff 进行比较。 列表中的值本身不同,但格式应如下:

ok: [server.name] => {
"msg": [
    "tools", 
    "tools-api", 
    "adr-app", 
    "adr-app-e2j", 
    "aec", 
    "aec-copy", 
    "aes", 
    "aes1", 
    "aes2", 
    "aes3", 
    "ais", 
    "apiman", 
    "apiman-gateway-poc", 
    "apiman-manager", 
    "apiman-manager-poc", 
    "apollo-beheer-aangiftes", ...

目前我正在使用以下代码获取列表:

- name: register groups
  set_fact:
    inventory_groups: []  # empty list
    inventory_group_keys: "{{ groups.keys() |to_yaml}}" #|list

- name: clean white spaces from list
  set_fact:
    inventory_groups: "{{ inventory_groups}} + ['{{item.strip()}}']"
  with_items: "{{inventory_group_keys[1:-2].split(',')}}"

- name: print inventory_groups from local host for debugging
  debug:
    msg: " {{ inventory_groups }}"

第二个列表是使用 AWX api 获取的。 另请注意,由于某种原因,在 [ bracket 之前似乎有一个 " 。 就像下面突出显示的那样:

"msg": " [u'all',....

第一个列表中没有。知道这是为什么。我认为这会在以后比较它们时出现问题。 我创建列表的方式是相同的。

这最终解决了我的大部分问题。

- name: print list
  debug:
    msg: "{{ groups | list }}"

给出以下列表:

ok: [server.name] => {
    "msg": [
        "all", 
        "coster", 
        "ius1", 
        "curo", 
        "derti", 
        "tomcatdeploy", 
        "implus-app", 
        "domain", 
        "tpgeneral", 
        "cdaes", 
        "diccop-acc", 
        "cdaes", 
         ....