Skip to content

Commit 2c4cbff

Browse files
committed
Use new integration-config.yml in tests
Signed-off-by: Justin Cinkelj <justin.cinkelj@xlab.si>
1 parent fe9df0e commit 2c4cbff

File tree

80 files changed

+167
-167
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+167
-167
lines changed

tests/integration/cleanup/ci_replica_cleanup.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
gather_facts: false
88
vars:
99
replication_dest_cluster:
10-
host: "{{ sc_replication_dest_host }}"
11-
username: "{{ sc_replication_dest_username }}"
12-
password: "{{ sc_replication_dest_password }}"
10+
host: "{{ sc_config[sc_host].sc_replication_dest_host }}"
11+
username: "{{ sc_config[sc_host].sc_replication_dest_username }}"
12+
password: "{{ sc_config[sc_host].sc_replication_dest_password }}"
1313
timeout: "{{ sc_timeout }}"
1414
replication_src_cluster:
1515
host: "{{ sc_host }}"
16-
username: "{{ sc_username }}"
17-
password: "{{ sc_password }}"
16+
username: "{{ sc_config[sc_host].sc_username }}"
17+
password: "{{ sc_config[sc_host].sc_password }}"
1818
timeout: "{{ sc_timeout }}"
1919
vars_files:
2020
- ../integration_config.yml

tests/integration/prepare/prepare_examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
vars:
66
cluster_instance:
77
host: "{{ sc_host }}"
8-
username: "{{ sc_username }}"
9-
password: "{{ sc_password }}"
8+
username: "{{ sc_config[sc_host].sc_username }}"
9+
password: "{{ sc_config[sc_host].sc_password }}"
1010
timeout: "{{ sc_timeout }}"
1111
vars_files:
1212
- ../integration_config.yml

tests/integration/prepare/prepare_iso.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
# environment:
66
# # didn't work
77
# SC_HOST: "{{ sc_host }}"
8-
# SC_USERNAME: "{{ sc_username }}"
9-
# SC_PASSWORD: "{{ sc_password }}"
8+
# SC_USERNAME: "{{ sc_config[sc_host].sc_username }}"
9+
# SC_PASSWORD: "{{ sc_config[sc_host].sc_password }}"
1010
# SC_TIMEOUT: "{{ sc_timeout }}"
1111
vars:
1212
cluster_instance:
1313
host: "{{ sc_host }}"
14-
username: "{{ sc_username }}"
15-
password: "{{ sc_password }}"
14+
username: "{{ sc_config[sc_host].sc_username }}"
15+
password: "{{ sc_config[sc_host].sc_password }}"
1616
timeout: "{{ sc_timeout }}"
1717
vars_files:
1818
- ../integration_config.yml

tests/integration/prepare/prepare_vm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
vars:
66
cluster_instance:
77
host: "{{ sc_host }}"
8-
username: "{{ sc_username }}"
9-
password: "{{ sc_password }}"
8+
username: "{{ sc_config[sc_host].sc_username }}"
9+
password: "{{ sc_config[sc_host].sc_password }}"
1010
timeout: "{{ sc_timeout }}"
1111
vars_files:
1212
- ../integration_config.yml

tests/integration/targets/api/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
- environment:
33
SC_HOST: "{{ sc_host }}"
4-
SC_USERNAME: "{{ sc_username }}"
5-
SC_PASSWORD: "{{ sc_password }}"
4+
SC_USERNAME: "{{ sc_config[sc_host].sc_username }}"
5+
SC_PASSWORD: "{{ sc_config[sc_host].sc_password }}"
66
SC_TIMEOUT: "{{ sc_timeout }}"
77

88
block:

tests/integration/targets/certificate/tasks/01_normal.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
- environment:
33
SC_HOST: "{{ sc_host }}"
4-
SC_USERNAME: "{{ sc_username }}"
5-
SC_PASSWORD: "{{ sc_password }}"
4+
SC_USERNAME: "{{ sc_config[sc_host].sc_username }}"
5+
SC_PASSWORD: "{{ sc_config[sc_host].sc_password }}"
66
SC_TIMEOUT: "{{ sc_timeout }}"
77

88
connection: local

tests/integration/targets/certificate/tasks/02_ssl_eof_error.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
- environment:
33
SC_HOST: "{{ sc_host }}"
4-
SC_USERNAME: "{{ sc_username }}"
5-
SC_PASSWORD: "{{ sc_password }}"
4+
SC_USERNAME: "{{ sc_config[sc_host].sc_username }}"
5+
SC_PASSWORD: "{{ sc_config[sc_host].sc_password }}"
66
SC_TIMEOUT: "{{ sc_timeout }}"
77

88
connection: local

tests/integration/targets/certificate/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
- environment:
33
SC_HOST: "{{ sc_host }}"
4-
SC_USERNAME: "{{ sc_username }}"
5-
SC_PASSWORD: "{{ sc_password }}"
4+
SC_USERNAME: "{{ sc_config[sc_host].sc_username }}"
5+
SC_PASSWORD: "{{ sc_config[sc_host].sc_password }}"
66
SC_TIMEOUT: "{{ sc_timeout }}"
77

88
block:

tests/integration/targets/cluster_info/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
- environment:
33
SC_HOST: "{{ sc_host }}"
4-
SC_USERNAME: "{{ sc_username }}"
5-
SC_PASSWORD: "{{ sc_password }}"
4+
SC_USERNAME: "{{ sc_config[sc_host].sc_username }}"
5+
SC_PASSWORD: "{{ sc_config[sc_host].sc_password }}"
66
SC_TIMEOUT: "{{ sc_timeout }}"
77

88
block:

tests/integration/targets/cluster_name/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
- environment:
33
SC_HOST: "{{ sc_host }}"
4-
SC_USERNAME: "{{ sc_username }}"
5-
SC_PASSWORD: "{{ sc_password }}"
4+
SC_USERNAME: "{{ sc_config[sc_host].sc_username }}"
5+
SC_PASSWORD: "{{ sc_config[sc_host].sc_password }}"
66
SC_TIMEOUT: "{{ sc_timeout }}"
77
vars:
88
cluster_config: "{{ sc_config[sc_host].cluster }}"

0 commit comments

Comments
 (0)