Skip to content

iter8 hub

iter8 hub

Download an experiment chart from Iter8 hub

Synopsis

Download an experiment chart from the Iter8 hub. This is useful for fetching experiments to inspect, modify, run, or repackage. By default, this command looks for the specified experiment chart in the public Iter8 hub. It is also possible to use third party hubs by setting the ITER8HUB environment variable.

Environment variables:

Name Description
$ITER8HUB Iter8 hub location. Default value: github.com/iter8-tools/iter8.git//hub

The Iter8 hub location follows the following syntax:

HOST/OWNER/REPO[?ref=branch]//path-to-experiment-folder-relative-to-root-of-the-repo

For example, the public Iter8 hub is located at: github.com/iter8-tools/iter8.git?ref=master//hub

iter8 hub [flags]

Examples

# download the load-test-http experiment chart from the public Iter8 hub
iter8 hub -e load-test-http

# custom Iter8 hubs are simply github repos that host Iter8 experiment charts
# Suppose you forked github.com/iter8-tools/iter8 under the GitHub account $GHUSER,
# created a branch called 'ml', and pushed a new experiment chart 
# called 'tensorflow' under the path 'my/path/to/hub'. 
# It can now be downloaded as follows.

export ITER8HUB=github.com/$GHUSER/iter8.git?ref=ml//my/path/to/hub
iter8 hub -e tensorflow

Options

  -e, --experiment string   valid experiment chart located under hub
  -h, --help                help for hub

SEE ALSO

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