Blog
Product
4
minutes

The Top 10 Qovery CLI Commands You Must Know

The Qovery CLI gives developers full control of their infrastructure from the terminal. Whether you're deploying apps, managing environments, or debugging issues, these commands will save you time and clicks.
September 26, 2025
Romaric Philogène
CEO & Co-founder
Summary
Twitter icon
linkedin icon

Once you have installed the Qovery CLI, here are 10 Qovery CLI commands you must know - plus a few power tips.

1/ qovery shell

Open a shell session inside a running container

Ideal for debugging or manual inspection in live environments.

qovery shell

Select the right container if the app runs multiple services.

You can even specify the web console URL of your app to connect to it directly.

qovery shell https://console.qovery.com/organization/...

2/ qovery port-forward

Forward a remote port to your local machine

Use this to connect to internal services like Postgres, Redis, or internal APIs securely.

qovery port-forward -p 5432 

Qovery handles all auth and routing under the hood.

Same as with the shell, by convenience, you can specify the web console URL to port-forward directly to a specific app.

qovery port-forward -p 5432 https://console.qovery.com/organization/...

3/ qovery cluster debug-pod

Launch an ephemeral debug pod in your cluster

This is for platform engineers. It starts a pod with essential tools like kubectl, k9s, curl, and it is excellent for troubleshooting directly inside the cluster.

qovery cluster debug-pod --cluster-id 

Requires organization admin permissions.

4/ qovery environment clone

Clone an entire environment in one command

It copies your apps, databases, jobs, and configurations - perfect for setting up preview, staging, or temporary test environments.

qovery environment clone --environment production --new-environment-name prod-copy

Everything is copied and redeployed automatically.

5/ qovery environment deploy

Deploy and control an entire environment

Besides deploying, this command lets you stop, restart, or delete environments.

qovery environment deploy --environment production

It’s your environment control panel via CLI.

6/ qovery application env

Manage environment variables and secrets for an app

Set, list, edit, or delete env vars directly from your terminal.

qovery application env list

To create an environment variable

qovery application env create --key MY_ENV_VAR --value "this is my value"

Secure by design - no secrets are ever exposed in plaintext.

7/ qovery logs

Stream your application logs in real-time

Useful for both runtime debugging and build output.

qovery logs

You can also fetch logs for jobs and databases.

8/ qovery demo

Spin up a local k3s cluster and play with Qovery

This command sets up Qovery locally using Docker. No external infrastructure needed.

qovery demo

Great for quick testing or internal demos.

9/ qovery auth --headless

Authenticate without using your browser

Useful in headless or remote environments (e.g. CI, SSH sessions, remote VM).

qovery auth --headless

Generates a token-based flow for secure CLI auth.

10/ JSON Output Support: --json

Get structured CLI output for automation and scripting

Any list or info command can be extended with --json to output machine-readable data.

qovery application env list --json -n "Terraform RDS" --organization "Qovery Realm" --project "BigBank" --environment "blueprint-x" | jq -r '.[] | select(.key == "RDS_INSTANCE_ENDPOINT").interpolated_value'

Perfect for scripting workflows or integrating with other tools.

Bonus: qovery service list --markdown

Generate a Markdown-formatted list of your running services

Ideal for CI/CD pipelines and documentation. It outputs service names and their public URLs in Markdown format.

qovery service list --markdown

This makes it easy to display or publish the list of active services after deployment (e.g., in a GitHub PR comment, Slack message, or Confluence page).

Wrap Up

The Qovery CLI gives users full control over their applications and infrastructure from the terminal - without dealing with the complexity of Cloud and Kubernetes. Whether you're spinning up environments, debugging issues, or automating workflows, these commands help you move faster and stay in control.

Every command respects Qovery’s permission model, making it safe for teams of any size. If you haven't tried the CLI yet, install it and start integrating it into your workflows:

👉 Install the CLI

Want more advanced tips, scripting examples, or automation use cases? Let us know - we’ll cover them in a follow-up.

