Skip to content

CLI Reference

Reference for the AMDF command-line interface.

Installation

pip install amdf

Global Options

Option Description
--help Show help message
--version Show version information

Commands

amdf version

Show AMDF version information.

amdf version

Output:

AMDF version: x.y.z


Troubleshooting

Common Issues

Command not found:

# Check installation
pip list | grep amdf

# Reinstall if needed
pip install -e . --force-reinstall

No CRDs found:

# Verify cluster access
kubectl get crds

# Check context
kubectl config current-context

Permission denied:

# Check CRD permissions
kubectl auth can-i get customresourcedefinitions

See Also