Skip to content

Commit

Permalink
Normalise commands
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Prodan <[email protected]>
  • Loading branch information
stefanprodan committed Nov 9, 2023
1 parent d812c99 commit 415cce9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Run kustomize benchmark
run: KS=500 timoni bundle apply -f timoni/bundles/flux-kustomize-benchmark.cue --runtime-from-env --timeout=10m
- name: Run helm benchmark
run: HRS=500 timoni bundle apply -f timoni/bundles/flux-helm-benchmark.cue --runtime-from-env --timeout=10m
run: HR=500 timoni bundle apply -f timoni/bundles/flux-helm-benchmark.cue --runtime-from-env --timeout=10m
- name: Debug failure
if: failure()
run: |
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ make timoni-push

### Flux Kustomization Benchmark

Run benchmark for OCI artifact pull and Flux Kustomization install:
Run the benchmark for OCI artifact pull and Flux Kustomization install:

```shell
KS=100 timoni bundle apply -f timoni/bundles/flux-kustomize-benchmark.cue --runtime-from-env --timeout=10m
```

Run benchmark for Flux Kustomization upgrade:
Run the benchmark for Flux Kustomization upgrade:

```shell
KS=100 MCPU=2 timoni bundle apply -f timoni/bundles/flux-kustomize-benchmark.cue --runtime-from-env --timeout=10m
Expand All @@ -93,16 +93,16 @@ timoni bundle delete flux-kustomize-benchmark

### Flux HelmRelease Benchmark

Run benchmark for Helm chart pull and Helm Release install:
Run the benchmark for Helm chart pull and Flux HelmRelease install:

```shell
HRS=100 timoni bundle apply -f timoni/bundles/flux-helm-benchmark.cue --runtime-from-env --timeout=10m
HR=100 timoni bundle apply -f timoni/bundles/flux-helm-benchmark.cue --runtime-from-env --timeout=10m
```

Run benchmark for Helm Release upgrade:
Run the benchmark for Flux HelmRelease upgrade:

```shell
HRS=100 MCPU=2 timoni bundle apply -f timoni/bundles/flux-helm-benchmark.cue --runtime-from-env --timeout=10m
HR=100 MCPU=2 timoni bundle apply -f timoni/bundles/flux-helm-benchmark.cue --runtime-from-env --timeout=10m
```

Teardown:
Expand Down
2 changes: 1 addition & 1 deletion timoni/bundles/flux-helm-benchmark.cue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bundle: {
version: "6.5.3"
interval: 60
}
releases: 100 @timoni(runtime:number:HRS)
releases: 100 @timoni(runtime:number:HR)
replicas: 0
requests: {
cpu: 1 @timoni(runtime:number:MCPU)
Expand Down

0 comments on commit 415cce9

Please sign in to comment.