Share on :
Twitter icon
linkedin icon
Tired of fighting your Kubernetes platform?
Qovery provides a unified Kubernetes control plane for cluster provisioning, security, and deployments - giving you an enterprise-grade platform without the DIY overhead.
See it in action

Suggested articles

Kubernetes
8
 minutes
Kubernetes management in 2026: mastering Day-2 ops with agentic control

The cluster coming up is the easy part. What catches teams off guard is what happens six months later: certificates expire without a single alert, node pools run at 40% over-provisioned because nobody revisited the initial resource requests, and a manual kubectl patch applied during a 2am incident is now permanent state. Agentic control planes enforce declared state continuously. Monitoring tools just report the problem.

Mélanie Dallé
Senior Marketing Manager
Kubernetes
6
 minutes
Kubernetes observability at scale: how to cut APM costs without losing visibility

The instinct when setting up Kubernetes observability is to instrument everything and send it all to your APM vendor. That works fine at ten nodes. At a hundred, the bill becomes a board-level conversation. The less obvious problem is the fix most teams reach for: aggressive sampling. That is how intermittent failures affecting 1% of requests disappear from your monitoring entirely.

Mélanie Dallé
Senior Marketing Manager
Kubernetes
 minutes
How to automate environment sleeping and stop paying for idle Kubernetes resources

Scaling your deployments to zero is only half the battle. If your cluster autoscaler does not aggressively bin-pack and terminate the underlying worker nodes, you are still paying for idle metal. True environment sleeping requires tight integration between your ingress layer and your node provisioner to actually realize FinOps savings.

Mélanie Dallé
Senior Marketing Manager
Kubernetes
DevOps
6
 minutes
10 best Kubernetes management tools for enterprise fleets in 2026

The structure, table, tool list, and code blocks are all worth keeping. The main work is fixing AI-isms in the prose, updating the case study to real metrics, correcting the FAQ format, and replacing the CTAs with the proper HTML blocks. The tool descriptions need the "Core strengths / Potential weaknesses" headers made less template-y, and the intro needs a sharper human voice.

Mélanie Dallé
Senior Marketing Manager
DevOps
Kubernetes
Platform Engineering
6
 minutes
10 best Red Hat OpenShift alternatives to reduce licensing costs

For years, Red Hat OpenShift has been the safe choice for heavily regulated, on-premise environments. It operates as a secure fortress. But in the public cloud, that fortress acts as an expensive prison. Paying proprietary per-core licensing fees on top of your standard AWS or GCP compute bill is a redundant "middleware tax." Escaping OpenShift requires decoupling your infrastructure from your developer experience by running standard, vanilla Kubernetes paired with an agentic control plane.

Morgan Perry
Co-founder
AI
Product
3
 minutes
Qovery Skill for AI Agents: Deploy Apps in One Prompt

Use Qovery from Claude Code, OpenCode, Codex, and 20+ AI Coding agents

Romaric Philogène
CEO & Co-founder
Kubernetes
 minutes
Stopping Kubernetes cloud waste: agentic automation for enterprise fleets

Agentic Kubernetes resource reclamation is the practice of using an autonomous control plane to continuously identify, suspend, and delete idle infrastructure across a multi-cloud Kubernetes fleet. It replaces manual cleanup and reactive autoscaling with intent-based policies that act on business state, eliminating the configuration drift and cloud waste typical of unmanaged fleets.

Mélanie Dallé
Senior Marketing Manager
Platform Engineering
Kubernetes
DevOps
10
 minutes
What is Kubernetes? The reality of Day-2 enterprise fleet orchestration

Kubernetes focuses on container orchestration, but the reality on the ground is far less forgiving. Provisioning a single cluster is a trivial Day-1 exercise. The true operational nightmare begins on Day 2. Teams that treat multi-cloud fleets like isolated pets inevitably face crushing YAML configuration drift, runaway AWS bills, and severe scaling bottlenecks.

Morgan Perry
Co-founder

It’s time to change
the way you manage K8s

Turn Kubernetes into your strategic advantage with Qovery, automating the heavy lifting while you stay in control.