From daa1746b4a66338ba8a75f7482de7b166bed1c2e Mon Sep 17 00:00:00 2001 From: "Richard Kuo (Onyx)" Date: Tue, 13 May 2025 09:56:07 -0700 Subject: [PATCH] just readme fixes --- deployment/helm/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/deployment/helm/README.md b/deployment/helm/README.md index be5e5ef3aa39..99e24216f49d 100644 --- a/deployment/helm/README.md +++ b/deployment/helm/README.md @@ -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. \ No newline at end of file