Conversation
| dependencies: | ||
| - name: chromadb | ||
| version: 0.1.22 | ||
| version: 0.1.23 |
There was a problem hiding this comment.
The dependency version in the README example should be updated from 0.1.23 to 0.1.24 to match the new chart version being released in this PR. This ensures users following the documentation will use the latest version.
| version: 0.1.23 | |
| version: 0.1.24 |
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
| password: null # The string used as the auth.basic password. Only used if value not null, otherwise a random string will be generated and used. | ||
| token: | ||
| headerType: "Authorization" #possible values Authorization, X-Chroma-Token | ||
| headerType: "Authorization" #possible values Authorization, X-Chroma-Token |
There was a problem hiding this comment.
There appears to be a duplicate configuration entry for headerType: "Authorization" in the values.yaml file. The same line appears twice at lines 128 and 134. One of these duplicate entries should be removed to maintain clean configuration and prevent potential confusion.
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
| ``` | ||
| {{ else }} | ||
| ```bash | ||
| export CHROMA_TOKEN=$(kubectl --namespace default get secret chromadb-auth -o jsonpath="{.data.token}" | base64 --decode) |
There was a problem hiding this comment.
The namespace in this command is hardcoded to default, which may not match the actual release namespace. Consider updating it to use the dynamic namespace value:
export CHROMA_TOKEN=$(kubectl --namespace {{ .Release.Namespace }} get secret chromadb-auth -o jsonpath="{.data.token}" | base64 --decode)This ensures the command works correctly regardless of which namespace the chart is deployed to.
| export CHROMA_TOKEN=$(kubectl --namespace default get secret chromadb-auth -o jsonpath="{.data.token}" | base64 --decode) | |
| export CHROMA_TOKEN=$(kubectl --namespace {{ .Release.Namespace }} get secret chromadb-auth -o jsonpath="{.data.token}" | base64 --decode) |
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
No description provided.