delete_data_containers.ps1 275 B

123456789
  1. Set-Location $(Split-Path $MyInvocation.MyCommand.Path -Parent)
  2. datactl.exe apply -f base.yaml
  3. foreach ($file in $(Get-ChildItem -Path ".\data_containers")) {
  4. if ($file.GetType() -eq [System.IO.FileInfo]) {
  5. datactl.exe apply -f $file.FullName
  6. }
  7. }