mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-06-10 02:26:09 +00:00
24 lines
440 B
YAML
24 lines
440 B
YAML
---
|
|
- name: Converge
|
|
hosts: localhost
|
|
connection: local
|
|
gather_facts: false
|
|
|
|
collections:
|
|
- community.kubernetes
|
|
|
|
tasks:
|
|
- name: Testing.
|
|
k8s_info:
|
|
namespace: kube-system
|
|
kind: Pod
|
|
register: pod_list
|
|
|
|
- name: Testing listing.
|
|
debug:
|
|
msg: "{{ pod_list.resources | count }}"
|
|
|
|
- name: Include Kubernetes integration testing role.
|
|
include_role:
|
|
name: kubernetes
|