Skip to content

Commit db8319b

Browse files
committed
Rename to Exordos
1 parent 2573d5f commit db8319b

353 files changed

Lines changed: 834 additions & 834 deletions

File tree

Some content is hidden

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

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
env:
77
ARTIFACTS_PATH: artifacts
8-
PROJECT_NAME: genesis_core
8+
PROJECT_NAME: exordos_core
99
REPO_ENDPOINT_PUT: http://10.20.0.1:8082
1010

1111
jobs:
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: true
1717
steps:
1818
- uses: actions/checkout@v6
19-
- name: Build Genesis Core
19+
- name: Build Exordos Core
2020
env:
2121
PUSH_CFG: ${{ secrets.PUSH_CFG }}
2222
run: |
@@ -26,16 +26,16 @@ jobs:
2626
source ~/.profile
2727
VERSION="$(genesis get-version .)"
2828
29-
# Build Genesis Core
29+
# Build Exordos Core
3030
genesis build $(pwd) --inventory
3131
3232
# Decode and write the push configuration
3333
echo "$PUSH_CFG" | base64 -d > genesis/genesis.push.yaml
3434
genesis push -c genesis/genesis.push.yaml -t local -f --latest
3535
3636
# Upload the VM image
37-
gzip -k output/genesis-core.raw -c | \
38-
curl -X PUT -T - "$REPO_ENDPOINT_PUT/${PROJECT_NAME}/${VERSION}/genesis-core.raw.gz"
37+
gzip -k output/exordos-core.raw -c | \
38+
curl -X PUT -T - "$REPO_ENDPOINT_PUT/${PROJECT_NAME}/${VERSION}/exordos-core.raw.gz"
3939
4040
# Temporary upload step is done in the build script
4141
echo "${VERSION}" > "${ARTIFACTS_PATH}/version.txt"

.github/workflows/inventory.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
with:
1919
fetch-depth: 30
2020
- name: Build elements inventory
21-
run: python3 genesis_core/cmd/elements_inventory.py
21+
run: python3 exordos_core/cmd/elements_inventory.py

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
environment:
4242
name: pypi
43-
url: https://pypi.org/p/genesis-core
43+
url: https://pypi.org/p/exordos-core
4444
permissions:
4545
id-token: write # IMPORTANT: mandatory for trusted publishing
4646

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ jobs:
4545
image: postgres:latest
4646
# Provide the password for postgres
4747
env:
48-
POSTGRES_DB: genesis_core
48+
POSTGRES_DB: exordos_core
4949
POSTGRES_HOST_AUTH_METHOD: trust
50-
POSTGRES_USER: genesis_core
51-
POSTGRES_PASSWORD: genesis_core
50+
POSTGRES_USER: exordos_core
51+
POSTGRES_PASSWORD: exordos_core
5252
POSTGRES_INITDB_ARGS: "-c max_connections=100"
5353
# Set health checks to wait until postgres has started
5454
options: >-
@@ -76,7 +76,7 @@ jobs:
7676
tox -e ${{ matrix.python-version }}
7777
- name: Functional tests
7878
env:
79-
DATABASE_URI: "postgresql://genesis_core:genesis_core@localhost:5432/genesis_core"
79+
DATABASE_URI: "postgresql://exordos_core:exordos_core@localhost:5432/exordos_core"
8080
run: |
8181
tox -e ${{ matrix.python-version }}-functional
8282
Coverage:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ AUTHORS
4141
ChangeLog
4242
cover/
4343
version.txt
44-
etc/genesis_core/genesis_core.d/*.conf
44+
etc/exordos_core/exordos_core.d/*.conf
4545
etc/*/*.local
4646

4747
# OS

