Skip to content

Commit

Permalink
chore: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
moshloop committed Dec 21, 2023
1 parent 58e076b commit cfa7da1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
helm dependency build ./chart
helm repo add flanksource https://flanksource.github.io/charts
helm repo add ory https://k8s.ory.sh/helm/charts
ct install --charts ./chart --namespace default --helm-extra-args="--timeout 10m" --skip-clean-up
ct install --charts ./chart --namespace default --helm-extra-args="--timeout 10m -f chart/values.minimal.yaml" --skip-clean-up
- name: Test deploying topology
run: test/test.sh
Expand All @@ -70,6 +70,7 @@ jobs:
run: |
kubectl logs deploy/mission-control > mission-control.log
kubectl logs deploy/canary-checker > canary-checker.log
kubectl logs postgresql-0 > postgresql.log
kubectl logs deploy/config-db > config-db.log
kubectl logs deploy/kratos > kratos.log
kubectl logs deploy/apm-hub > apm-hub .log
Expand Down
15 changes: 15 additions & 0 deletions chart/values.minimal.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
db:
create: true
conf:
shared_buffers: 512MB
effective_cache_size: 512MB
storage: 5Gi
shmVolume: 64Mi
resources:
requests:
memory: 256Mi

resources:
requests:
cpu: 100m
memory: 256Mi

0 comments on commit cfa7da1

Please sign in to comment.