Try different templating syntax
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
Danny Bessems 2022-04-20 11:52:07 +02:00
parent 6ccc976054
commit 0bf389b333
1 changed files with 1 additions and 4 deletions

View File

@ -116,12 +116,9 @@
src: /var/lib/rancher/k3s/server/token
register: k3s_token
- ansible.builtin.debug:
var: k3s_token
- name: Add to dictionary
ansible.builtin.set_fact:
cluster: "{{ cluster | combine( { 'mastertoken': k3s_token }, { 'apiurl': \"https://{{ cluster.virtualip | ansible.utils.ipaddr('address') }}:6443\" } ) }}"
cluster: "{{ cluster | combine( { 'mastertoken': {{ k3s_token.contents | b64decode }} }, { 'apiurl': {{ 'https://' + {{ cluster.virtualip | ansible.utils.ipaddr('address') + ':6443' }} } ) }}"
when: cluster.mastertoken is not defined