fas2discourse: Deploy operator task

Signed-off-by: David Kirwan <dkirwan@redhat.com>
This commit is contained in:
David Kirwan 2023-02-08 16:21:53 +09:00
parent b7e4fdf852
commit 154f97555a

View file

@ -1,2 +1,17 @@
---
- name: Git checkout the fas2discourse operator codebase
ansible.builtin.git:
repo: 'https://pagure.io/cpe/fas2discourse.git'
dest: "/root/ocp4/openshift-apps/fas2discourse-operator/fas2discourse-operator/"
version: "main"
- name: Run 'make install' on the fas2discourse operator
make:
chdir: "/root/ocp4/openshift-apps/fas2discourse-operator/fas2discourse-operator/"
target: "install"
- name: Run 'make deploy' on the fas2discourse operator
make:
chdir: "/root/ocp4/openshift-apps/fas2discourse-operator/fas2discourse-operator/"
target: "deploy"