just readme fixes

This commit is contained in:
Richard Kuo (Onyx)
2025-05-13 09:56:07 -07:00
parent d8068f0a68
commit daa1746b4a

View File

@@ -15,7 +15,12 @@
## Test the entire cluster manually
* helm install onyx . -n onyx --set postgresql.primary.persistence.enabled=false
* the postgres flag is to keep the storage ephemeral for testing, you probably don't want to set that in prod
* no flag for ephemeral vespa storage yet, might be good for testing
* kubectl -n onyx port-forward service/onyx-nginx 8080:80
* this will forward the local port 8080 to the installed chart for you to run tests, etc.
* When you are finished
* helm uninstall onyx -n onyx
* Vespa leaves behind a PVC - delete it if you are completely done
* k -n onyx get pvc
* k -n onyx delete pvc vespa-storage-da-vespa-0
* If you didn't disable Postgres persistence earlier, you may want to delete that PVC too.