Skip to content

Commit

Permalink
Moved test values to file
Browse files Browse the repository at this point in the history
Also additional debugging
  • Loading branch information
blaskoa committed Nov 13, 2023
1 parent 79c2e05 commit 8d156ad
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ jobs:
- name: Install helm chart
run: |
kubectl get storageclass
helm install smartface . --set rabbitmq.persistence.enabled=false --set postgresql.primary.persistence.enabled=false --set minio.persistence.enabled=false
kubectl get nodes
kubectl describe node
helm install -f ci-values.yaml smartface .
kubectl rollout status deployment sf-api --timeout=60s || true
kubectl describe deployment sf-api
kubectl describe statefulset smartface-rabbitmq
Expand Down
25 changes: 25 additions & 0 deletions ci-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
rabbitmq:
persistence:
enabled: false
postgresql:
primary:
persistence:
enabled: false
minio:
persistence:
enabled: false

api:
resources: {}
authApi:
resources: {}
graphqlApi:
resources: {}
detector:
resources: {}
extractor:
resources: {}
matcher:
resources: {}
liveness:
resources: {}

0 comments on commit 8d156ad

Please sign in to comment.