mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 12:07:34 +08:00
12 lines
393 B
YAML
12 lines
393 B
YAML
---
|
|
- name: Generate the forgejo-runnerhost-vm.yaml from template
|
|
ansible.builtin.template:
|
|
src: "forgejo-runnerhost-vm.yaml.j2"
|
|
dest: "/root/ocp4/openshift-apps/forgejo/forgejo-runnerhost-vm.yaml"
|
|
mode: "0770"
|
|
|
|
- name: Deploy the forgejo-runnerhost-vm.yaml config
|
|
kubernetes.core.k8s:
|
|
state: present
|
|
src: "/root/ocp4/openshift-apps/forgejo/forgejo-runnerhost-vm.yaml"
|