mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
22 lines
510 B
YAML
22 lines
510 B
YAML
|
- hosts: localhost
|
||
|
connection: local
|
||
|
|
||
|
tasks:
|
||
|
- k8s:
|
||
|
definition:
|
||
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: hello
|
||
|
namespace: default
|
||
|
validate:
|
||
|
fail_on_error: yes
|
||
|
ignore_errors: yes
|
||
|
register: k8s_no_validate
|
||
|
|
||
|
- name: assert that k8s_no_validate fails gracefully
|
||
|
assert:
|
||
|
that:
|
||
|
- k8s_no_validate is failed
|
||
|
- "k8s_no_validate.msg == 'kubernetes-validate python library is required to validate resources'"
|