Skip tls verification for qa/dev

Signed-off-by: Brent Salisbury <bsalisbu@redhat.com>
This commit is contained in:
Brent Salisbury
2024-02-02 23:25:34 -05:00
parent d8e7f4dd08
commit 897eeaa990
9 changed files with 10 additions and 42 deletions
-6
View File
@@ -1,6 +0,0 @@
# Start Nexodus agents
- hosts: nexodusNodes
vars_files:
- vars.yml
roles:
- role: start-nexodus-agent
-6
View File
@@ -1,6 +0,0 @@
# Stop Nexodus agents
- hosts: nexodusNodes
vars_files:
- vars.yml
roles:
- role: stop-nexodus-agent
+3 -1
View File
@@ -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"
+2 -1
View File
@@ -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