++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Link : Getting Started with Helm Chart | Jhooq Helm is a package manager for Kubernetes that simplifies the deployment and management of applications. It uses charts, which are collections of pre-configured Kubernetes resources, to define, package, and install applications on a Kubernetes cluster. Here's a list of commonly used Helm commands: Initialize Helm : helm init or helm repo add stable https://charts.helm.sh/stable : Initializes Helm on your cluster and adds the official Helm stable repository (deprecated since Helm v3). Managing Repositories : helm repo add <name> <url> : Adds a new repository. helm repo list : Lists the available repositories. helm repo update : Updates the local cache of available charts from the configured repositories. Search and Inspect Charts : helm searc...
Comments
Post a Comment