Skip to content

Commit c6b677c

Browse files
committed
Rename ecosystem_instance to ecosystem_realm
1 parent 7bb2ced commit c6b677c

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

genesis/genesis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ build:
6464
- ALLOW_USER_PASSWD
6565
- FREQUENT_LOG_VACUUM
6666
# eco manifest must be after core manifest!
67-
- manifest: manifests/ecosystem_instance.yaml.j2
67+
- manifest: manifests/ecosystem_realm.yaml.j2
6868
- manifest: manifests/core-node-set-example.yaml.j2
6969
- manifest: manifests/core-service-example.yaml.j2

genesis/manifests/ecosystem_instance.yaml.j2 renamed to genesis/manifests/ecosystem_realm.yaml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: "ecosystem_instance"
2-
description: "Genesis Ecosystem instance"
1+
name: "ecosystem_realm"
2+
description: "Genesis Ecosystem realm"
33
schema_version: 1
44
version: "{{ version }}"
55
api_version: "v1"

genesis_core/cmd/bootstrap.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
GCTL_CFG_DIR = f"/home/{USER}/.genesis"
5252
SPEC_PATH = "/mnt/cdrom/spec.json"
5353
MANIFEST_PATH = "/mnt/cdrom/core.yaml"
54-
ECOSYSTEM_INSTANCE_MANIFEST_PATH = "/mnt/cdrom/ecosystem_instance.yaml"
54+
ECOSYSTEM_REALM_MANIFEST_PATH = "/mnt/cdrom/ecosystem_realm.yaml"
5555
MAIN_SUBNET_UUID = sys_uuid.UUID("c910a7e1-61ae-4d56-bdd6-a59faa3cbda3")
5656

5757

@@ -67,9 +67,9 @@
6767
help="Path to the core manifest",
6868
),
6969
cfg.StrOpt(
70-
"ecosystem_instance_manifest_path",
71-
default=ECOSYSTEM_INSTANCE_MANIFEST_PATH,
72-
help="Path to the ecosystem instance manifest",
70+
"ecosystem_realm_manifest_path",
71+
default=ECOSYSTEM_REALM_MANIFEST_PATH,
72+
help="Path to the ecosystem realm manifest",
7373
),
7474
cfg.StrOpt(
7575
"core_endpoint",
@@ -749,8 +749,8 @@ def main() -> None:
749749
_install_element_manifest(spec, "core", CONF.manifest_path)
750750
_install_element_manifest(
751751
spec,
752-
"ecosystem_instance",
753-
CONF.ecosystem_instance_manifest_path,
752+
"ecosystem_realm",
753+
CONF.ecosystem_realm_manifest_path,
754754
)
755755
_set_defaults(spec)
756756
return

0 commit comments

Comments
 (0)