Skip to content

Commit 73ab81a

Browse files
authored
Replace osism.github.io with osism.tech (#2111)
Part of osism/issues#927 Signed-off-by: Jan Horstmann <[email protected]>
1 parent b34df40 commit 73ab81a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OSISM testbed
22

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)
44

55
With the OSISM Testbed, it is possible to run a full [Sovereign Cloud Stack](https://scs.community)
66
deployment on an existing OpenStack environment such as Cleura or REGIO.cloud.

ansible/check-local-versions.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
tasks:
88
- name: Fail if ansible-core version is lower than 2.15.0
99
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."
1111
when: ansible_version.full is ansible.builtin.version('2.15.0', '<')
1212

1313
- name: Get terraform version
@@ -21,7 +21,7 @@
2121

2222
- name: Fail if terraform version is lower than 1.6.0
2323
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."
2525
when: result.stdout is ansible.builtin.version('1.6.0', '<')
2626

2727
- name: Get python version
@@ -35,5 +35,5 @@
3535

3636
- name: Fail if python version is lower than 3.8.0
3737
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."
3939
when: result.stdout is ansible.builtin.version('3.8.0', '<')

ansible/manager-part-0.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
tasks:
2020
- name: Fail if Ubuntu version is lower than 22.04
2121
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."
2323
when: ansible_distribution == "Ubuntu" and ansible_distribution_version < "22.04"
2424

2525
- name: Update APT cache and run dist-upgrade

terraform/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ vpn-wireguard: .MANAGER_ADDRESS.$(ENVIRONMENT) .id_rsa.$(ENVIRONMENT)
174174
scp -o StrictHostKeyChecking=no -i .id_rsa.$(ENVIRONMENT) $(PARAMS) $(USERNAME)@$$MANAGER_ADDRESS:/home/dragon/wireguard-client.conf $(PWD)/wg-$(ENVIRONMENT).conf
175175
sudo wg-quick down $(PWD)/wg-$(ENVIRONMENT).conf || true
176176
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"
178178
@read -p "STOP?" CONT
179179
sudo wg-quick down $(PWD)/wg-$(ENVIRONMENT).conf
180180

0 commit comments

Comments
 (0)