.vscode/launch.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"type": "debugpy",
1010
"request": "launch",
1111
"program": ".tox/develop/bin/gc-user-api",
12-
"args": ["--config-file", "etc/genesis_core/genesis_core.conf.local", "--config-dir", "etc/genesis_core/genesis_core.d/"],
12+
"args": ["--config-file", "etc/exordos_core/exordos_core.conf.local", "--config-dir", "etc/exordos_core/exordos_core.d/"],
1313
"console": "integratedTerminal",
1414
"justMyCode": false,
1515
"subProcess": true
@@ -18,15 +18,15 @@
1818
"type": "debugpy",
1919
"request": "launch",
2020
"program": ".tox/develop/bin/gc-orch-api",
21-
"args": ["--config-file", "etc/genesis_core/genesis_core.conf.local", "--config-dir", "etc/genesis_core/genesis_core.d/"],
21+
"args": ["--config-file", "etc/exordos_core/exordos_core.conf.local", "--config-dir", "etc/exordos_core/exordos_core.d/"],
2222
"console": "integratedTerminal",
2323
"justMyCode": false
2424
}, {
2525
"name": "Python Debugger: GService",
2626
"type": "debugpy",
2727
"request": "launch",
2828
"program": ".tox/develop/bin/gc-gservice",
29-
"args": ["--config-file", "etc/genesis_core/genesis_core.conf.local", "--config-dir", "etc/genesis_core/genesis_core.d/"],
29+
"args": ["--config-file", "etc/exordos_core/exordos_core.conf.local", "--config-dir", "etc/exordos_core/exordos_core.d/"],
3030
"console": "integratedTerminal",
3131
"justMyCode": false
3232
}, {
@@ -35,8 +35,8 @@
3535
"request": "launch",
3636
"program": ".tox/develop/bin/gc-manifest-parser",
3737
"args": [
38-
"--config-file", "etc/genesis_core/genesis_core.conf.local",
39-
"--config-dir", "etc/genesis_core/genesis_core.d/",
38+
"--config-file", "etc/exordos_core/exordos_core.conf.local",
39+
"--config-dir", "etc/exordos_core/exordos_core.d/",
4040
"--manifest-path", "genesis/manifests/core.element.yaml"
4141
],
4242
"console": "integratedTerminal",
@@ -47,8 +47,8 @@
4747
"request": "launch",
4848
"program": ".tox/develop/bin/genesis-universal-agent",
4949
"args": [
50-
"--config-file", "etc/genesis_core/genesis_core.conf.local",
51-
"--config-dir", "etc/genesis_core/genesis_core.d/",
50+
"--config-file", "etc/exordos_core/exordos_core.conf.local",
51+
"--config-dir", "etc/exordos_core/exordos_core.d/",
5252
],
5353
"console": "integratedTerminal",
5454
"justMyCode": false
@@ -58,8 +58,8 @@
5858
"request": "launch",
5959
"program": ".tox/develop/bin/ra-apply-migration",
6060
"args": [
61-
"--config-file", "etc/genesis_core/genesis_core.conf.local",
62-
"--config-dir", "etc/genesis_core/genesis_core.d/",
61+
"--config-file", "etc/exordos_core/exordos_core.conf.local",
62+
"--config-dir", "etc/exordos_core/exordos_core.d/",
6363
"-p", "migrations"
6464
],
6565
"console": "integratedTerminal",
@@ -70,8 +70,8 @@
7070
"request": "launch",
7171
"program": ".tox/develop/bin/ra-rollback-migration",
7272
"args": [
73-
"--config-file", "etc/genesis_core/genesis_core.conf.local",
74-
"--config-dir", "etc/genesis_core/genesis_core.d/",
73+
"--config-file", "etc/exordos_core/exordos_core.conf.local",
74+
"--config-dir", "etc/exordos_core/exordos_core.d/",
7575
"-p", "migrations",
7676
"-m", "root"
7777
],

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CODEOWNERS file for genesis_core repository
1+
# CODEOWNERS file for exordos_core repository
22
# Each line is a pattern followed by one or more owners
33

44
# Default owners for the entire repository

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ endif
77
all: help
88

99
help:
10-
@echo "build_core - build genesis core"
11-
@echo "bootstrap - bootstrap genesis core"
10+
@echo "build_core - build exordos core"
11+
@echo "bootstrap - bootstrap exordos core"
1212

1313
build_core:
1414
genesis build -i $(SSH_KEY) -f . --inventory --manifest-var repository=https://repository.genesis-core.tech

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
![Tests workflow](https://github.com/infraguys/genesis_core/actions/workflows/tests.yml/badge.svg)
2-
![Build workflow](https://github.com/infraguys/genesis_core/actions/workflows/build.yml/badge.svg)
1+
![Tests workflow](https://github.com/infraguys/exordos_core/actions/workflows/tests.yml/badge.svg)
2+
![Build workflow](https://github.com/infraguys/exordos_core/actions/workflows/build.yml/badge.svg)
33

44
<p align="center">
5-
<img height="256" src="logo.svg" alt="genesis core svg logo">
5+
<img height="256" src="logo.svg" alt="exordos core svg logo">
66
</p>
77

8-
Welcome to Genesis Core!
8+
Welcome to Exordos Core!
99

10-
The Genesis Core is an open source software that offers a one turnkey solution to deal with infrastructure at all levels - from bare metal and virtual machines to applications and services.
10+
The Exordos Core is an open source software that offers a one turnkey solution to deal with infrastructure at all levels - from bare metal and virtual machines to applications and services.
1111

12-
Refer to the [wiki](https://github.com/infraguys/genesis_core/wiki) for more detailed information.
12+
Refer to the [wiki](https://github.com/infraguys/exordos_core/wiki) for more detailed information.
1313

1414
# 📦 Installation
1515

16-
There are several ways to install Genesis Core and depend on your purpose you can choose one of them.
16+
There are several ways to install Exordos Core and depend on your purpose you can choose one of them.
1717

1818
## Try it out
1919

20-
If you want to try Genesis Core in a few minutes, download the `all-in-one` [stand](https://github.com/infraguys/gci_dev_all_in_one). It's a ready-to-go virtual machine image with preinstalled Genesis Core and ability to get full functionality such as creating inner(nested) virtual machines, installation elements and many others.
20+
If you want to try Exordos Core in a few minutes, download the `all-in-one` [stand](https://github.com/infraguys/gci_dev_all_in_one). It's a ready-to-go virtual machine image with preinstalled Exordos Core and ability to get full functionality such as creating inner(nested) virtual machines, installation elements and many others.
2121
This stand may be used for development purposes as well if you are focusing on a new element development.
2222

2323
## Basic usage
2424

25-
In a case you would like to run Genesis Core on your own infrastructure, you can use the [basic guide](https://github.com/infraguys/genesis_core/wiki/BasicUsage) for more details.
25+
In a case you would like to run Exordos Core on your own infrastructure, you can use the [basic guide](https://github.com/infraguys/exordos_core/wiki/BasicUsage) for more details.
2626

2727
# 🚀 Development
2828

@@ -52,7 +52,7 @@ tox -e develop
5252
source .tox/develop/bin/activate
5353
```
5454

55-
Follow the development guide [here](https://github.com/infraguys/genesis_core/wiki/DevelopmentGuide) for more details.
55+
Follow the development guide [here](https://github.com/infraguys/exordos_core/wiki/DevelopmentGuide) for more details.
5656

5757
# ⚙️ Tests
5858

@@ -71,7 +71,7 @@ tox -e py312-functional
7171
To run functional tests, export the following environment variables:
7272

7373
```bash
74-
export DATABASE_URI="postgresql://genesis_core:genesis_core@127.0.0.1:5432/genesis_core"
74+
export DATABASE_URI="postgresql://exordos_core:exordos_core@127.0.0.1:5432/exordos_core"
7575
export ADMIN_PASSWORD="admin"
7676
export DEFAULT_CLIENT_SECRET="GenesisCoreSecret"
7777
export GLOBAL_SALT="FOy/2kwwdn0ig1QOq7cestqe"
@@ -80,8 +80,8 @@ export HS256_KEY="secret"
8080

8181
# 🔗 Related projects
8282

83-
- Genesis SDK is a set of tools for developing Genesis elements. You can find it [here](https://github.com/infraguys/gcl_sdk).
84-
- Genesis DevTools it's a set oftools to manager life cycle of genesis projects. You can find it [here](https://github.com/infraguys/genesis_devtools).
83+
- Exordos SDK is a set of tools for developing Exordos elements. You can find it [here](https://github.com/infraguys/gcl_sdk).
84+
- Exordos DevTools it's a set oftools to manager life cycle of genesis projects. You can find it [here](https://github.com/infraguys/genesis_devtools).
8585

8686
# 💡 Contributing
8787

docker-compose-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ services:
33
image: postgres:latest
44
command: -c 'max_connections=100'
55
environment:
6-
POSTGRES_USER: genesis_core
7-
POSTGRES_PASSWORD: genesis_core
8-
POSTGRES_DB: genesis_core
6+
POSTGRES_USER: exordos_core
7+
POSTGRES_PASSWORD: exordos_core
8+
POSTGRES_DB: exordos_core
99
PGDATA: /var/lib/postgresql/data/pgdata
1010
ports:
1111
- "5432:5432"

0 commit comments

Comments
 (0)