mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-03 20:03:34 +08:00
When fixing conflicts when merging the PR containing commit 47c68f4,
some of the .j2 suffuxes i added in tasks were erronounusly dropped.
this fixes those.
Signed-off-by: Ryan Lerch <rlerch@redhat.com>
12 lines
391 B
YAML
12 lines
391 B
YAML
---
|
|
# generate the templates for project to be created
|
|
- name: Create the namespace template
|
|
ansible.builtin.template:
|
|
src: "namespace.yml.j2"
|
|
dest: "/root/ocp4/openshift-apps/firmitas/namespace.yml"
|
|
mode: "0770"
|
|
|
|
# apply created openshift resources
|
|
- name: Oc apply resources
|
|
ansible.builtin.command: "/root/bin/oc apply -f /root/ocp4/openshift-apps/firmitas/namespace.yml"
|