Skip to content

Commit 53f04d2

Browse files
authored
fixes for cli and edit manifest (#329)
1 parent 3fca9c3 commit 53f04d2

5 files changed

Lines changed: 7 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ env:
1010

1111
jobs:
1212
Build:
13-
runs-on: self-hosted
13+
runs-on: [ self-hosted, vm ]
1414
if : ${{ github.actor != 'dependabot[bot]' }}
1515
strategy:
1616
fail-fast: true
1717
steps:
1818
- uses: actions/checkout@v6
19+
with:
20+
fetch-depth: 50
1921
- name: Build Exordos Core
2022
env:
2123
PUSH_CFG: ${{ secrets.PUSH_CFG }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ __pycache__/
2020
.Python
2121
build/
2222
output/
23+
_tmp*/
2324
develop-eggs/
2425
dist/
2526
deps/

exordos_core/cmd/bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
LOG = logging.getLogger(__name__)
4444
USER = "ubuntu"
45-
GCTL_CFG_DIR = f"/home/{USER}/.genesis"
45+
GCTL_CFG_DIR = f"/home/{USER}/.exordos"
4646
SPEC_PATH = "/mnt/cdrom/spec.json"
4747
MANIFEST_PATH = "/mnt/cdrom/core.yaml"
4848
ECOSYSTEM_REALM_MANIFEST_PATH = "/mnt/cdrom/ecosystem_realm.yaml"

exordos_core/elements/dm/models.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,25 +144,21 @@ class Manifest(
144144
)
145145
requirements = properties.property(
146146
ra_types.Dict(),
147-
read_only=True,
148147
mutable=True,
149148
default=dict,
150149
)
151150
resources = properties.property(
152151
ra_types.Dict(),
153-
read_only=True,
154152
mutable=True,
155153
default=dict,
156154
)
157155
exports = properties.property(
158156
ra_types.Dict(),
159-
read_only=True,
160157
mutable=True,
161158
default=dict,
162159
)
163160
imports = properties.property(
164161
ra_types.Dict(),
165-
read_only=True,
166162
mutable=True,
167163
default=dict,
168164
)

genesis/images/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ GC_PATH="/opt/exordos_core"
2424
GC_CFG_DIR=/etc/exordos_core
2525
GC_ART_DIR="$GC_PATH/artifacts"
2626
VENV_PATH="$GC_PATH/.venv"
27-
BOOTSTRAP_PATH="/var/lib/genesis/bootstrap/scripts"
27+
BOOTSTRAP_PATH="/var/lib/exordos/bootstrap/scripts"
2828

2929
PG_VERSION="18"
3030
GC_PG_USER="exordos_core"
@@ -248,6 +248,6 @@ cat <<EOT | sudo tee /etc/motd
248248
Welcome to Exordos Core virtual machine!
249249
250250
All materials can be found here:
251-
https://github.com/infraguys
251+
https://github.com/exordos
252252
253253
EOT

0 commit comments

Comments
 (0)