release 0.2.0

This commit is contained in:
Waylon S. Walker 2025-03-25 10:14:19 -05:00
parent 75c7b30056
commit 90491d17bf
4 changed files with 22 additions and 1 deletions

View file

@ -38,6 +38,12 @@ This will install the `krayt` command to `/usr/local/bin`.
# Create a new inspector and apply it directly
krayt create | kubectl apply -f -
# Use a custom image
krayt create --image custom-image:latest | kubectl apply -f -
# Use a private image with pull secret
krayt create --image private-registry.com/image:latest --imagepullsecret my-registry-secret | kubectl apply -f -
# Or review the manifest first
krayt create > inspector.yaml
kubectl apply -f inspector.yaml