Compare commits
No commits in common. "14c3ebe2ccccbd37de9756ffc47320cd3252bd31" and "6cfac8f302019e854e4bb5c3dc68c401828b462c" have entirely different histories.
14c3ebe2cc
...
6cfac8f302
@ -11,7 +11,6 @@ web_proxy_internal_ip: INTERNAL_VPS_IP
|
|||||||
|
|
||||||
# Core infrastructure #
|
# Core infrastructure #
|
||||||
## MetalLB ##
|
## MetalLB ##
|
||||||
metallb_enabled: true
|
|
||||||
metallb_advertisement_type: "BGP"
|
metallb_advertisement_type: "BGP"
|
||||||
metallb_address_pool:
|
metallb_address_pool:
|
||||||
- 192.168.250.0/24
|
- 192.168.250.0/24
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
- name: Set ddclient_key
|
- name: Set ddclient_key
|
||||||
set_fact:
|
set_fact:
|
||||||
dkim_keys: "{{ dkim_container_output.container.Output | from_yaml }}"
|
dkim_keys: "{{ dkim_container_output.ansible_facts.docker_container.Output | from_yaml }}"
|
||||||
when: dkim_private_key_test_grep.stdout == '0' or dkim_public_key_test_grep.stdout == '0'
|
when: dkim_private_key_test_grep.stdout == '0' or dkim_public_key_test_grep.stdout == '0'
|
||||||
|
|
||||||
- name: Show DKIM private key
|
- name: Show DKIM private key
|
||||||
|
@ -25,12 +25,9 @@
|
|||||||
register: knot_container_output
|
register: knot_container_output
|
||||||
when: k8s_tsig_test_grep.stdout == '0'
|
when: k8s_tsig_test_grep.stdout == '0'
|
||||||
|
|
||||||
- debug:
|
|
||||||
msg: "{{ knot_container_output }}"
|
|
||||||
|
|
||||||
- name: Set k8s_key
|
- name: Set k8s_key
|
||||||
set_fact:
|
set_fact:
|
||||||
k8s_key: "{{ knot_container_output.container.Output | from_yaml }}"
|
k8s_key: "{{ knot_container_output.ansible_facts.docker_container.Output | from_yaml }}"
|
||||||
when: k8s_tsig_test_grep.stdout == '0'
|
when: k8s_tsig_test_grep.stdout == '0'
|
||||||
|
|
||||||
- name: Show k8s TSIG key
|
- name: Show k8s TSIG key
|
||||||
@ -57,7 +54,7 @@
|
|||||||
|
|
||||||
- name: Set ddclient_key
|
- name: Set ddclient_key
|
||||||
set_fact:
|
set_fact:
|
||||||
ddclient_key: "{{ ddclient_container_output.container.Output | from_yaml }}"
|
ddclient_key: "{{ ddclient_container_output.ansible_facts.docker_container.Output | from_yaml }}"
|
||||||
when: ddclient_tsig_public_key_test_grep.stdout == '0' or ddclient_tsig_private_key_test_grep.stdout == '0'
|
when: ddclient_tsig_public_key_test_grep.stdout == '0' or ddclient_tsig_private_key_test_grep.stdout == '0'
|
||||||
|
|
||||||
- name: Show ddclient TSIG public key file
|
- name: Show ddclient TSIG public key file
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
- name: Set VAPID keys fact
|
- name: Set VAPID keys fact
|
||||||
set_fact:
|
set_fact:
|
||||||
vapid_keys: "{{ vapid_container_output.container.Output | from_yaml }}"
|
vapid_keys: "{{ vapid_container_output.ansible_facts.docker_container.Output | from_yaml }}"
|
||||||
when: vapid_private_key_test_grep.stdout == '0' or vapid_public_key_test_grep.stdout == '0'
|
when: vapid_private_key_test_grep.stdout == '0' or vapid_public_key_test_grep.stdout == '0'
|
||||||
|
|
||||||
- name: Show VAPID private key
|
- name: Show VAPID private key
|
||||||
|
Loading…
Reference in New Issue
Block a user