mirror of
https://github.com/nexodus-io/nexodus.git
synced 2026-04-22 16:17:10 +08:00
Skip tls verification for qa/dev
Signed-off-by: Brent Salisbury <bsalisbu@redhat.com>
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
# Start Nexodus agents
|
||||
- hosts: nexodusNodes
|
||||
vars_files:
|
||||
- vars.yml
|
||||
roles:
|
||||
- role: start-nexodus-agent
|
||||
@@ -1,6 +0,0 @@
|
||||
# Stop Nexodus agents
|
||||
- hosts: nexodusNodes
|
||||
vars_files:
|
||||
- vars.yml
|
||||
roles:
|
||||
- role: stop-nexodus-agent
|
||||
@@ -91,6 +91,7 @@
|
||||
NEXD_LOGLEVEL=debug nexd \
|
||||
--username '{{ nexodus_auth_uid }}' \
|
||||
--password '{{ nexodus_auth_password }}' \
|
||||
--insecure-skip-tls-verify \
|
||||
{{ nexodus_url }} >> nexodus-logs.txt 2>&1 &
|
||||
when: "'nexodusNodes' in group_names"
|
||||
|
||||
@@ -106,6 +107,7 @@
|
||||
NEXD_LOGLEVEL=debug nexd \
|
||||
--username '{{ nexodus_auth_uid }}' \
|
||||
--password '{{ nexodus_auth_password }}' \
|
||||
--insecure-skip-tls-verify \
|
||||
--relay-only \
|
||||
{{ nexodus_url }} >> nexodus-logs.txt 2>&1 &
|
||||
when: "'nexodusRelayNodes' in group_names"
|
||||
when: "'nexodusRelayNodes' in group_names"
|
||||
|
||||
@@ -86,5 +86,6 @@
|
||||
NEXD_LOGLEVEL=debug nexd \
|
||||
--username '{{ nexodus_auth_uid }}' \
|
||||
--password '{{ nexodus_auth_password }}' \
|
||||
--insecure-skip-tls-verify \
|
||||
relay \
|
||||
{{ nexodus_url }} >> nexodus-logs.txt 2>&1 &
|
||||
{{ nexodus_url }} >> nexodus-logs.txt 2>&1 &
|
||||
|
||||
@@ -81,6 +81,7 @@
|
||||
NEXD_LOGLEVEL=debug nexd \
|
||||
--username '{{ nexodus_auth_uid }}' \
|
||||
--password '{{ nexodus_auth_password }}' \
|
||||
--insecure-skip-tls-verify \
|
||||
--relay-only \
|
||||
{{ nexodus_url }} >> nexodus-logs.txt 2>&1
|
||||
when: "'nexodusRelayNodes' in group_names"
|
||||
@@ -95,6 +96,7 @@
|
||||
NEXD_LOGLEVEL=debug nexd \
|
||||
--username '{{ nexodus_auth_uid }}' \
|
||||
--password '{{ nexodus_auth_password }}' \
|
||||
--insecure-skip-tls-verify \
|
||||
{{ nexodus_url }} >> nexodus-logs.txt 2>&1
|
||||
when: "'nexodusNodes' in group_names"
|
||||
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
NEXD_LOGLEVEL=debug nexd \
|
||||
--username '{{ nexodus_auth_uid }}' \
|
||||
--password '{{ nexodus_auth_password }}' \
|
||||
--insecure-skip-tls-verify \
|
||||
{{ nexodus_url }} >> nexodus-logs.txt 2>&1 &
|
||||
when: "'nexodusNodes' in group_names"
|
||||
|
||||
@@ -48,6 +49,7 @@
|
||||
NEXD_LOGLEVEL=debug nexd \
|
||||
--username '{{ nexodus_auth_uid }}' \
|
||||
--password '{{ nexodus_auth_password }}' \
|
||||
--insecure-skip-tls-verify \
|
||||
--relay-only \
|
||||
{{ nexodus_url }} >> nexodus-logs.txt 2>&1 &
|
||||
when: "'nexodusRelayNodes' in group_names"
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
NEXD_LOGLEVEL=debug nexd \
|
||||
--username '{{ nexodus_auth_uid }}' \
|
||||
--password '{{ nexodus_auth_password }}' \
|
||||
--insecure-skip-tls-verify \
|
||||
relay \
|
||||
{{ nexodus_url }} >> nexodus-logs.txt 2>&1 &
|
||||
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
---
|
||||
# tasks file for start-nexodus-agent
|
||||
- name: Kill any existing nexd process from previous runs
|
||||
become: yes
|
||||
shell: |
|
||||
sudo killall nexd 2> /dev/null
|
||||
ignore_errors: yes
|
||||
|
||||
- name: Attach the Node Agent to the Controller
|
||||
become: yes
|
||||
shell: |
|
||||
nexd \
|
||||
--username '{{ nexodus_auth_uid }}' \
|
||||
--password '{{ nexodus_auth_password }}' \
|
||||
{{ nexodus_url }} > nexodus-logs.txt 2>&1 &
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
# tasks file for stop-nexodus-agent
|
||||
- name: Kill any existing nexd process from previous runs
|
||||
become: yes
|
||||
shell: |
|
||||
sudo killall nexd 2> /dev/null
|
||||
ignore_errors: yes
|
||||
|
||||
- name: Delete wg0
|
||||
become: yes
|
||||
shell: |
|
||||
sudo ip link del wg0
|
||||
ignore_errors: yes
|
||||
Reference in New Issue
Block a user