Skip to content

Instantly share code, notes, and snippets.

@spyder007
spyder007 / Update-HelmCharts.ps1
Created September 13, 2022 18:24
Update chart versions in an Argo Repo
install-module powershell-yaml
Invoke-Expression "helm repo update"
$repos = ConvertFrom-Json (Invoke-Expression "helm repo list -o json")
$charts = get-childitem chart.yaml -Recurse
foreach ($chart in $charts) {
Write-Host "Checking $chart"