mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-26 21:33:14 +00:00
17 lines
444 B
YAML
17 lines
444 B
YAML
---
|
|
|
|
- name: Set apiVersion and kind variables
|
|
set_fact:
|
|
api_version: '{{ hostvars["localhost"]["inventory_file"].split("/")[4:6] | join("/") }}'
|
|
kind: '{{ hostvars["localhost"]["inventory_file"].split("/")[6] }}'
|
|
|
|
- name: Determine the timestamp
|
|
set_fact:
|
|
now: '{{ lookup("pipe", "date +%FT%TZ") }}'
|
|
|
|
- name: Emit ocp event with error
|
|
k8s:
|
|
kind: Event
|
|
namespace: "{{ meta.namespace }}"
|
|
template: "event.yml.j2"
|