Here are some common Helm operations you might use in a CI/CD pipeline:
helm repo add myrepo https://yourusername.github.io/your-repo-name/
helm repo update
helm search repo myrepo
helm install my-release myrepo/chart-name
helm upgrade my-release myrepo/chart-name
helm rollback my-release 1
helm uninstall my-release
helm list
helm status my-release
helm history my-release
helm package ./charts/my-chart
helm lint ./charts/my-chart