Skip to content

Commit f7fdbf8

Browse files
committed
Swtich to new repo URL
Signed-off-by: Anton Kremenetsky <anton.kremenetsky@gmail.com>
1 parent 0719e9b commit f7fdbf8

19 files changed

Lines changed: 31 additions & 32 deletions

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
with:
6060
version: ${{ env.PACKER_VERSION }}
6161
- name: Install exordos
62-
run: curl -fsSL https://repository.genesis-core.tech/install.sh | sudo sh
62+
run: curl -fsSL https://repo.exordos.com/install.sh | sudo sh
6363
- name: set exordos config
6464
run: |
6565
exordos settings set-realm default --endpoint $CORE_ENDPOINT_URL

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SHELL := bash
2-
REPOSITORY := https://repository.genesis-core.tech
2+
REPOSITORY := https://repo.exordos.com
33
ifeq ($(SSH_KEY),)
44
SSH_KEY = ~/.ssh/id_rsa.pub
55
endif
@@ -11,7 +11,7 @@ help:
1111
@echo "bootstrap - bootstrap exordos core"
1212

1313
build_core:
14-
exordos build -i $(SSH_KEY) -f --manifest-var repository=https://repository.genesis-core.tech
14+
exordos build -i $(SSH_KEY) -f
1515

1616
bootstrap:
1717
exordos bootstrap -i output/inventory.json -f -m core --admin-password admin --cidr 10.20.0.0/22

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Key capabilities:
3636
Install the CLI tools with a single command:
3737

3838
```bash
39-
curl -fsSL https://repository.genesis-core.tech/install.sh | sudo sh
39+
curl -fsSL https://repo.exordos.com/install.sh | sudo sh
4040
```
4141

4242
Then follow the instructions in the terminal, or refer to the [documentation](https://exordos.github.io/exordos_core/) for a full setup guide.

docs/usage/local_deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It's assumed Linux (Ubuntu) is used as the OS on your machine.
1111
Install the Exordos CLI:
1212

1313
```bash
14-
curl -fsSL https://repository.genesis-core.tech/install.sh | sudo sh
14+
curl -fsSL https://repo.exordos.com/install.sh | sudo sh
1515
```
1616

1717
### Packages

docs/usage/local_deployment.ru.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Установите Exordos CLI:
1212

1313
```bash
14-
curl -fsSL https://repository.genesis-core.tech/install.sh | sudo sh
14+
curl -fsSL https://repo.exordos.com/install.sh | sudo sh
1515
```
1616

1717
### Пакеты

exordos/exordos.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ build:
2121
- dst: /opt/exordos_core/artifacts/undionly.kpxe
2222
# Local path
2323
http:
24-
src: https://repository.genesis-core.tech/seed_os/1.1.0/undionly.kpxe
24+
src: https://repo.exordos.com/seed_os/1.1.0/undionly.kpxe
2525
- dst: /opt/exordos_core/artifacts/initrd.img
2626
# Local path
2727
http:
28-
src: https://repository.genesis-core.tech/seed_os/1.1.0/initrd.img
28+
src: https://repo.exordos.com/seed_os/1.1.0/initrd.img
2929
- dst: /opt/exordos_core/artifacts/vmlinuz
3030
# Local path
3131
http:
32-
src: https://repository.genesis-core.tech/seed_os/1.1.0/vmlinuz
32+
src: https://repo.exordos.com/seed_os/1.1.0/vmlinuz
3333
- dst: /opt/exordos_core/artifacts/html.tgz
3434
# Local path
3535
http:
36-
src: https://repository.genesis-core.tech/genesis_ui/0.1.1/html.tgz
36+
src: https://repo.exordos.com/genesis_ui/0.1.1/html.tgz
3737

3838
# Take SDK from a local path for development purposes.
3939
- dst: /opt/gcl_sdk

exordos/images/install.sh

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fi
6868
FREQUENT_LOG_VACUUM=${FREQUENT_LOG_VACUUM-}
6969
if [ -n "$FREQUENT_LOG_VACUUM" ]; then
7070
# Optimize log rotation
71-
echo "0 * * * * root journalctl --vacuum-size=500M" | sudo tee /etc/cron.d/genesis_vacuum_logs > /dev/null
71+
echo "0 * * * * root journalctl --vacuum-size=500M" | sudo tee /etc/cron.d/exordos_vacuum_logs > /dev/null
7272
cat <<EOF | sudo tee /etc/logrotate.d/rsyslog > /dev/null
7373
/var/log/syslog
7474
/var/log/mail.log
@@ -90,7 +90,7 @@ if [ -n "$FREQUENT_LOG_VACUUM" ]; then
9090
endscript
9191
}
9292
EOF
93-
echo "1 * * * * root systemctl start logrotate" | sudo tee -a /etc/cron.d/genesis_vacuum_logs > /dev/null
93+
echo "1 * * * * root systemctl start logrotate" | sudo tee -a /etc/cron.d/exordos_vacuum_logs > /dev/null
9494
fi
9595

