Initial commit

This commit is contained in:
Valentin Afanasev
2025-08-05 02:11:04 +03:00
commit c8aeedafdb
3 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,11 @@
name: Stop pg for tests
inputs:
service_name:
required: true
runs:
using: composite
env:
SERVICE_NAME: ${{ inputs.service_name }}
steps:
run: werf kubectl delete service/${SERVICE_NAME} --ignore-not-found
run: werf kubectl delete pod/${SERVICE_NAME} --ignore-not-found