- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
Pixie's CLI is the fastest and easiest way to install and manage your Pixie installation.
Review Pixie's requirements to make sure that your Kubernetes cluster is supported.
Determine if you already have Operator Lifecycle Manager (OLM) deployed to your cluster, possibly to the default olm
namespace. Pixie uses the Kubernetes Operator pattern to manage its Vizier, which handles data collection and query execution (see the Architecture diagram). The OLM is used to install, update and manage the Vizier Operator.
You can install the CLI in one of four ways:
# Copy and run command to install the Pixie CLI.bash -c "$(curl -fsSL https://withpixie.ai/install.sh)"
brew install pixie
Download the correct binary for your operating system and make it executable:
# Download the latest Pixie linux binary.curl -o px https://storage.googleapis.com/pixie-dev-public/cli/latest/cli_linux_amd64# (Optional) Check the signature matches.curl -o px_checksum https://storage.googleapis.com/pixie-dev-public/cli/latest/cli_linux_amd64.sha256cat px_checksumsha256sum px# Make it executable.chmod +x px# (Optional) Move it to another location that has executables.mv px /usr/local/bin
alias px="docker run -i --rm -v ${HOME}/.pixie:/root/.pixie pixielabs/px"
Download the assets:
Install the Pixie package:
# Install Pixie .deb package.dpkg -i pixie-px.x86_64.deb
Download the assets:
Install the Pixie package:
# Install Pixie .rpm package.rpm -i pixie-px.x86_64.rpm
# List Pixie deployment options.px deploy --help# Deploy the Pixie Platform in your K8s cluster (No OLM present on cluster).px deploy# Deploy the Pixie Platform in your K8s cluster (OLM already exists on cluster).px deploy --deploy_olm=false# Deploy Pixie with a specific memory limit (2Gi is the default, 1Gi is the minimum recommended)px deploy --pem_memory_limit=1Gi
Pixie will deploy pods to the pl
, px-operator
, and olm
(if deploying the OLM) namespaces.
For more deploy options that you can specify to configure Pixie, refer to our deploy options.