File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
# OSISM testbed
2
2
3
- [ ![ Documentation] ( https://img.shields.io/static/v1?label=&message=documentation&color=blue )] ( https://osism.github.io /docs/guides/other-guides/testbed )
3
+ [ ![ Documentation] ( https://img.shields.io/static/v1?label=&message=documentation&color=blue )] ( https://osism.tech /docs/guides/other-guides/testbed )
4
4
5
5
With the OSISM Testbed, it is possible to run a full [ Sovereign Cloud Stack] ( https://scs.community )
6
6
deployment on an existing OpenStack environment such as Cleura or REGIO.cloud.
Original file line number Diff line number Diff line change 7
7
tasks :
8
8
- name : Fail if ansible-core version is lower than 2.15.0
9
9
ansible.builtin.fail :
10
- msg : " Ansible core version is {{ ansible_version.full }}, see https://osism.github.io /docs/guides/other-guides/testbed/ for required version."
10
+ msg : " Ansible core version is {{ ansible_version.full }}, see https://osism.tech /docs/guides/other-guides/testbed/ for required version."
11
11
when : ansible_version.full is ansible.builtin.version('2.15.0', '<')
12
12
13
13
- name : Get terraform version
21
21
22
22
- name : Fail if terraform version is lower than 1.6.0
23
23
ansible.builtin.fail :
24
- msg : " Terraform version is {{ result.stdout }}, see https://osism.github.io /docs/guides/other-guides/testbed/ for required version."
24
+ msg : " Terraform version is {{ result.stdout }}, see https://osism.tech /docs/guides/other-guides/testbed/ for required version."
25
25
when : result.stdout is ansible.builtin.version('1.6.0', '<')
26
26
27
27
- name : Get python version
35
35
36
36
- name : Fail if python version is lower than 3.8.0
37
37
ansible.builtin.fail :
38
- msg : " Python version is {{ result.stdout }}, see https://osism.github.io /docs/guides/other-guides/testbed/ for required version."
38
+ msg : " Python version is {{ result.stdout }}, see https://osism.tech /docs/guides/other-guides/testbed/ for required version."
39
39
when : result.stdout is ansible.builtin.version('3.8.0', '<')
Original file line number Diff line number Diff line change 19
19
tasks :
20
20
- name : Fail if Ubuntu version is lower than 22.04
21
21
ansible.builtin.fail :
22
- msg : " Ubuntu version is {{ ansible_distribution_version }}, see https://osism.github.io /docs/advanced-guides/testbed#software for required version."
22
+ msg : " Ubuntu version is {{ ansible_distribution_version }}, see https://osism.tech /docs/advanced-guides/testbed#software for required version."
23
23
when : ansible_distribution == "Ubuntu" and ansible_distribution_version < "22.04"
24
24
25
25
- name : Update APT cache and run dist-upgrade
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ vpn-wireguard: .MANAGER_ADDRESS.$(ENVIRONMENT) .id_rsa.$(ENVIRONMENT)
174
174
scp -o StrictHostKeyChecking=no -i .id_rsa.$(ENVIRONMENT ) $(PARAMS ) $(USERNAME ) @$$ MANAGER_ADDRESS:/home/dragon/wireguard-client.conf $(PWD ) /wg-$(ENVIRONMENT ) .conf
175
175
sudo wg-quick down $(PWD ) /wg-$(ENVIRONMENT ) .conf || true
176
176
sudo wg-quick up $(PWD ) /wg-$(ENVIRONMENT ) .conf
177
- @$(OPEN_CMD ) " https://osism.github.io /docs/guides/other-guides/testbed#webinterfaces"
177
+ @$(OPEN_CMD ) " https://osism.tech /docs/guides/other-guides/testbed#webinterfaces"
178
178
@read -p " STOP?" CONT
179
179
sudo wg-quick down $(PWD ) /wg-$(ENVIRONMENT ) .conf
180
180
You can’t perform that action at this time.
0 commit comments