9696
# Useful for all-in-one-vm tests
@@ -117,7 +117,7 @@ sudo cp "$GC_ART_DIR/vmlinuz" /srv/tftp/bios/vmlinuz
117117
# Prepare nginx for LB
118118
sudo mkdir -p /etc/nginx/ssl
119119
sudo chown www-data:www-data /etc/nginx/ssl
120-
sudo mkdir -p /etc/nginx/genesis/
120+
sudo mkdir -p /etc/nginx/exordos/
121121

122122
# Cert to restrict default_server
123123
sudo openssl req -x509 -nodes -days 3650 -newkey rsa:2048 -subj "/C=PE/ST=Exordos/L=Exordos/O=Exordos core dummy cert. /OU=IT Department/CN=exordos.core" -keyout /etc/nginx/ssl/nginx.key -out /etc/nginx/ssl/nginx.crt
@@ -128,7 +128,7 @@ sudo cp "$GC_PATH/etc/nginx/sites-available/default" /etc/nginx/sites-available/
128128
sudo ln -s /etc/nginx/sites-available/default /etc/nginx/sites-enabled/default
129129

130130
cat <<EOF | sudo tee -a /etc/nginx/nginx.conf
131-
include /etc/nginx/genesis/*.conf;
131+
include /etc/nginx/exordos/*.conf;
132132
EOF
133133

134134
# comment in /etc/nginx/nginx.conf line with server_tokens
@@ -176,7 +176,7 @@ OS_DB__CONNECTION_URL="postgresql://$GC_PG_USER:$GC_PG_PASS@127.0.0.1:5432/$GC_P
176176
deactivate
177177

178178
# Install CLI
179-
curl -fsSL https://repository.genesis-core.tech/install.sh | sudo sh
179+
curl -fsSL https://repo.exordos.com/install.sh | sudo sh
180180

181181
# Misc config
182182
# Disable DHCP for the main interface, it will be configured in the bootstrap script
@@ -191,10 +191,9 @@ sudo ln -sf "$VENV_PATH/bin/ec-status-api" "/usr/bin/ec-status-api"
191191
sudo ln -sf "$VENV_PATH/bin/ec-gservice" "/usr/bin/ec-gservice"
192192
sudo ln -sf "$VENV_PATH/bin/ec-bootstrap" "/usr/bin/ec-bootstrap"
193193
sudo ln -sf "$VENV_PATH/bin/ec-bootstrap-templates" "/usr/bin/ec-bootstrap-templates"
194-
sudo ln -sf "$VENV_PATH/bin/genesis-universal-agent" "/usr/bin/exordos-universal-agent"
195-
sudo ln -sf "$VENV_PATH/bin/genesis-universal-agent-db-back" "/usr/bin/exordos-universal-agent-db-back"
196-
sudo ln -sf "$VENV_PATH/bin/genesis-universal-scheduler" "/usr/bin/exordos-universal-scheduler"
197-
sudo ln -sf "$VENV_PATH/bin/genesis-ci" "/usr/bin/gctl"
194+
sudo ln -sf "$VENV_PATH/bin/exordos-universal-agent" "/usr/bin/exordos-universal-agent"
195+
sudo ln -sf "$VENV_PATH/bin/exordos-universal-agent-db-back" "/usr/bin/exordos-universal-agent-db-back"
196+
sudo ln -sf "$VENV_PATH/bin/exordos-universal-scheduler" "/usr/bin/exordos-universal-scheduler"
198197

199198
# Install Systemd service files
200199
# The exordos services are enabled in the bootstrap

exordos/manifests/core-node-set-example.yaml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resources:
2020
disk_spec:
2121
kind: "root_disk"
2222
size: 10
23-
image: "{{ base_image_url | default('https://repository.genesis-core.tech/genesis-base/0.4.1/genesis-base.raw.gz') }}"
23+
image: "{{ base_image_url | default('https://repo.exordos.com/genesis-base/0.4.1/genesis-base.raw.gz') }}"
2424

2525
$core.compute.nodes:
2626
example_node:
@@ -32,4 +32,4 @@ resources:
3232
disk_spec:
3333
kind: "root_disk"
3434
size: 10
35-
image: "{{ base_image_url | default('https://repository.genesis-core.tech/genesis-base/0.4.1/genesis-base.raw.gz') }}"
35+
image: "{{ base_image_url | default('https://repo.exordos.com/genesis-base/0.4.1/genesis-base.raw.gz') }}"

exordos/manifests/core-service-example.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resources:
1919
disk_spec:
2020
kind: "root_disk"
2121
size: 10
22-
image: "{{ base_image_url | default('https://repository.genesis-core.tech/genesis-base/0.4.1/genesis-base.raw.gz') }}"
22+
image: "{{ base_image_url | default('https://repo.exordos.com/genesis-base/0.4.1/genesis-base.raw.gz') }}"
2323

2424
$core.em.services:
2525
example_service:

exordos/manifests/core.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ resources:
120120
kind: "disks"
121121
disks:
122122
- size: 10
123-
image: "{{ repository | default('https://repository.genesis-core.tech/exordos-elements') }}/core/{{ version }}/images/exordos-core.raw.gz"
123+
image: "{{ repository | default('https://repo.exordos.com/exordos-elements') }}/core/{{ version }}/images/exordos-core.raw.gz"
124124
- size: 10
125125
label: data
126126

0 commit comments

Comments
 (0)