10 lines
205 B
YAML
10 lines
205 B
YAML
- hosts: localhost
|
|
gather_facts: no
|
|
tasks:
|
|
- name: Create a k8s namespace
|
|
kubernetes.core.k8s:
|
|
name: testing
|
|
kind: Namespace
|
|
state: present
|
|
kubeconfig: config
|