Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Huggingface default Secret name (#184)
Huggingface Secret name should be specific to "huggingface", I think this was a regression from #133 ```bash (base) ➜ kubeai git:(main) helm template kubeai ./charts/kubeai | grep -A 2 Secret kind: Secret metadata: name: kubeai # OLD NAME (base) ➜ kubeai git:(main) git checkout - Switched to branch 'fix-huggingface-secret-name' Your branch is up to date with 'origin/fix-huggingface-secret-name'. (base) ➜ kubeai git:(fix-huggingface-secret-name) helm template kubeai ./charts/kubeai | grep -A 2 Secret kind: Secret metadata: name: kubeai-huggingface # NEW NAME ``` --------- Co-authored-by: Sam Stoelinga <[email protected]>
- Loading branch information