potctl Resource Management
Deploying New Edge Compute Networks
potctl deploys an entire ECN from a single YAML file:
potctl deploy -f ecn.yaml
You can also deploy individual components:
potctl deploy -f controlplane.yaml
potctl deploy -f controller.yaml
potctl deploy -f agent.yaml
potctl deploy -f application.yaml
Deploy commands are idempotent. If a deploy fails, run the same command again.
Platform YAML specs: Control Plane, Application.
Delete Components of Edge Compute Networks
Deleting Control Planes, Controllers, and Edgelet nodes terminates daemons on remote hosts.
potctl delete controller alpaca-1
potctl delete agent kiwi-1
potctl delete application health-care-app
potctl delete microservice health-case-ui
To undo a deletion, re-run the deploy command for that resource.
Wipe an entire ECN:
potctl delete all
Delete a namespace and its resources:
potctl delete namespace zoo-1 --force
See anything wrong with the document? Help us improve it!