Kubectl plugins are a way to extend the kubectl command to provide additional behavior. Generally, they are used to add new functionality to kubectl and automate scriptable workflows against a cluster. The official documentation on them is here.
Argo Rollouts offers a Kubectl plugin to enrich the experience with Rollouts, Experiments, and Analysis from the command line. It offers the ability to visualize the Argo Rollouts resources and run routine operations like promote or retry on those resources from the command.
- Install Argo Rollouts Kubectl plugin with curl.
curl -LO https://github.com/argoproj/argo-rollouts/releases/download/v0.6.0/kubectl-argo-rollouts-darwin-amd64
Note: For Linux dist, replace darwin
with linux
- Make the kubectl-argo-rollouts binary executable.
chmod +x ./kubectl-argo-rollouts-darwin-amd64
- Move the binary into your PATH.
sudo mv ./kubectl-argo-rollouts-darwin-amd64 /usr/local/bin/kubectl-argo-rollouts
Test to ensure the version you installed is up-to-date:
kubectl argo rollouts version
Currently not supported, but there are plans to make the Argo Rollouts kubectl a part of Krew. Please follow this issue for the most up-to-date information.
The best way to get information on the available Argo Rollouts kubectl plugin commands is by run kubectl argo rollouts
. The plugin lists all the available commands that the tool can execute along with a description of each commend. All the plugin's commands interact with the Kubernetes API server and use KubeConfig credentials for authentication. Since the plugin leverages the KubeConfig of the user running the command, the plugin has the permissions of those configs.
Similar to kubectl, the plugin uses many of the same flags as the kubectl. For example, the kubectl argo rollouts get canary-demo -w
command starts a watch on the canary-demo
rollout object similar to how the kubectl get deployment canary-demo -w
command starts a watch on a deployment.
In addition to encapsulating many routine commands, the Argo Rollouts kubectl plugin supports visualizing rollouts and experiments with the get command. The get command provides a clean representation of either the rollouts or the experiments running in a cluster. It returns a bunch of metadata on a resource and a tree view of the child resources created by the parent. As an example, here is a rollout retrieved with a get command:
Here is a table to explain some of the icons on the tree view:
Icon | Kind |
---|---|
⟳ | Rollout |
Σ | Experiment |
α | AnalysisRun |
# | Revision |
⧉ | ReplicaSet |
□ | Pod |
⊞ | Job |
If the get command includes the watch flag (-w
or --watch
), the terminal updates as the rollouts or experiment progress highlighting the progress.