Simplify template
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
parent
b1213280e0
commit
690d66f275
@ -118,7 +118,11 @@
|
||||
|
||||
- name: Add to dictionary
|
||||
ansible.builtin.set_fact:
|
||||
cluster: "{{ cluster | combine( { 'mastertoken': {{ k3s_token.contents | b64decode }} }, { '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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user