-
Notifications
You must be signed in to change notification settings - Fork 4
44 lines (41 loc) · 1.42 KB
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: benchmark
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
bench:
strategy:
matrix:
RESOURCES: [ 100, 500, 1000 ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Install tools
run: make tools
- name: Create cluster
run: make up
- name: Push modules
run: make timoni-push
- name: Install Flux
run: make flux-up
- name: Run kustomize install benchmark
run: KS=${{ matrix.RESOURCES }} timoni bundle apply -f timoni/bundles/flux-benchmark.cue --runtime-from-env --timeout=30m
- name: Run kustomize upgrade benchmark
run: KS=${{ matrix.RESOURCES }} MCPU=2 timoni bundle apply -f timoni/bundles/flux-benchmark.cue --runtime-from-env --timeout=30m
- name: Run helm install benchmark
run: HR=${{ matrix.RESOURCES }} timoni bundle apply -f timoni/bundles/flux-benchmark.cue --runtime-from-env --timeout=30m
- name: Run helm upgrade benchmark
run: HR=${{ matrix.RESOURCES }} MCPU=2 timoni bundle apply -f timoni/bundles/flux-benchmark.cue --runtime-from-env --timeout=30m
- name: Debug failure
if: failure()
run: |
kubectl -n flux-system get pods
flux get all --all-namespaces