Files
fedora-infra_ansible/roles/fas2discourse/tasks/deploy-fas2discourse-operator.yml
2024-11-28 17:31:45 +10:00

18 lines
603 B
YAML

---
- 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"
force: true
- 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"