Files
Valentin Afanasev 1a3eb347bd config
2025-08-05 03:19:07 +03:00

15 lines
331 B
YAML

name: Stop pg for tests
inputs:
service_name:
required: true
runs:
using: composite
steps:
- run: |
werf kubectl delete service/${SERVICE_NAME} --ignore-not-found
werf kubectl delete pod/${SERVICE_NAME} --ignore-not-found
shell: bash
env:
SERVICE_NAME: ${{ inputs.service_name }}