Cloud Native 4 min read

What’s New in Helm v3.5? Key Features, OCI Support, and New Commands

Helm v3.5 introduces extensive OCI support, over 20 new template functions, and several useful command‑line flags such as --skip-refresh, wait-for-jobs, and --kube-cafile, while also migrating Helm Hub to Artifact Hub, making chart management more flexible and secure.

Cloud Native Technology Community
Cloud Native Technology Community
Cloud Native Technology Community
What’s New in Helm v3.5? Key Features, OCI Support, and New Commands

Helm v3.5 Official Release

Helm v3.5 is a feature release focusing on OCI support and new template functions. The most notable changes include:

More than 20 new template functions added (see Sprig v3.2.0 for the full list).

Experimental OCI support via the HELM_EXPERIMENTAL_OCI environment variable and helm pull oci:// command.

New --skip-refresh flag for helm dep build to avoid refreshing the local cache.

Added wait-for-jobs flag that works with --wait so helm install waits for all Jobs to finish, respecting the --timeout limit.

Introduced --kube-cafile flag and HELM_KUBECAFILE environment variable to specify a CA file for Kubernetes connections, solving “x509: certificate signed by unknown authority” errors. Example usage:

KUBECONFIG=~/.mycustomkubeconfig
kubectl config set-cluster internal.company --server=https://internal.company:443 --certificate-authority=/tmp/ca.crt
kubectl config set-context some-context --cluster=internal.company --namespace=myns
kubectl config use-context some-context
HELM_NAMESPACE=myns HELM_KUBEAPISERVER=https://internal.company:443 helm install --kubeconfig "${KUBECONFIG}" some-app company/some-app
HELM_NAMESPACE=myns HELM_KUBEAPISERVER=https://internal.company:443 HELM_KUBECAFILE=/tmp/ca.crt helm install some-app company/some-app

Helm Hub has been replaced by Artifact Hub (see related article). For a complete list of changes, refer to the official release notes on GitHub.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

cloud-nativehelmOCIhelm3.5
Cloud Native Technology Community
Written by

Cloud Native Technology Community

The Cloud Native Technology Community, part of the CNBPA Cloud Native Technology Practice Alliance, focuses on evangelizing cutting‑edge cloud‑native technologies and practical implementations. It shares in‑depth content, case studies, and event/meetup information on containers, Kubernetes, DevOps, Service Mesh, and other cloud‑native tech, along with updates from the CNBPA alliance.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.