Skip to content

Fix CD test issue. #1263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/_run-helm-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,9 @@ jobs:
if [[ "${service,,}" == *"third_parties"* ]]; then
CHART_NAME="$(echo "${service,,}"|cut -d'/' -f2)" # bridgetower
else
CHART_NAME="${service_name}" # agent
CHART_NAME="${service_name}" # web_retrievers
fi
CHART_NAME=$(echo "$CHART_NAME" | tr -cd 'a-z0-9')
echo "service_name=$service_name" >> $GITHUB_ENV
echo "CHART_NAME=$CHART_NAME" >> $GITHUB_ENV
echo "RELEASE_NAME=${CHART_NAME}$(date +%d%H%M%S)" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion comps/guardrails/deployment/kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@

```
export HFTOKEN="insert-your-huggingface-token-here"
helm install guardrails oci://ghcr.io/opea-project/charts/guardrails --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} -f cpu-values.yaml
helm install guardrails oci://ghcr.io/opea-project/charts/guardrails-usvc --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} -f cpu-values.yaml
```
Loading