mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-04 19:00:56 +08:00
[fas2discourse] Fix the path to oc binary
/root/bin/oc doesn't exist, the oc is located in /bin/oc. I assume that this was just some manually created symlink, so let me fix that.
This commit is contained in:
@@ -8,4 +8,4 @@
|
||||
|
||||
# apply created openshift resources
|
||||
- name: Oc apply resources
|
||||
ansible.builtin.command: "/root/bin/oc apply -f /root/ocp4/openshift-apps/fas2discourse-operator/secret-discourse-apikey.yml"
|
||||
ansible.builtin.command: "/bin/oc apply -f /root/ocp4/openshift-apps/fas2discourse-operator/secret-discourse-apikey.yml"
|
||||
|
||||
@@ -21,4 +21,4 @@
|
||||
|
||||
# apply created openshift resources
|
||||
- name: Oc apply resources
|
||||
ansible.builtin.command: "/root/bin/oc apply -f /root/ocp4/openshift-apps/fas2discourse-operator/secret-keytab.yml"
|
||||
ansible.builtin.command: "/bin/oc apply -f /root/ocp4/openshift-apps/fas2discourse-operator/secret-keytab.yml"
|
||||
|
||||
@@ -8,4 +8,4 @@
|
||||
|
||||
# apply created openshift resources
|
||||
- name: Oc apply resources
|
||||
ansible.builtin.command: "/root/bin/oc apply -f /root/ocp4/openshift-apps/fas2discourse-operator/namespace.yml"
|
||||
ansible.builtin.command: "/bin/oc apply -f /root/ocp4/openshift-apps/fas2discourse-operator/namespace.yml"
|
||||
|
||||
Reference in New Issue
Block a user