Skip to content

iter8 run

iter8 run

Render experiment.yaml and run the experiment.

Synopsis

Render the file named "experiment.yaml" by combining an experiment chart with values, and run the experiment. This command is intended to be executed from the root of an Iter8 experiment chart. Values may be specified and are processed in the same manner as they are for Helm charts.

iter8 run [flags]

Examples

    # Render experiment.yaml and run the experiment
    iter8 run --set url=https://httpbin.org/get \
    --set SLOs.error-rate=0 \
    --set SLOs.latency-mean=50 \
    --set SLOs.latency-p90=100 \
    --set SLOs.latency-p'97\.5'=200

Options

      --dry                      render experiment.yaml without running the experiment
  -h, --help                     help for run
      --set stringArray          set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
      --set-file stringArray     set values from respective files specified via the command line (can specify multiple or separate values with commas: key1=path1,key2=path2)
      --set-string stringArray   set STRING values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
  -f, --values strings           specify values in a YAML file or a URL (can specify multiple)

SEE ALSO

  • iter8 - Kubernetes Release Optimizer
Auto generated by spf13/cobra on 3-Feb-2022
Back to top