Skip to content

Commit 234c582

Browse files
committed
Bugfix: Fix repo url in docs
Signed-off-by: Anton Kremenetsky <anton.kremenetsky@gmail.com>
1 parent a2ac674 commit 234c582

14 files changed

Lines changed: 16 additions & 16 deletions

File tree

docs/app-developer-guide/build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Fetch remote resources via HTTP/HTTPS. This is useful for kernel images, boot lo
133133
deps:
134134
- dst: /opt/exordos_core/artifacts/vmlinuz
135135
http:
136-
src: https://repository.exordos.com/seed_os/1.1.0/vmlinuz
136+
src: https://repo.exordos.com/seed_os/1.1.0/vmlinuz
137137
```
138138

139139
The `vmlinuz` kernel image is downloaded and placed at the specified destination path before the build continues.

docs/app-developer-guide/build.ru.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ deps:
133133
deps:
134134
- dst: /opt/exordos_core/artifacts/vmlinuz
135135
http:
136-
src: https://repository.exordos.com/seed_os/1.1.0/vmlinuz
136+
src: https://repo.exordos.com/seed_os/1.1.0/vmlinuz
137137
```
138138

139139
Образ ядра `vmlinuz` загружается и помещается по указанному пути назначения перед продолжением сборки.

docs/app-developer-guide/deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Key options:
1414

1515
| Option | Description |
1616
|---|---|
17-
| `-r, --repository TEXT` | Repository endpoint where the element is stored [default: `https://repository.exordos.com/exordos-elements/`] |
17+
| `-r, --repository TEXT` | Repository endpoint where the element is stored [default: `https://repo.exordos.com/exordos-elements/`] |
1818
| `PATH_OR_NAME` | Path to a local manifest file or the name of an element in the repository |
1919

2020
You can install elements on a [public Exordos Core installation](public-installation.md). Or you can deploy a [private Exordos Core installation](private-installation.md) on your own hardware. For development and testing, you can use [local laptop installation](local-laptop-installation.md).

docs/app-developer-guide/deploy.ru.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exordos elements install [OPTIONS] PATH_OR_NAME
1414

1515
| Опция | Описание |
1616
|---|---|
17-
| `-r, --repository TEXT` | Конечная точка репозитория, где хранится элемент [по умолчанию: `https://repository.exordos.com/exordos-elements/`] |
17+
| `-r, --repository TEXT` | Конечная точка репозитория, где хранится элемент [по умолчанию: `https://repo.exordos.com/exordos-elements/`] |
1818
| `PATH_OR_NAME` | Путь к локальному файлу манифеста или имя элемента в репозитории |
1919

2020
Вы можете устанавливать элементы на [публичную установку Exordos Core](public-installation.ru.md). Или вы можете развернуть [приватную установку Exordos Core](private-installation.ru.md) на своём оборудовании. Для разработки и тестирования вы можете использовать [установку на локальном ноутбуке](local-laptop-installation.ru.md).

docs/app-developer-guide/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Install the necessary tools below.
8282
Install Exordos CLI:
8383

8484
```bash
85-
curl -fsSL https://repository.exordos.com/install.sh | sudo sh
85+
curl -fsSL https://repo.exordos.com/install.sh | sudo sh
8686
```
8787

8888
The Packer [version 1.9.2](https://hashicorp-releases.yandexcloud.net/packer/1.9.2/) or earlier due to licensing limitation. Download and place into `/usr/local/bin/` or any other directory in your `$PATH`.
@@ -118,7 +118,7 @@ exordos init \
118118
--author-name "Developer" \
119119
--author-email "dev@example.com" \
120120
--manifest-description "A simple ToDo list element" \
121-
--repository "https://repository.exordos.com/exordos-elements" \
121+
--repository "https://repo.exordos.com/exordos-elements" \
122122
--pgsql-usage-mode "own_cluster" \
123123
--pgsql-database-name "todo_api" \
124124
--pgsql-username "todo_api" \

docs/app-developer-guide/index.ru.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ exordos elements install <element-name>
8282
Установка Exordos CLI:
8383

8484
```bash
85-
curl -fsSL https://repository.exordos.com/install.sh | sudo sh
85+
curl -fsSL https://repo.exordos.com/install.sh | sudo sh
8686
```
8787

8888
Packer [версии 1.9.2](https://hashicorp-releases.yandexcloud.net/packer/1.9.2/) или ранее из-за ограничений лицензирования. Скачайте и поместите в `/usr/local/bin/` или любую другую директорию из вашего `$PATH`.
@@ -118,7 +118,7 @@ exordos init \
118118
--author-name "Developer" \
119119
--author-email "dev@example.com" \
120120
--manifest-description "Простой ToDo list элемент" \
121-
--repository "https://repository.exordos.com/exordos-elements" \
121+
--repository "https://repo.exordos.com/exordos-elements" \
122122
--pgsql-usage-mode "own_cluster" \
123123
--pgsql-database-name "todo_api" \
124124
--pgsql-username "todo_api" \

docs/app-developer-guide/push.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ push:
7777
path: /var/lib/exordos-pools/http
7878
remote:
7979
driver: nginx
80-
url: https://repository.exordos.com
80+
url: https://repo.exordos.com
8181
```
8282
8383
| Repository Type | Description |

docs/app-developer-guide/push.ru.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ push:
7777
path: /var/lib/exordos-pools/http
7878
remote:
7979
driver: nginx
80-
url: https://repository.exordos.com
80+
url: https://repo.exordos.com
8181
```
8282
8383
| Тип репозитория | Описание |

docs/em/manifest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ resources:
2525
disk_spec:
2626
kind: "root_disk"
2727
size: 10
28-
image: "{{ base_image_url | default('https://repository.exordos.com/exordos-base/0.4.1/exordos-base.raw.gz') }}"
28+
image: "{{ base_image_url | default('https://repo.exordos.com/exordos-base/0.4.1/exordos-base.raw.gz') }}"
2929

3030
$core.em.services:
3131
example_service:

docs/em/manifest.ru.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ resources:
2525
disk_spec:
2626
kind: "root_disk"
2727
size: 10
28-
image: "{{ base_image_url | default('https://repository.exordos.com/exordos-base/0.4.1/exordos-base.raw.gz') }}"
28+
image: "{{ base_image_url | default('https://repo.exordos.com/exordos-base/0.4.1/exordos-base.raw.gz') }}"
2929

3030
$core.em.services:
3131
example_service:

0 commit comments

Comments
 (0)