Skip to content

Commit

Permalink
feat: Chroma auth support
Browse files Browse the repository at this point in the history
- Adding debug

Refs: #13
  • Loading branch information
tazarov committed Sep 9, 2023
1 parent ade27ca commit 27f61de
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,17 @@ jobs:
--set chromadb.chromaVersion=${{ matrix.chroma-version }}
- name: Wait for deployment to be ready
run: |
set -e
kubectl wait \
--for=condition=ready pod \
--selector=app.kubernetes.io/name=chromadb \
--timeout=180s
if [ $? -ne 0 ]; then
echo "Deployment not ready"
kubectl get pods
kubectl get events
kubectl logs -l app.kubernetes.io/name=chromadb
exit 1
fi
- name: Hearthbeat
run: |
set -e
Expand Down

0 comments on commit 27f61de

Please sign in to comment.