Browse Source

Merge pull request #988 from dariustehrani/helm_delete_fix

limit helm delete to eshop
pull/1023/head
Miguel Veloso 5 years ago
committed by GitHub
parent
commit
72f68a1c98
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      k8s/helm/deploy-all.ps1

+ 2
- 2
k8s/helm/deploy-all.ps1 View File

@ -45,7 +45,7 @@ if ([string]::IsNullOrEmpty($dns)) {
if ($clean) {
Write-Host "Cleaning previous helm releases..." -ForegroundColor Green
helm delete --purge $(helm ls -q)
helm delete --purge $(helm ls -q eshop)
Write-Host "Previous releases deleted" -ForegroundColor Green
}
@ -91,4 +91,4 @@ else {
Write-Host "eShopOnContainers non-infrastructure charts aren't installed (-deployCharts is false)" -ForegroundColor Yellow
}
Write-Host "helm charts installed." -ForegroundColor Green
Write-Host "helm charts installed." -ForegroundColor Green

Loading…
Cancel
Save