Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions MILESTONE_PLAN.md
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ validator:
nodeType: "vn" # validator node

image:
repository: ghcr.io/movementlabsxyz/aptos-node
repository: ghcr.io/movement-network/aptos-node
tag: "latest"
pullPolicy: IfNotPresent

Expand Down Expand Up @@ -876,7 +876,7 @@ externalSecrets:

genesis:
# Genesis files will be downloaded from GitHub
repository: "movementlabsxyz/movement-networks"
repository: "movement-network/movement-networks"
branch: "main"
network: "devnet"

Expand Down Expand Up @@ -1350,7 +1350,7 @@ vfn:
nodeType: "vfn" # validator full node

image:
repository: ghcr.io/movementlabsxyz/aptos-node
repository: ghcr.io/movement-network/aptos-node
tag: "latest"
pullPolicy: IfNotPresent

Expand Down Expand Up @@ -1507,7 +1507,7 @@ fullnode:
nodeType: "fn" # full node

image:
repository: ghcr.io/movementlabsxyz/aptos-node
repository: ghcr.io/movement-network/aptos-node
tag: "latest"

network:
Expand Down
4 changes: 2 additions & 2 deletions charts/movement-node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ kubectl exec -n movement-l1 fullnode-01-0 -- curl -s localhost:9102/metrics | gr
|-----------|-------------|---------|
| `node.type` | Node type: validator, vfn, or fullnode | `fullnode` |
| `node.name` | Node name | `node-01` |
| `image.repository` | Container image repository | `ghcr.io/movementlabsxyz/aptos-node` |
| `image.repository` | Container image repository | `ghcr.io/movement-network/aptos-node` |
| `image.tag` | Container image tag | `latest` |
| `network.name` | Network name (testnet, mainnet, etc.) | `testnet` |
| `storage.size` | Persistent volume size | `500Gi` |
Expand All @@ -432,4 +432,4 @@ Apache 2.0
## Support

- Documentation: https://docs.movementlabs.xyz
- Issues: https://github.com/movementlabsxyz/movement/issues
- Issues: https://github.com/movement-network/movement/issues
6 changes: 3 additions & 3 deletions charts/movement-node/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ spec:
- |
set -ex
mkdir -p /opt/data/genesis
curl -o /opt/data/genesis/genesis.blob https://raw.githubusercontent.com/movementlabsxyz/movement-networks/main/{{ .Values.network.name }}/genesis.blob
curl -o /opt/data/genesis/genesis_waypoint.txt https://raw.githubusercontent.com/movementlabsxyz/movement-networks/main/{{ .Values.network.name }}/genesis_waypoint.txt
curl -o /opt/data/genesis/waypoint.txt https://raw.githubusercontent.com/movementlabsxyz/movement-networks/main/{{ .Values.network.name }}/waypoint.txt
curl -o /opt/data/genesis/genesis.blob https://raw.githubusercontent.com/movement-network/movement-networks/main/{{ .Values.network.name }}/genesis.blob
curl -o /opt/data/genesis/genesis_waypoint.txt https://raw.githubusercontent.com/movement-network/movement-networks/main/{{ .Values.network.name }}/genesis_waypoint.txt
curl -o /opt/data/genesis/waypoint.txt https://raw.githubusercontent.com/movement-network/movement-networks/main/{{ .Values.network.name }}/waypoint.txt
volumeMounts:
- name: data
mountPath: /opt/data
Expand Down
4 changes: 2 additions & 2 deletions charts/movement-node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ node:

# Container image configuration
image:
repository: ghcr.io/movementlabsxyz/aptos-node
repository: ghcr.io/movement-network/aptos-node
tag: "latest"
pullPolicy: IfNotPresent

Expand All @@ -24,7 +24,7 @@ dataDir: "/opt/data/aptos"
# Genesis configuration (for validator and VFN)
genesis:
enabled: true # Auto-enabled for validator/vfn, can be disabled for fullnode with S3 bootstrap
repository: "movementlabsxyz/movement-networks"
repository: "movement-network/movement-networks"
branch: "main"

# Bootstrap configuration (for fullnode with S3)
Expand Down
2 changes: 1 addition & 1 deletion examples/public-fullnode/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AWS_PROFILE=your-aws-profile
AWS_REGION=us-east-1

# Docker Image Configuration (optional)
# DOCKER_IMAGE_REPOSITORY=ghcr.io/movementlabsxyz/aptos-node
# DOCKER_IMAGE_REPOSITORY=ghcr.io/movement-network/aptos-node
# DOCKER_IMAGE_TAG=latest

# Cluster Configuration
Expand Down
2 changes: 1 addition & 1 deletion examples/public-fullnode/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def build_helm_config(env_vars: dict, outputs: dict) -> dict:

# Docker image configuration (defaults match values.yaml)
docker_image_repo = env_vars.get(
"DOCKER_IMAGE_REPOSITORY", "ghcr.io/movementlabsxyz/aptos-node"
"DOCKER_IMAGE_REPOSITORY", "ghcr.io/movement-network/aptos-node"
).strip()
docker_image_tag = env_vars.get("DOCKER_IMAGE_TAG", "latest").strip()

Expand Down
2 changes: 1 addition & 1 deletion examples/validator-vfn/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AWS_PROFILE=your-aws-profile
AWS_REGION=us-east-1

# Docker Image Configuration (optional)
# DOCKER_IMAGE_REPOSITORY=ghcr.io/movementlabsxyz/aptos-node
# DOCKER_IMAGE_REPOSITORY=ghcr.io/movement-network/aptos-node
# DOCKER_IMAGE_TAG=latest

# Cluster Configuration
Expand Down
2 changes: 1 addition & 1 deletion examples/validator-vfn/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def deploy_node(

# Docker image configuration (defaults match values.yaml)
docker_image_repo = env_vars.get(
"DOCKER_IMAGE_REPOSITORY", "ghcr.io/movementlabsxyz/aptos-node"
"DOCKER_IMAGE_REPOSITORY", "ghcr.io/movement-network/aptos-node"
).strip()
docker_image_tag = env_vars.get("DOCKER_IMAGE_TAG", "latest").strip()
network_name = str(env_vars.get("NETWORK_NAME", "testnet")).strip()
Expand Down
4 changes: 2 additions & 2 deletions validator-infrastructure-redesign-v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Movement validator infrastructure is currently managed across two CDKTF (TypeScr
│ │ devnet.aptosNodes: │ │
│ │ vn-01: (Validator Node) │ │
│ │ nodeType: vn │ │
│ │ image: ghcr.io/movementlabsxyz/aptos-node │ │
│ │ image: ghcr.io/movement-network/aptos-node │ │
│ │ resources: 12 CPU, 24Gi memory │ │
│ │ storageSize: 100Gi │ │
│ │ │ │
Expand Down Expand Up @@ -766,7 +766,7 @@ Step 3: Remove Old Validators (Week 7)
- [AWS Secrets Manager](https://docs.aws.amazon.com/secretsmanager/)

#### **Movement Network**
- [Movement Network GitHub](https://github.com/movementlabsxyz)
- [Movement Network GitHub](https://github.com/movement-network)
- [Movement Network Documentation](https://docs.movementnetwork.xyz)

### 10.3 Comparison with Current State
Expand Down
Loading