Skip to content

Commit

Permalink
added collection
Browse files Browse the repository at this point in the history
  • Loading branch information
benitomartin committed Jun 29, 2024
1 parent a64ad2c commit 3fb27c0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,11 @@ jobs:
kubectl delete secret openai-secret || true
kubectl delete secret qdrant-secret || true
kubectl create secret generic openai-secret --from-literal=OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}
kubectl create secret generic qdrant-secret --from-literal=QDRANT_API_KEY=${{ secrets.QDRANT_API_KEY }} --from-literal=QDRANT_URL=${{ secrets.QDRANT_URL }} --from-literal=COLLECTION_NAME=${{ secrets.COLLECTION_NAME }}
kubectl create secret generic qdrant-secret \
--from-literal=QDRANT_API_KEY=${{ secrets.QDRANT_API_KEY }} \
--from-literal=QDRANT_URL=${{ secrets.QDRANT_URL }} \
--from-literal=COLLECTION_NAME=${{ secrets.COLLECTION_NAME }}
# Deploy the Docker image to the GKE cluster
- name: Deploy
run: |-
Expand Down

0 comments on commit 3fb27c0

Please sign in to comment.