mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
10 lines
237 B
YAML
10 lines
237 B
YAML
name: Kyverno pods ready
|
|
|
|
description: Wait kyverno pods are ready
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- shell: bash
|
|
run: |
|
|
kubectl wait --namespace kyverno --for=condition=ready pod --selector '!job-name' --timeout=60s
|