Skip to main content

Aptos Kubernetes Deployment

Aptos fullnode deployment should model the official PFN/VFN runtime expectations: persistent data, public peer networking, private inspection/admin endpoints, and gatewayed REST API.

Chart source

charts/blockchain-node/examples/aptos-values.yaml

Concrete chart model

ComponentPublic valueOfficial basis
Image familyaptoslabs/validator or pinned operator imageAptos Docker and Helm docs.
Commandaptos-node -f /opt/aptos/etc/fullnode.yamlAptos Docker PFN docs.
Data path/opt/aptos/dataAptos fullnode config.
Public peer port6182/TCP for PFN public networkAptos PFN requirements.
REST API8080/TCPAptos API config; expose only through auth/rate limit.
Inspection metrics9101/TCP, /metricsAptos inspection service docs.
Admin service9102/TCPInternal only; never public.
Production sizinghigh CPU, 128Gi RAM class, multi-TB NVMe for validator/VFN-grade nodesAptos node requirements.

Render

helm template aptos charts/blockchain-node \
-f charts/blockchain-node/examples/aptos-values.yaml

Exposure policy

  • Public peer networking can be exposed.
  • REST API is private or gatewayed with authentication/rate limiting.
  • Inspection and admin services are never public.
  • NTP/system clock synchronization is required operationally.