Helm
Helm Commands and Applying Helm Charts
Helm Install
Installs a Helm chart onto your Kubernetes cluster. `<release-name>`: Specifies the name for the release of the Helm chart. `<chart>`: Specifies the name or path to the Helm chart to install.
helm install <release-name> <chart>
Helm Upgrade
Upgrades an existing Helm release to a new version of a chart or with modified configuration. `<release-name>`: Specifies the name of the release to upgrade. `<chart>`: Specifies the name or path to the new Helm chart or chart archive.
helm upgrade <release-name> <chart>
`kubectl` Command for Applying Helm Charts
Applies the Kubernetes manifests contained in `<helm-chart.yaml>`, which represents the rendered Kubernetes YAML manifests of a Helm chart.
kubectl apply -f <helm-chart.yaml>