PipeOps Installer
CLI
Install the latest CLI:
curl -fsSL https://get.pipeops.dev/cli.sh | bash
Install a specific version:
VERSION=v1.2.3 curl -fsSL https://get.pipeops.dev/cli.sh | bash
Install to a custom prefix:
PREFIX=/opt/pipeops curl -fsSL https://get.pipeops.dev/cli.sh | bash
Kubernetes Installer
Bootstrap a cluster and install the agent (delegates to upstream installer):
curl -fsSL https://get.pipeops.dev/k8-install.sh | bash
Alias:
curl -fsSL https://get.pipeops.dev/agent.sh | bash
Pin a version:
VERSION=v1.2.3 curl -fsSL https://get.pipeops.dev/k8-install.sh | bash
Kubernetes Agent
Apply to an existing cluster (creates namespace if missing):
curl -fsSL https://get.pipeops.dev/k8-agent.sh | bash -s -- --namespace pipeops-system
Immutable selector error? Recreate the Deployment safely:
curl -fsSL https://get.pipeops.dev/k8-agent.sh | bash -s -- --namespace pipeops-system --recreate
Or apply a manifest directly (replace with your pinned YAML):
kubectl apply -f https://get.pipeops.dev/k8-agent.yaml
Served via GitHub Pages. Update scripts/manifests in this repo to publish changes.