mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-03-26 21:33:02 +00:00
Add new waiter SUMMARY This refactors the waiter logic from common.py into a separate module. ISSUE TYPE COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: None <None> Reviewed-by: Alina Buzachis <None> Reviewed-by: None <None>
35 lines
475 B
YAML
35 lines
475 B
YAML
---
|
|
kind: Namespace
|
|
apiVersion: v1
|
|
metadata:
|
|
name: test-1
|
|
---
|
|
kind: Pod
|
|
apiVersion: v1
|
|
metadata:
|
|
name: pod-1
|
|
namespace: test-1
|
|
spec:
|
|
containers:
|
|
- image: busybox
|
|
name: busybox
|
|
---
|
|
kind: PodList
|
|
apiVersion: v1
|
|
metadata: {}
|
|
items:
|
|
- kind: Pod
|
|
apiVersion: v1
|
|
metadata:
|
|
name: pod-1
|
|
namespace: test-1
|
|
spec:
|
|
containers:
|
|
- image: busybox
|
|
name: busybox
|
|
---
|
|
kind: ConfigMapList
|
|
apiVersion: v1
|
|
metadata: {}
|
|
items: []
|