Назад | Перейти на главную страницу

Как передать urlencoded строку в jenkins api с помощью ansible?

Я должен передать ценность jenkins api. Но jenkins api принимает значение в urlencode. Я пробовал использовать фильтр urlencode в недоступном, но дает ошибку.

- name: Add credential to add node
  uri:
      body: |
          json={
              "": "0",
              "credentials": {
                "scope": "GLOBAL",
                "id": "jenkins_linux_slave2_auth",
                "username": "jenkins",
                "password": "",
                "privateKeySource": {
                  "stapler-class": "com.cloudbees.jenkins.plugins.sshcredentials.impl.BasicSSHUserPrivateKey$DirectEntryPrivateKeySource",
                  "privateKey": '{{"URL ENCODED STRING"|urlencode}}'
                },
                "description": "Jenkins Linux Slave2 Authentication",
                "stapler-class": "com.cloudbees.jenkins.plugins.sshcredentials.impl.BasicSSHUserPrivateKey"
              }
            }
      force_basic_auth: yes
      method: POST
      password: "{{ jenkins_user_token }}"
      status_code: 302
      url: "{{ jenkins_url }}/credentials/store/system/domain/_/createCredentials"
      user: "{{ jenkins_user }}"
      validate_certs: no
  tags:
      - credential

Эта игра дает ошибку

TASK [jenkins_config : Add credential to add node] ************************************************************************************************************************************************************************************
task path: /home/nile2691/ansible_playbooks/roles/jenkins_config/tasks/main.yaml:34
fatal: [localhost]: FAILED! => {
    "msg": "template error while templating string: no filter named 'urlencode'. String: json={\n    \"\": \"0\",\n    \"credentials\": {\n      \"scope\": \"GLOBAL\",\n      \"id\": \"jenkins_linux_slave2_auth\",\n      \"username\": \"jenkins\",\n      \"password\": \"\",\n      \"privateKeySource\": {\n        \"stapler-class\": \"com.cloudbees.jenkins.plugins.sshcredentials.impl.BasicSSHUserPrivateKey$DirectEntryPrivateKeySource\",\n        \"privateKey\": '{{\"URL ENCODED STRING\"|urlencode}}'\n      },\n      \"description\": \"Jenkins Linux Slave2 Authentication\",\n      \"stapler-class\": \"com.cloudbees.jenkins.plugins.sshcredentials.impl.BasicSSHUserPrivateKey\"\n    }\n  }\n"
}

Есть ли другой способ передать значение в urlencode в jenkins?

Появляется сообщение об ошибке:

нет фильтра с именем 'urlencode'

Если вы посмотрите Вот, вы заметите, что он поддерживается в Jinja2 версии 2.7+.
Пожалуйста, обновите свой пакет Jinja2.