Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit ac518a2

Browse files
authored
bugfix: set the namespace while creating the hf_token secret (#340)
Signed-off-by: Brent Salisbury <[email protected]>
1 parent 8f9eca7 commit ac518a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

quickstart/llmd-installer.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,9 @@ install() {
425425
HF_KEY=$(yq -r .sampleApplication.model.auth.hfToken.key "${VALUES_PATH}")
426426
$KCMD delete secret "${HF_NAME}" -n "${NAMESPACE}" --ignore-not-found
427427
$KCMD create secret generic "${HF_NAME}" \
428+
--namespace "${NAMESPACE}" \
428429
--from-literal="${HF_KEY}=${HF_TOKEN}" \
429-
--dry-run=client -o yaml | $KCMD apply -f -
430+
--dry-run=client -o yaml | $KCMD apply -n "${NAMESPACE}" -f -
430431
log_success "HF token secret created"
431432

432433
# can be fetched non-invasily if using kgateway or not

0 commit comments

Comments
 (0)