Feedback

Chat Icon

Helm V4 in Practice

Designing, Deploying, and Operating Kubernetes Applications at Scale

Configuring and Customizing Helm
29%

The Default Namespace

When you run a command like the following:

helm install my-wordpress bitnami/wordpress --version 28.0.2

Helm installs the chart into a Kubernetes namespace. By default, Helm uses the default namespace unless you specify a different one using the --namespace flag:

helm install my-wordpress bitnami/wordpress --version 28.0.2
    --namespace my-custom-namespace

The variable HELM_NAMESPACE allows you to set a default namespace for all Helm commands in your current shell session. For example, if you set:

export HELM_NAMESPACE="my-custom-namespace"

Helm V4 in Practice

Designing, Deploying, and Operating Kubernetes Applications at Scale

Enroll now to unlock current content and receive all future updates for free. Your purchase supports the author and fuels the creation of more exciting content. Act fast, as the price will rise as the course nears completion!